diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2018-06-08 11:03:30 -0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-06-15 11:09:40 +0100 |
commit | 2ce3534b2011cf5516780c9fd7e00bd107619adc (patch) | |
tree | 0ea605f2e477d7baa0c9338676bc2376435da52a | |
parent | f7d62fff09b033b6eee7251a133d05c24c55769e (diff) | |
download | openembedded-core-2ce3534b2011cf5516780c9fd7e00bd107619adc.tar.gz openembedded-core-2ce3534b2011cf5516780c9fd7e00bd107619adc.tar.bz2 openembedded-core-2ce3534b2011cf5516780c9fd7e00bd107619adc.zip |
uboot-extlinux-config.bbclass: Add baudrate in console bootparam
By default, we ought to use console="${console},${baudrate}" as
console bootparam as commonly it is left to be passed with the
bootargs.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/classes/uboot-extlinux-config.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/uboot-extlinux-config.bbclass b/meta/classes/uboot-extlinux-config.bbclass index 61dff14b7c..c65c421b60 100644 --- a/meta/classes/uboot-extlinux-config.bbclass +++ b/meta/classes/uboot-extlinux-config.bbclass @@ -58,7 +58,7 @@ # # The kernel has an internal default console, which you can override with # a console=...some_tty... -UBOOT_EXTLINUX_CONSOLE ??= "console=${console}" +UBOOT_EXTLINUX_CONSOLE ??= "console=${console},${baudrate}" UBOOT_EXTLINUX_LABELS ??= "linux" UBOOT_EXTLINUX_FDT ??= "" UBOOT_EXTLINUX_FDTDIR ??= "../" |