qemu: build sub-packages only for selected targets

While at it, move these pacakges to submenu Utilities -> Virtualization

Signed-off-by: Yousong Zhou <yszhou4tech@gmail.com>
This commit is contained in:
Yousong Zhou 2016-12-13 11:03:41 +08:00
parent efbef54ced
commit 7b812e8fdd
1 changed files with 15 additions and 7 deletions

View File

@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=qemu PKG_NAME:=qemu
PKG_VERSION:=2.6.2 PKG_VERSION:=2.6.2
PKG_RELEASE:=2 PKG_RELEASE:=3
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2 PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://wiki.qemu-project.org/download/ PKG_SOURCE_URL:=http://wiki.qemu-project.org/download/
PKG_SOURCE_MD5SUM:=bdf1f3d0c177ebeb35a079a4bc3fc74e PKG_SOURCE_MD5SUM:=bdf1f3d0c177ebeb35a079a4bc3fc74e
@ -25,10 +25,15 @@ include $(INCLUDE_DIR)/uclibc++.mk
include $(INCLUDE_DIR)/package.mk include $(INCLUDE_DIR)/package.mk
QEMU_DEPS_IN_GUEST := @(TARGET_x86_64||TARGET_armvirt||TARGET_arm64||TARGET_malta)
QEMU_DEPS_IN_HOST := @(TARGET_x86_64||TARGET_sunxi)
define Package/virtio-console-helper define Package/virtio-console-helper
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
SUBMENU:=Virtualization
TITLE:=Helper script for vportNpn virtio-console devices TITLE:=Helper script for vportNpn virtio-console devices
DEPENDS:=$(QEMU_DEPS_IN_GUEST)
endef endef
define Package/virtio-console-helper/install define Package/virtio-console-helper/install
@ -40,9 +45,10 @@ endef
define Package/qemu-ga define Package/qemu-ga
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
SUBMENU:=Virtualization
TITLE:=QEMU Guest Agent TITLE:=QEMU Guest Agent
URL:=http://www.qemu.org URL:=http://www.qemu.org
DEPENDS:= +glib2 +virtio-console-helper $(CXX_DEPENDS) DEPENDS:= +glib2 +virtio-console-helper $(CXX_DEPENDS) $(QEMU_DEPS_IN_GUEST)
endef endef
define Package/qemu-ga/description define Package/qemu-ga/description
@ -62,9 +68,10 @@ endef
define Package/qemu-blobs define Package/qemu-blobs
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
SUBMENU:=Virtualization
TITLE:=QEMU blobs of BIOS, VGA BIOS and keymaps TITLE:=QEMU blobs of BIOS, VGA BIOS and keymaps
URL:=http://www.qemu.org URL:=http://www.qemu.org
DEPENDS:= DEPENDS:=$(QEMU_DEPS_IN_HOST)
endef endef
define Package/qemu-blobs/install define Package/qemu-blobs/install
@ -75,9 +82,10 @@ endef
define Package/qemu-bridge-helper define Package/qemu-bridge-helper
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
SUBMENU:=Virtualization
TITLE:=QEMU bridge helper TITLE:=QEMU bridge helper
URL:=http://www.qemu.org URL:=http://www.qemu.org
DEPENDS:=+glib2 $(CXX_DEPENDS) DEPENDS:=+glib2 $(CXX_DEPENDS) $(QEMU_DEPS_IN_HOST)
endef endef
define Package/qemu-bridge-helper/install define Package/qemu-bridge-helper/install
@ -111,11 +119,11 @@ define qemu-target
define Package/qemu-$(1) define Package/qemu-$(1)
SECTION:=utils SECTION:=utils
CATEGORY:=Utilities CATEGORY:=Utilities
SUBMENU:=Virtualization
TITLE:=QEMU target $(1) TITLE:=QEMU target $(1)
URL:=http://www.qemu.org URL:=http://www.qemu.org
DEPENDS:= +glib2 +libpthread +zlib $(CXX_DEPENDS) \ DEPENDS:= +glib2 +libpthread +zlib $(CXX_DEPENDS) $(QEMU_DEPS_IN_HOST) \
$(if $(filter %-softmmu,$(1)),+libncurses +libfdt +qemu-blobs) \ $(if $(filter %-softmmu,$(1)),+libncurses +libfdt +qemu-blobs)
@(TARGET_x86_64||TARGET_sunxi)
endef endef
define Package/qemu-$(1)/description define Package/qemu-$(1)/description