diff options
author | Kevin Hilman <khilman@baylibre.com> | 2018-06-13 09:41:06 -0700 |
---|---|---|
committer | Kevin Hilman <khilman@baylibre.com> | 2018-06-13 09:43:14 -0700 |
commit | d22ed0b680c4d43b23bba52c8400c7e5bb156fe5 (patch) | |
tree | 4d3c2a0207427873dc8e3a60e0714bc02be65e02 /templates/machines | |
parent | 3ca619760d765d265675fe94695ea6115285572b (diff) |
fix rpi3 console device
After upgrade to LAVA 2018.x, the ways of sending u-boot arguments have changed
slightly, and now need the console_device specified in the job. This is especially
important when overriding arguments with custom_kernel_args.
Change-Id: Ief8fcaec14a89e34bd03187316e61c0fdb0424d0
Signed-off-by: Kevin Hilman <khilman@baylibre.com>
Diffstat (limited to 'templates/machines')
-rw-r--r-- | templates/machines/raspberrypi3.jinja2 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/templates/machines/raspberrypi3.jinja2 b/templates/machines/raspberrypi3.jinja2 index 9d28e02..d4d94d1 100644 --- a/templates/machines/raspberrypi3.jinja2 +++ b/templates/machines/raspberrypi3.jinja2 @@ -18,5 +18,6 @@ {%- block main %} {{ super() }} context: + console_device: ttyS0 custom_kernel_args: "8250.nr_uarts=1 bcm2709.uart_clock=48000000 smsc95xx.macaddr=AA:BB:CC:DD:EE:AA" {% endblock %} |