diff options
author | Vagrant Cascadian <vagrant@debian.org> | 2017-03-31 13:48:44 -0700 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2017-04-12 18:09:32 +0200 |
commit | 52526ba42e4757e0afb0548c8e56cecffac76064 (patch) | |
tree | 6887772304e1b19e8d484ada50c3289e5aa50d02 | |
parent | fab70acf83c36eb06612f9c43083b7c3f13e428b (diff) | |
download | u-boot-52526ba42e4757e0afb0548c8e56cecffac76064.zip u-boot-52526ba42e4757e0afb0548c8e56cecffac76064.tar.gz u-boot-52526ba42e4757e0afb0548c8e56cecffac76064.tar.bz2 |
Set console speed to 115200 on mx6cuboxi.
By default, u-boot itself outputs on the serial console at 115200, so
it may as well pass the same value to the booted operating system as
well.
Signed-off-by: Vagrant Cascadian <vagrant@debian.org>
Reviewed-by: Fabio Estevam <fabio.estevam@nxp.com>
-rw-r--r-- | include/configs/mx6cuboxi.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/configs/mx6cuboxi.h b/include/configs/mx6cuboxi.h index 2782911..84fdf65 100644 --- a/include/configs/mx6cuboxi.h +++ b/include/configs/mx6cuboxi.h @@ -84,7 +84,7 @@ "initrd_high=0xffffffff\0" \ "fdt_high=0xffffffff\0" \ "ip_dyn=yes\0" \ - "console=" CONSOLE_DEV "\0" \ + "console=" CONSOLE_DEV ",115200\0" \ "bootm_size=0x10000000\0" \ "mmcdev=" __stringify(CONFIG_SYS_MMC_ENV_DEV) "\0" \ "update_sd_firmware=" \ |