summaryrefslogtreecommitdiff
path: root/lib_arm
diff options
context:
space:
mode:
authorb02247 <b02247@freescale.com>2013-01-04 17:57:31 +0800
committerb02247 <b02247@freescale.com>2013-01-10 16:56:53 +0800
commit545fa5d8e9e6f6967f6ddedbd16b8eac46c42655 (patch)
tree19957d9235ced35900ea648ab375e592734bcbff /lib_arm
parent2f9091b8fe4b8931d9289ae0a35abd2f8407db73 (diff)
ENGR00239607 add nand config for android sabreauto
Add nand config for android sabreauto Signed-off-by: b02247 <b02247@freescale.com>
Diffstat (limited to 'lib_arm')
-rw-r--r--lib_arm/bootm.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/lib_arm/bootm.c b/lib_arm/bootm.c
index 5da34251b8..6b70367624 100644
--- a/lib_arm/bootm.c
+++ b/lib_arm/bootm.c
@@ -4,7 +4,7 @@
* Marius Groeger <mgroeger@sysgo.de>
*
* Copyright (C) 2001 Erik Mouw (J.A.K.Mouw@its.tudelft.nl)
- * Copyright (C) 2012 Freescale Semiconductor, Inc.
+ * Copyright (C) 2013 Freescale Semiconductor, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -147,10 +147,9 @@ void do_booti_linux (boot_img_hdr *hdr)
commandline = (char *)hdr->cmdline;
/* XXX: in production, you should always use boot.img 's cmdline !!! */
-
- printf("kernel cmdline: \n\tuse %s command line:\n\t%s \n",
- getenv("bootargs") ? "uboot" : "boot.img",
- commandline);
+ printf("kernel cmdline: \n");
+ printf("\tuse %s ", getenv("bootargs") ? "uboot" : "boot.img");
+ printf("command line:\n\t%s \n", commandline);
#endif
theKernel = (void (*)(int, int, uint))(hdr->kernel_addr);