From b06947117d509732650abe04637a85953e28a645 Mon Sep 17 00:00:00 2001 From: Adrian Davey Date: Thu, 30 Mar 2006 14:49:57 +0000 Subject: qemu: add a differing native qemu that works with gcc4, arm support only atm --- packages/qemu/qemu-qop-nogfx-native_svn.bb | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 packages/qemu/qemu-qop-nogfx-native_svn.bb (limited to 'packages/qemu') diff --git a/packages/qemu/qemu-qop-nogfx-native_svn.bb b/packages/qemu/qemu-qop-nogfx-native_svn.bb new file mode 100644 index 0000000000..cfe57653a2 --- /dev/null +++ b/packages/qemu/qemu-qop-nogfx-native_svn.bb @@ -0,0 +1,17 @@ +LICENSE = "GPL" +PV = "0.8.0+svn${SRCDATE}" +PROVIDES = "qemu-native" + +SRC_URI = "svn://nowt.dyndns.org/svn/qemu;module=trunk;proto=https \ + file://configure.patch;patch=1" + +S = "${WORKDIR}/trunk" + +inherit autotools native + +EXTRA_OECONF = "--disable-gcc-check --target-list=arm-user,arm-softmmu --disable-gfx-check" + +prefix = "${STAGING_DIR}/${BUILD_SYS}" + +# tested to work with gcc4 for arm target only +# this is purely for others to test, not intended to be used as a replacement for the real qemu -- cgit v1.2.3 From cd42f15076daed0298069014b23e83fda1e07c57 Mon Sep 17 00:00:00 2001 From: Adrian Davey Date: Mon, 3 Apr 2006 10:26:35 +0000 Subject: qemu-qop: disable docs, patch from Werner Schulte closes bug 801 * adds trunk_nodocs patch * changes qemu-qop bb to include patch --- packages/qemu/files/trunk_nodocs.patch | 40 ++++++++++++++++++++++++++++++ packages/qemu/qemu-qop-nogfx-native_svn.bb | 3 ++- 2 files changed, 42 insertions(+), 1 deletion(-) create mode 100644 packages/qemu/files/trunk_nodocs.patch (limited to 'packages/qemu') diff --git a/packages/qemu/files/trunk_nodocs.patch b/packages/qemu/files/trunk_nodocs.patch new file mode 100644 index 0000000000..36977ca0e7 --- /dev/null +++ b/packages/qemu/files/trunk_nodocs.patch @@ -0,0 +1,40 @@ +diff -Naur trunk_orig/Makefile trunk/Makefile +--- trunk_orig/Makefile 2006-04-01 11:01:54.000000000 +0200 ++++ trunk/Makefile 2006-04-01 12:40:45.000000000 +0200 +@@ -12,7 +12,7 @@ + ifdef CONFIG_STATIC + LDFLAGS+=-static + endif +-DOCS=qemu-doc.html qemu-tech.html qemu.1 qemu-img.1 ++DOCS= + + all: dyngen$(EXESUF) $(TOOLS) $(DOCS) + for d in $(TARGET_DIRS); do \ +@@ -54,10 +54,10 @@ + pc-bios/proll.elf \ + pc-bios/linux_boot.bin "$(datadir)" + mkdir -p "$(docdir)" +- install -m 644 qemu-doc.html qemu-tech.html "$(docdir)" ++# install -m 644 qemu-doc.html qemu-tech.html "$(docdir)" + ifndef CONFIG_WIN32 + mkdir -p "$(mandir)/man1" +- install qemu.1 qemu-img.1 "$(mandir)/man1" ++# install qemu.1 qemu-img.1 "$(mandir)/man1" + mkdir -p "$(datadir)/keymaps" + install -m 644 $(addprefix keymaps/,$(KEYMAPS)) "$(datadir)/keymaps" + endif +@@ -122,10 +122,10 @@ + $(datadir)/ppc_rom.bin \ + $(datadir)/video.x \ + $(datadir)/proll.elf \ +- $(datadir)/linux_boot.bin \ +- $(docdir)/qemu-doc.html \ +- $(docdir)/qemu-tech.html \ +- $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 ) ++ $(datadir)/linux_boot.bin ++# $(docdir)/qemu-doc.html \ ++# $(docdir)/qemu-tech.html \ ++# $(mandir)/man1/qemu.1 $(mandir)/man1/qemu-img.1 ) + + ifneq ($(wildcard .depend),) + include .depend diff --git a/packages/qemu/qemu-qop-nogfx-native_svn.bb b/packages/qemu/qemu-qop-nogfx-native_svn.bb index cfe57653a2..58c65b606b 100644 --- a/packages/qemu/qemu-qop-nogfx-native_svn.bb +++ b/packages/qemu/qemu-qop-nogfx-native_svn.bb @@ -3,7 +3,8 @@ PV = "0.8.0+svn${SRCDATE}" PROVIDES = "qemu-native" SRC_URI = "svn://nowt.dyndns.org/svn/qemu;module=trunk;proto=https \ - file://configure.patch;patch=1" + file://configure.patch;patch=1 \ + file://trunk_nodocs.patch;patch=1" S = "${WORKDIR}/trunk" -- cgit v1.2.3