diff options
author | Changhyeok Bae <changhyeok.bae@gmail.com> | 2017-12-29 08:24:41 +0000 |
---|---|---|
committer | Changhyeok Bae <changhyeok.bae@gmail.com> | 2018-01-23 22:17:51 +0900 |
commit | 8e7b933e38161d9471cce76467aeed24d935841a (patch) | |
tree | 600566a95c15655010f2020c3518513f9baeb8e8 /meta-netboot/classes | |
parent | d82b96c1d284c1cd7b517aeaf6119809931800cf (diff) |
Change image type to wic.vmdk
vmdk image type is changed to wic.vmdk in upstream.
(From Poky rev: 9d07c736e39a9aa922630b4241eda185a19a11ea)
(From OE-Core rev: 929ba563f1bc7195c4981b8e139c432b2cc388ea)
Bug-AGL: SPEC-1181
Change-Id: I94fab8ce4d075776b5f72d1c270a333d6b34a4b7
Signed-off-by: Changhyeok Bae <changhyeok.bae@gmail.com>
Diffstat (limited to 'meta-netboot/classes')
-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 1cdfd5f84..363e6bcc9 100644 --- a/meta-netboot/classes/netboot.bbclass +++ b/meta-netboot/classes/netboot.bbclass @@ -1,7 +1,7 @@ # Enable network bootable image and initrd/initramfs python () { - if (bb.utils.contains_any("IMAGE_FSTYPES",["live","vmdk","vmdk.xz"],True,False,d)): + if (bb.utils.contains_any("IMAGE_FSTYPES",["live","wic.vmdk"],True,False,d)): # typical case for Minnowboard Max d.setVar("INITRD_IMAGE","initramfs-netboot-image") d.setVar("INITRD_IMAGE_LIVE",d.getVar("INITRD_IMAGE",True)) |