X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/0ef361248d7c90fae5e572cfbb64933ce7f63245..4ef493dcf36bcd2deade934fa4932f6013c0f82b:/target/linux/x86/image/Makefile diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 338c8e0a7..b5297bbff 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -143,7 +143,7 @@ ifneq ($(CONFIG_X86_VDI_IMAGES),) # left here because the image builder doesnt need these ifeq ($(1),ext2) rm $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vdi || true - VBoxManage convertfromraw -format VDI \ + qemu-img convert -f raw -O vdi \ $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).img \ $(BIN_DIR)/$(IMG_PREFIX)-combined-$(1).vdi # XXX: VBoxManage insists on setting perms to 0600 @@ -191,15 +191,3 @@ define Image/Build endef $(eval $(call BuildImage)) - -ifneq ($(CONFIG_X86_VDI_IMAGES),) - $(eval $(call RequireCommand,VBoxManage, \ - You need VBoxManage to generate VirtualBox images. \ - )) -endif - -ifneq ($(CONFIG_X86_VMDK_IMAGES),) - $(eval $(call RequireCommand,qemu-img, \ - You need qemu-img to generate VMware images. \ - )) -endif