From: Kyungmin Park Date: Mon, 8 Feb 2010 11:55:50 +0000 (+0900) Subject: s5pc110: aquila: Can modify console for wmg160 X-Git-Tag: JB06_20100208 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d3d58fdc4eaadc0a1c5e676362cc969ce8066982;p=kernel%2Fu-boot.git s5pc110: aquila: Can modify console for wmg160 Signed-off-by: Kyungmin Park --- diff --git a/include/configs/s5pc1xx_universal.h b/include/configs/s5pc1xx_universal.h index f66596b..8b977c4 100644 --- a/include/configs/s5pc1xx_universal.h +++ b/include/configs/s5pc1xx_universal.h @@ -163,13 +163,12 @@ #define CONFIG_BOOTCOMMAND "run ubifsboot" +#define CONFIG_DEFAULT_CONSOLE "console=ttySAC2,115200n8\0" + #define CONFIG_RAMDISK_BOOT "root=/dev/ram0 rw rootfstype=ext2" \ - " console=ttySAC2,115200n8" \ - " ${meminfo}" + " ${console} ${meminfo}" -#define CONFIG_COMMON_BOOT "console=ttySAC2,115200n8" \ - " ${meminfo}" \ - " ${mtdparts}" +#define CONFIG_COMMON_BOOT "${console} ${meminfo} ${mtdparts}" #define CONFIG_BOOTARGS "root=/dev/mtdblock8 ubi.mtd=8 ubi.mtd=7 ubi.mtd=3" \ " rootfstype=cramfs " CONFIG_COMMON_BOOT @@ -209,6 +208,7 @@ CONFIG_UBI_MTD " ${opts} ${lcdinfo} " CONFIG_COMMON_BOOT "; run bootk\0" \ "verify=n\0" \ "rootfstype=cramfs\0" \ + "console=" CONFIG_DEFAULT_CONSOLE \ "mtdparts=" MTDPARTS_DEFAULT \ "meminfo=mem=80M mem=128M@0x40000000\0" \ "nfsroot=/nfsroot/arm\0" \