app: aboot: Change to update the boot and recovery partition names on L-MR1

Change to update the boot and recovery partition names while verifying the
respective signed images, as expected for L-MR1.

Change-Id: I3ce103701482f5f5ff32997ed2f26c408260c0e6
diff --git a/app/aboot/aboot.c b/app/aboot/aboot.c
index 91585cb..77d0730 100644
--- a/app/aboot/aboot.c
+++ b/app/aboot/aboot.c
@@ -732,12 +732,12 @@
 	if(boot_into_recovery)
 	{
 		ret = boot_verify_image((unsigned char *)bootimg_addr,
-				bootimg_size, "recovery");
+				bootimg_size, "/recovery");
 	}
 	else
 	{
 		ret = boot_verify_image((unsigned char *)bootimg_addr,
-				bootimg_size, "boot");
+				bootimg_size, "/boot");
 	}
 	boot_verify_print_state();
 #else