diff options
author | Florian Fainelli <florian@openwrt.org> | 2008-05-30 16:50:37 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2008-05-30 16:50:37 +0000 |
commit | f6477899ab545806f491f8d7b2272d5596a0617b (patch) | |
tree | 9d94f0cc4a149e35df41716d505e3f9be0fcceed /target/linux/x86/image/Makefile | |
parent | d8987676ecf4073b10824ff48a94d47bc5504d98 (diff) | |
download | upstream-f6477899ab545806f491f8d7b2272d5596a0617b.tar.gz upstream-f6477899ab545806f491f8d7b2272d5596a0617b.tar.bz2 upstream-f6477899ab545806f491f8d7b2272d5596a0617b.zip |
Add virtualbox images to x86 (#3475)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11298 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/x86/image/Makefile')
-rw-r--r-- | target/linux/x86/image/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/x86/image/Makefile b/target/linux/x86/image/Makefile index 54a4a344d7..7af434874e 100644 --- a/target/linux/x86/image/Makefile +++ b/target/linux/x86/image/Makefile @@ -57,6 +57,17 @@ ifeq ($(CONFIG_X86_GRUB_IMAGES),y) endef endif +ifeq ($(CONFIG_X86_VDI_IMAGES),y) + define Image/Build/vdi + # 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 + endif + endef +endif + + define Image/Prepare $(CP) $(LINUX_DIR)/arch/x86/boot/bzImage $(KDIR)/bzImage $(call Image/Prepare/grub) @@ -86,6 +97,7 @@ endef define Image/Build $(call Image/Build/grub,$(1)) + $(call Image/Build/vdi,$(1)) $(call Image/Build/$(1)) $(CP) $(KDIR)/root.$(1) $(BIN_DIR)/openwrt-$(BOARD)-$(1).fs $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-vmlinuz @@ -93,3 +105,9 @@ endef $(eval $(call BuildImage)) +ifeq ($(CONFIG_X86_VDI_IMAGES),y) + $(eval $(call RequireCommand,vditool, \ + You need vditool to generate VirtualBox images. \ + )) +endif + |