Browse Source

Build VMDK and VDI images for x86

x86-generic is still marked as broken as fastd v16 doesn't work with uClibc on
x86. This will be fixed with fastd v17.
Matthias Schiffer 9 years ago
parent
commit
01863263a9
2 changed files with 13 additions and 4 deletions
  1. 2 3
      targets/x86-generic/config
  2. 11 1
      targets/x86-generic/profiles.mk

+ 2 - 3
targets/x86-generic/config

@@ -1,4 +1,3 @@
 CONFIG_TARGET_x86=y
-CONFIG_X86_USE_GRUB2=y
-CONFIG_X86_VDI_IMAGES=y
-CONFIG_X86_VMDK_IMAGES=y
+CONFIG_VDI_IMAGES=y
+CONFIG_VMDK_IMAGES=y

+ 11 - 1
targets/x86-generic/profiles.mk

@@ -1 +1,11 @@
-$(eval $(call GluonProfile,Generic))
+$(eval $(call GluonProfile,VDI,kmod-pcnet32))
+$(eval $(call GluonProfileFactorySuffix,VDI))
+$(eval $(call GluonProfileSysupgradeSuffix,VDI))
+$(eval $(call GluonProfileExtraSuffix,VDI,.vdi))
+$(eval $(call GluonModel,VDI,combined-squashfs,x86-virtualbox))
+
+$(eval $(call GluonProfile,VMDK,kmod-pcnet32))
+$(eval $(call GluonProfileFactorySuffix,VMDK))
+$(eval $(call GluonProfileSysupgradeSuffix,VMDK))
+$(eval $(call GluonProfileExtraSuffix,VMDK,.vmdk))
+$(eval $(call GluonModel,VMDK,combined-squashfs,x86-vmware))