diff options
author | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-09 04:22:39 +0000 |
---|---|---|
committer | agb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2010-08-09 04:22:39 +0000 |
commit | 5ae37573d1654ac495fd217144b4bd298dfebe61 (patch) | |
tree | c4d836ff8e94bb8a55b9c01d01cc18180e76c32b /target/linux/x86/image/Makefile | |
parent | 524f8407c50ea0a43647df1ad864efba8d0a6910 (diff) |
[x86] image: use internal qemu-img for vmdk and vdi images
drop host dependencies on qemu-utils and VirtualBox
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@22553 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86/image/Makefile')
-rw-r--r-- | target/linux/x86/image/Makefile | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 338c8e0a74..b5297bbff8 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 |