Skip to content
Snippets Groups Projects
Commit 22c0c4c4 authored by Denis Pynkin's avatar Denis Pynkin
Browse files

lava/renesas: use the U-Boot for fdtfile setup


Starting from kernel 5.5 FDT names were split and
renamed to align with config options. This leads to
boot failure of old or new Apertis images depending of
naming schema used in `fdtfile` environment variable.

U-Boot used in Apertis and LAVA have additional feature
allowing to try the legacy FDT naming schema in cases
of boot failure with default naming schema.

On v2021 for the switching branches test we have to boot
images with old naming for DTB file in v2020 (5.4 kernel) and
new naming schema in v2021 (5.9 kernel).
So it is not possible to hardcode proper variable `fdtfile`
for booting both versions in LAVA.

Instead we remove hardcoded DTB file and use additional boot
target `legacy_mmc0` which automatically set the "old" name
for the DTB file in case if boot with a new one was failed.

Signed-off-by: default avatarDenis Pynkin <denis.pynkin@collabora.com>
parent c1230acf
No related branches found
No related tags found
1 merge request!241v2022dev1: lava/renesas: use the U-Boot for fdtfile setup
Pipeline #179962 passed
......@@ -31,8 +31,7 @@
board: uboot
boot_method: u-boot
boot_commands:
- setenv fdtfile renesas/r8a77960-ulcb.dtb
- setenv boot_targets mmc0
- setenv boot_targets mmc0 legacy_mmc0
- if test ${bootcount} -lt ${bootlimit}; then run distro_bootcmd; else run altbootcmd; fi
device_type: r8a7796-m3ulcb
firststagedtb: renesas/r8a7796-m3ulcb.dtb
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment