qemu: build qemu-img for packaging vmdk and vdi images
SVN-Revision: 22552
This commit is contained in:
parent
f8c4bf89b9
commit
ff43518669
2 changed files with 42 additions and 0 deletions
|
@ -18,6 +18,7 @@ tools-y += m4 autoconf automake bison pkg-config sed mklibs
|
||||||
tools-y += sstrip ipkg-utils genext2fs libuuid mtd-utils mkimage
|
tools-y += sstrip ipkg-utils genext2fs libuuid mtd-utils mkimage
|
||||||
tools-y += firmware-utils patch-cmdline quilt yaffs2
|
tools-y += firmware-utils patch-cmdline quilt yaffs2
|
||||||
tools-$(CONFIG_TARGET_orion) += wrt350nv2-builder upslug2
|
tools-$(CONFIG_TARGET_orion) += wrt350nv2-builder upslug2
|
||||||
|
tools-$(CONFIG_TARGET_x86) += qemu
|
||||||
ifneq ($(CONFIG_LINUX_2_4)$(CONFIG_LINUX_2_6_25),)
|
ifneq ($(CONFIG_LINUX_2_4)$(CONFIG_LINUX_2_6_25),)
|
||||||
tools-y += squashfs lzma-old
|
tools-y += squashfs lzma-old
|
||||||
else
|
else
|
||||||
|
@ -47,6 +48,7 @@ $(curdir)/mpc/compile := $(curdir)/gmp/install
|
||||||
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
$(curdir)/mpfr/compile := $(curdir)/gmp/install
|
||||||
$(curdir)/mtd-utils/compile := $(curdir)/libuuid/install
|
$(curdir)/mtd-utils/compile := $(curdir)/libuuid/install
|
||||||
$(curdir)/mkimage/compile := $(curdir)/sed/install
|
$(curdir)/mkimage/compile := $(curdir)/sed/install
|
||||||
|
$(curdir)/upslug2/compile := $(curdir)/automake/install
|
||||||
|
|
||||||
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
$(curdir)/builddirs := $(tools-y) $(tools-dep) $(tools-)
|
||||||
$(curdir)/builddirs-default := $(tools-y)
|
$(curdir)/builddirs-default := $(tools-y)
|
||||||
|
|
40
tools/qemu/Makefile
Normal file
40
tools/qemu/Makefile
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
#
|
||||||
|
# Copyright (C) 2010 OpenWrt.org
|
||||||
|
#
|
||||||
|
# This is free software, licensed under the GNU General Public License v2.
|
||||||
|
# See /LICENSE for more information.
|
||||||
|
#
|
||||||
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
|
PKG_NAME:=qemu
|
||||||
|
PKG_VERSION:=0.12.5
|
||||||
|
PKG_RELEASE:=1
|
||||||
|
|
||||||
|
PKG_SOURCE_URL:=http://download.savannah.gnu.org/releases/qemu/
|
||||||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||||
|
PKG_MD5SUM:=1d02ee0a04dfae2894340273372c1de4
|
||||||
|
|
||||||
|
include $(INCLUDE_DIR)/host-build.mk
|
||||||
|
|
||||||
|
define Host/Configure
|
||||||
|
(cd $(HOST_BUILD_DIR); \
|
||||||
|
CFLAGS="$(HOST_CFLAGS)" \
|
||||||
|
LDFLAGS="$(HOST_LDFLAGS)" \
|
||||||
|
$(HOST_CONFIGURE_CMD) \
|
||||||
|
--extra-cflags="$(HOST_CFLAGS)" \
|
||||||
|
--enable-uuid \
|
||||||
|
)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Host/Compile
|
||||||
|
(cd $(HOST_BUILD_DIR); \
|
||||||
|
make qemu-img \
|
||||||
|
)
|
||||||
|
endef
|
||||||
|
|
||||||
|
define Host/Install
|
||||||
|
$(INSTALL_DIR) $(STAGING_DIR_HOST)/bin
|
||||||
|
$(INSTALL_BIN) $(HOST_BUILD_DIR)/qemu-img $(STAGING_DIR_HOST)/bin
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(call HostBuild))
|
Loading…
Reference in a new issue