From: Arnout Vandecappelle <arnout@mind.be>
To: buildroot@busybox.net
Subject: [Buildroot] [PATCH v8 01/11] host-qemu: new package
Date: Tue, 25 Sep 2012 23:15:49 +0200 [thread overview]
Message-ID: <50621F05.1070708@mind.be> (raw)
In-Reply-To: <1348593508-14254-1-git-send-email-francois.perrad@gadz.org>
On 09/25/12 19:18, Francois Perrad wrote:
> only user mode for the current target architecture
>
> Signed-off-by: Francois Perrad<francois.perrad@gadz.org>
[snip]
> diff --git a/package/qemu/Config.in.host b/package/qemu/Config.in.host
> new file mode 100644
> index 0000000..379507c
> --- /dev/null
> +++ b/package/qemu/Config.in.host
> @@ -0,0 +1,15 @@
> +config BR2_PACKAGE_HOST_QEMU
> + bool "host qemu"
> + help
> + QEMU is a generic and open source machine emulator and virtualizer.
> +
> + In user mode emulation, QEMU runs single cross-compiled programs.
> + Fast cross-compilation and cross-debugging are the main targets
> + for user-mode emulation.
> +
> + In system mode emulation, QEMU emulates a full computer system,
> + including peripherals, and handles the filesystem image generated
> + by Buildroot.
> + (Buildroot is shipped with many configs/qemu_*_defconfig files).
If only user mode is supported, that should be documented in the help text.
> +
> + http://qemu.org/
> diff --git a/package/qemu/qemu.mk b/package/qemu/qemu.mk
> new file mode 100644
> index 0000000..d727f49
> --- /dev/null
> +++ b/package/qemu/qemu.mk
> @@ -0,0 +1,43 @@
> +#############################################################
> +#
> +# qemu
> +#
> +#############################################################
> +
> +QEMU_VERSION = 1.2.0
> +QEMU_SOURCE = qemu-$(QEMU_VERSION).tar.bz2
> +QEMU_SITE = http://wiki.qemu.org/download
> +
> +HOST_QEMU_DEPENDENCIES =
This can be removed.
> +
> +QEMU_ARCH=$(ARCH)
> +ifeq ($(QEMU_ARCH),i686)
> + QEMU_ARCH=i386
> +endif
> +HOST_QEMU_TARGETS=$(QEMU_ARCH)-linux-user
We normally put spaces before and after =
> +
> +define HOST_QEMU_CONFIGURE_CMDS
> + (cd $(@D); ./configure \
> + --target-list="$(HOST_QEMU_TARGETS)" \
> + --prefix="$(HOST_DIR)/usr" \
> + --interp-prefix=$(STAGING_DIR) \
> + --cc="$(HOSTCC)" \
> + --host-cc="$(HOSTCC)" \
> + --extra-cflags="$(HOST_CFLAGS)" \
> + --extra-ldflags="$(HOST_LDFLAGS)" \
> + )
> +endef
> +
> +define HOST_QEMU_BUILD_CMDS
> + $(MAKE) -C $(@D) all
> +endef
> +
> +define HOST_QEMU_INSTALL_CMDS
> + $(MAKE) -C $(@D) install
> +endef
> +
> +define HOST_QEMU_CLEAN_CMDS
> + $(MAKE) -C $(@D) clean
> +endef
> +
> +$(eval $(host-generic-package))
This looks very much like a $(host-autotools-package). Even if the
configure is not a proper autoconf script and barfs on all the unknown
options that buildroot adds, you can still override the CONFIGURE_CMDS.
But I expect that just setting HOST_QEMU_CONF_OPT will be enough.
Regards,
Arnout
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286540
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F
next prev parent reply other threads:[~2012-09-25 21:15 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-09-25 17:18 [Buildroot] [PATCH v8 01/11] host-qemu: new package Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 02/11] perl: " Francois Perrad
2012-10-04 20:40 ` Thomas Petazzoni
2012-10-06 13:29 ` François Perrad
2012-10-04 21:18 ` Thomas Petazzoni
2012-10-06 13:33 ` François Perrad
2012-10-06 17:18 ` Thomas Petazzoni
2012-10-06 19:37 ` François Perrad
2012-10-08 16:57 ` François Perrad
2012-10-06 12:12 ` Arnout Vandecappelle
2012-10-06 13:34 ` François Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 03/11] perl: add an option for miniperl Francois Perrad
2012-10-04 20:41 ` Thomas Petazzoni
2012-10-06 12:17 ` Arnout Vandecappelle
2012-10-06 13:38 ` François Perrad
2012-10-06 14:58 ` Arnout Vandecappelle
2012-10-06 12:15 ` Arnout Vandecappelle
2012-09-25 17:18 ` [Buildroot] [PATCH v8 04/11] perl: add DB_File Francois Perrad
2012-10-06 12:23 ` Arnout Vandecappelle
2012-10-06 13:40 ` François Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 05/11] gdbm: new package Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 06/11] perl: add GDBM_File Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 07/11] cpanminus: new package Francois Perrad
2012-10-04 20:46 ` Thomas Petazzoni
2012-10-06 13:43 ` François Perrad
2012-10-04 21:01 ` Thomas Petazzoni
2012-10-05 8:12 ` François Perrad
2012-10-06 13:44 ` François Perrad
2012-10-06 12:29 ` Arnout Vandecappelle
2012-09-25 17:18 ` [Buildroot] [PATCH v8 08/11] perl: add option "custom install" Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 09/11] perl: relax microperl dependencies Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 10/11] microperl: mark as DEPRECATED Francois Perrad
2012-09-25 17:18 ` [Buildroot] [PATCH v8 11/11] microperl: remove it Francois Perrad
2012-09-25 21:15 ` Arnout Vandecappelle [this message]
2012-09-26 7:33 ` [Buildroot] [PATCH v8 01/11] host-qemu: new package Thomas Petazzoni
2012-10-04 20:33 ` Thomas Petazzoni
2012-10-04 22:09 ` Frank Hunleth
2012-10-05 7:19 ` Thomas Petazzoni
2012-10-06 12:37 ` Arnout Vandecappelle
2012-10-06 13:51 ` François Perrad
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50621F05.1070708@mind.be \
--to=arnout@mind.be \
--cc=buildroot@busybox.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox