From: Anatolij Gustschin Date: Fri, 7 Nov 2014 00:12:03 +0000 (+0100) Subject: socfpga_cyclone5.h: fix kernel console argument in default environment X-Git-Tag: v2015.01-rc2~89^2~3 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=116f5d5baa5d6ff3f244896b5a7c59ad59c71f87;p=u-boot socfpga_cyclone5.h: fix kernel console argument in default environment With fresh environment the kernel gets wrong console argument and boots without console output. Fix it. Reported-by: Dinh Nguyen Signed-off-by: Anatolij Gustschin Cc: Chin Liang See Cc: Dinh Nguyen Cc: Marek Vasut --- diff --git a/include/configs/socfpga_cyclone5.h b/include/configs/socfpga_cyclone5.h index 942738c138..c3d958cb30 100644 --- a/include/configs/socfpga_cyclone5.h +++ b/include/configs/socfpga_cyclone5.h @@ -42,7 +42,7 @@ /* Booting Linux */ #define CONFIG_BOOTDELAY 3 #define CONFIG_BOOTFILE "zImage" -#define CONFIG_BOOTARGS "console=ttyS0" __stringify(CONFIG_BAUDRATE) +#define CONFIG_BOOTARGS "console=ttyS0," __stringify(CONFIG_BAUDRATE) #ifdef CONFIG_SOCFPGA_VIRTUAL_TARGET #define CONFIG_BOOTCOMMAND "run ramboot" #else