diff options
author | Anton Gerasimov <anton@advancedtelematic.com> | 2016-09-14 12:11:37 +0200 |
---|---|---|
committer | Anton Gerasimov <anton@advancedtelematic.com> | 2016-09-14 12:15:13 +0200 |
commit | 4cdd78c859bde2142d942baa53c4bd86b3685de1 (patch) | |
tree | 582b0d02f2622eac200ab9a94ad07f084d68bcee | |
parent | 40ac2700d699f2ec46405c151f4ae4b3a0cdf489 (diff) |
Set INITRAMFS_IMAGE instead of appending to it
Bug-AGL: SPEC-250
Change-Id: I76fbc1d8674807c247bb4aaadd70d71a13097491
Signed-off-by: Anton Gerasimov <anton@advancedtelematic.com>
-rw-r--r-- | meta-netboot/classes/netboot.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-netboot/classes/netboot.bbclass b/meta-netboot/classes/netboot.bbclass index 0bb2452ad..63014ff96 100644 --- a/meta-netboot/classes/netboot.bbclass +++ b/meta-netboot/classes/netboot.bbclass @@ -15,7 +15,7 @@ python () { d.getVar("MACHINE",True) )) else: - d.appendVar("INITRAMFS_IMAGE"," initramfs-netboot-image") + d.setVar("INITRAMFS_IMAGE","initramfs-netboot-image") if (d.getVar("KERNEL_IMAGETYPE",True) == "uImage"): # case for "old" u-boot images, like Porter board d.appendVar("INITRAMFS_FSTYPES"," ext4.gz.u-boot"); |