aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-03-10 18:50:25 +0100
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2020-03-10 22:55:24 +0000
commit69cdbae73e3a386a55a230bfa80da89d61ad67b0 (patch)
tree07e6974a55e19feb9c387cc9e67e40d1f539d40f
parent00abefae7ceaa35a7516f43e2a45dbca0c780612 (diff)
Add u-boot extension to netboot image
The template also needs a .u-boot extension on the initramfs-netboot-image file. Signed-off-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org> Change-Id: I76c31b5123ea000091480eaceaea3de2eb02adee (cherry picked from commit 6913eca256411b7ff080c9cd9876a5751330df74) (cherry picked from commit da00a129eb17e3a625528dd33e19d1f4e5f4cba9)
-rw-r--r--templates/machines/raspberrypi4.jinja22
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/machines/raspberrypi4.jinja2 b/templates/machines/raspberrypi4.jinja2
index e914a91..6737379 100644
--- a/templates/machines/raspberrypi4.jinja2
+++ b/templates/machines/raspberrypi4.jinja2
@@ -6,7 +6,7 @@
{%- set rootfs_type = rootfs_type|default("nbd") %}
{%- set kernel_image = kernel_image|default("uImage") %}
{%- if rootfs_type == 'nbd' %}
- {%- set initrd = "initramfs-netboot-image-" + yocto_machine +".ext4.gz" %}
+ {%- set initrd = "initramfs-netboot-image-" + yocto_machine +".ext4.gz.u-boot" %}
{%- endif %}
{%- set dtb = dtb|default("bcm2711-rpi-4-b.dtb") %}
{%- if (build_type == 'daily') or (build_type == 'release') %}