mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-01 18:55:56 +02:00
ae897d6eaf
This patch has not been tested on freebsd. File block/sheepdog.c has been changed and the patch does no longer apply. Anyone with freebsd who could test this? All my other patches regarding the tools upgrade were tested on linux x64 and produce a working image. Once submitted patches get applied I will upgrade the remaining tools... Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@31175 3c298f89-4303-0410-b956-a3cf2f4a3e73
41 lines
907 B
Makefile
41 lines
907 B
Makefile
#
|
|
# Copyright (C) 2010-2012 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.14.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE_URL:=http://download.savannah.gnu.org/releases/qemu/
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
PKG_MD5SUM:=b6c713a8db638e173af53a62d5178640
|
|
|
|
include $(INCLUDE_DIR)/host-build.mk
|
|
|
|
HOST_CFLAGS += -I$(STAGING_DIR_HOST)/include/e2fsprogs
|
|
|
|
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
|
|
$(MAKE) -C $(HOST_BUILD_DIR) 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))
|