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 17:56:24 +0100 |
commit | 2138f47802fc7508f6264764f5f01df7596e2342 (patch) | |
tree | cddf3b2480fd10e6397872ff7c4dbc24c039134c | |
parent | 05a2e21c82568c8173e471c85a4edb68a69a0336 (diff) | |
download | poky-2138f47802fc7508f6264764f5f01df7596e2342.tar.gz |
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.
(From OE-Core rev: 2ce3534b2011cf5516780c9fd7e00bd107619adc)
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 @@ | |||
58 | # | 58 | # |
59 | # The kernel has an internal default console, which you can override with | 59 | # The kernel has an internal default console, which you can override with |
60 | # a console=...some_tty... | 60 | # a console=...some_tty... |
61 | UBOOT_EXTLINUX_CONSOLE ??= "console=${console}" | 61 | UBOOT_EXTLINUX_CONSOLE ??= "console=${console},${baudrate}" |
62 | UBOOT_EXTLINUX_LABELS ??= "linux" | 62 | UBOOT_EXTLINUX_LABELS ??= "linux" |
63 | UBOOT_EXTLINUX_FDT ??= "" | 63 | UBOOT_EXTLINUX_FDT ??= "" |
64 | UBOOT_EXTLINUX_FDTDIR ??= "../" | 64 | UBOOT_EXTLINUX_FDTDIR ??= "../" |