diff options
author | Anatolij Gustschin <agust@denx.de> | 2014-11-07 01:12:03 +0100 |
---|---|---|
committer | Marek Vasut <marex@denx.de> | 2014-11-07 08:24:13 +0100 |
commit | 116f5d5baa5d6ff3f244896b5a7c59ad59c71f87 (patch) | |
tree | da9c4b52a3e4d2a9a0d08d01fd50cce5df4f4396 | |
parent | 8a78ca9ea57e019869ddac2ef10a15593f211997 (diff) | |
download | u-boot-imx-116f5d5baa5d6ff3f244896b5a7c59ad59c71f87.zip u-boot-imx-116f5d5baa5d6ff3f244896b5a7c59ad59c71f87.tar.gz u-boot-imx-116f5d5baa5d6ff3f244896b5a7c59ad59c71f87.tar.bz2 |
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 <dinguyen@opensource.altera.com>
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Cc: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
Cc: Marek Vasut <marex@denx.de>
-rw-r--r-- | include/configs/socfpga_cyclone5.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/socfpga_cyclone5.h b/include/configs/socfpga_cyclone5.h index 942738c..c3d958c 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 |