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.
This commit is contained in:
Matthias Schiffer 2015-01-25 03:31:58 +01:00
parent 3507de14aa
commit 01863263a9
2 changed files with 13 additions and 4 deletions

View File

@ -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

View File

@ -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))