android: Pass the ramdisk to the kernel.

Android kernel image format can include an initramfs image in the same
kernel partition. This patch passes the initramfs to the kernel, which
in the normal boot mode ignores it by passing "skip_initramfs" in the
command line.

Bug: 34346003
Test: `am broadcast -a android.intent.action.MASTER_CLEAR` factory
reseted the device.

Change-Id: I21d89e34a0f54badf3b2e3ad8981cef75f6d5edf
diff --git a/common/android_bootloader.c b/common/android_bootloader.c
index 6656311..5a6cd8d 100644
--- a/common/android_bootloader.c
+++ b/common/android_bootloader.c
@@ -161,7 +161,8 @@
 {
 	char kernel_addr_str[12];
 	char *fdt_addr = getenv("fdt_addr");
-	char *bootm_args[] = { "bootm", kernel_addr_str, "-", fdt_addr, NULL };
+	char *bootm_args[] = {
+		"bootm", kernel_addr_str, kernel_addr_str, fdt_addr, NULL };
 
 	sprintf(kernel_addr_str, "0x%lx", kernel_address);