diff options
author | Steven Barth <cyrus@openwrt.org> | 2009-01-02 14:35:18 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2009-01-02 14:35:18 +0000 |
commit | 5c95516f24aa49727daef42c42a6101626721a7b (patch) | |
tree | 0b5f08e93fb5f0799bf2d0bbc91a9110c75f80ce /target/linux/x86/image/Makefile | |
parent | 9f8c82da095869b7aadd6c95997ec9841eecee12 (diff) | |
download | mtk-20170518-5c95516f24aa49727daef42c42a6101626721a7b.zip mtk-20170518-5c95516f24aa49727daef42c42a6101626721a7b.tar.gz mtk-20170518-5c95516f24aa49727daef42c42a6101626721a7b.tar.bz2 |
Use VBoxManage instead of obsolete vditool to generate VirtualBox images.
SVN-Revision: 13821
Diffstat (limited to 'target/linux/x86/image/Makefile')
-rw-r--r-- | target/linux/x86/image/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 9bd2ead..839646e 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -66,7 +66,7 @@ ifeq ($(CONFIG_X86_VDI_IMAGES),y) # left here because the image builder doesnt need these ifeq ($(1),ext2) rm $(BIN_DIR)/openwrt-$(BOARD)-ext2.vdi || true - vditool DD $(BIN_DIR)/openwrt-$(BOARD)-ext2.vdi $(BIN_DIR)/openwrt-$(BOARD)-ext2.image + VBoxManage convertfromraw -format VDI $(BIN_DIR)/openwrt-$(BOARD)-ext2.image $(BIN_DIR)/openwrt-$(BOARD)-ext2.vdi endif endef endif @@ -121,8 +121,8 @@ endef $(eval $(call BuildImage)) ifeq ($(CONFIG_X86_VDI_IMAGES),y) - $(eval $(call RequireCommand,vditool, \ - You need vditool to generate VirtualBox images. \ + $(eval $(call RequireCommand,VBoxManage, \ + You need VBoxManage to generate VirtualBox images. \ )) endif |