meta-agl-bsp: Re-merge image-vm/image.bbclass overlays
[AGL/meta-agl.git] / meta-netboot / classes / netboot.bbclass
index 753ef79..65ca4a1 100644 (file)
@@ -4,9 +4,7 @@
 IMAGE_CLASSES += "${@'image_types_uboot' if (d.getVar("KERNEL_IMAGETYPE", True) == "uImage") else ''}"
 
 python () {
-       d.appendVar("IMAGE_FSTYPES"," ext4")
-
-       if (bb.utils.contains("IMAGE_FSTYPES","live",True,False,d)):
+       if (bb.utils.contains_any("IMAGE_FSTYPES",["live","vmdk","vmdk.xz"],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))
@@ -19,9 +17,9 @@ python () {
                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");
+                       d.setVar("NETBOOT_FSTYPES", "ext4.gz.u-boot");
                else:
                        # case for new u-boot images which don't require uImage format 
-                       d.appendVar("INITRAMFS_FSTYPES"," ext4.gz");
+                       d.setVar("NETBOOT_FSTYPES", "ext4.gz");
 }