diff options
author | Corentin LABBE <clabbe@baylibre.com> | 2024-11-25 10:19:02 +0000 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2024-11-28 12:20:59 +0000 |
commit | 90587ff17294823fb62a2624ac0223292e3970ad (patch) | |
tree | f478fb5426c0b836fa7cb781230ff9566706183b /templates/boot | |
parent | 709e0af5e358a46136ffa490fe82e07ddd2c3df8 (diff) |
SPEC-5293: Add final rpi5 templatequillback_17.1.5quillback/17.1.517.1.5quillback
This patchs adds the final raspberrypi5 machine template.
Remove un-needed raspberrypi5-64 as rpi5 is 64bit only.
Add an override of boot-method in templates since rpi5 start via PXE and
so need to boot in "minimal" boot mode.
Bug-AGL: SPEC-5293
Change-Id: Ided5312d25bee4b34ac3a5ea2d01b028664bcf73
Signed-off-by: Corentin LABBE <clabbe@baylibre.com>
Diffstat (limited to 'templates/boot')
-rw-r--r-- | templates/boot/generic-uboot-tftp.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/boot/generic-uboot-tftp.jinja2 b/templates/boot/generic-uboot-tftp.jinja2 index 8befb6d..d65b284 100644 --- a/templates/boot/generic-uboot-tftp.jinja2 +++ b/templates/boot/generic-uboot-tftp.jinja2 @@ -1,5 +1,5 @@ {%- extends 'boot/generic-base-boot.jinja2' %} -{%- set boot_method = "u-boot" %} +{%- set boot_method = boot_method|default("u-boot") %} {%- block main %} {{ super() }} {%- if rootfs_type == 'nbd' %} |