diff options
author | Fabio Estevam <festevam@gmail.com> | 2021-07-19 17:15:14 -0300 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2021-08-09 13:09:29 +0200 |
commit | 5d236df9a0e4d5358892f77d7680d80917a7acd2 (patch) | |
tree | 262139b99cc266f034b10aedb272285b2b90fc0d /include/configs | |
parent | 22e9e0dc17e263d456aba5d4943b7eac88d2a014 (diff) | |
download | u-boot-5d236df9a0e4d5358892f77d7680d80917a7acd2.tar.gz |
mx6cuboxi: Fix the console variable
Do not pass the console baudrate to the 'console' variable
to avoid the baudrate being passed twice when extlinux.conf
contains the standard: console=${console},${baudrate} format.
cat /proc/cmdline
root=PARTUUID=00000000-01 rootwait rw console=ttymxc0,115200,115200
Signed-off-by: Fabio Estevam <festevam@gmail.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/mx6cuboxi.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 1a06f29b8c..9e5083b0d8 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -38,7 +38,6 @@ /* Command definition */ #define CONFIG_MXC_UART_BASE UART1_BASE -#define CONSOLE_DEV "ttymxc0" #ifndef CONFIG_SPL_BUILD #define CONFIG_EXTRA_ENV_SETTINGS \ @@ -54,7 +53,7 @@ "ramdiskaddr=0x13000000\0" \ "initrd_high=0xffffffff\0" \ "ip_dyn=yes\0" \ - "console=" CONSOLE_DEV ",115200\0" \ + "console=ttymxc0\0" \ "bootm_size=0x10000000\0" \ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "finduuid=part uuid mmc 1:1 uuid\0" \ |