diff options
author | Yann E. MORIN <yann.morin.1998@free.fr> | 2014-10-08 00:38:14 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-10-12 18:59:37 +0200 |
commit | 6fd9a3e864789942fbbd9eee3c31e114fa06f41b (patch) | |
tree | d01a30a920a9dbced2fa3d09227e7d494921fdcd /package/qemu/Config.in | |
parent | 68ec49acc7be3cefdbc0cfb8a4ea40c223e8afe0 (diff) | |
download | buildroot-6fd9a3e864789942fbbd9eee3c31e114fa06f41b.tar.gz buildroot-6fd9a3e864789942fbbd9eee3c31e114fa06f41b.zip |
package/qemu: add fine-grained target selection
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qemu/Config.in')
-rw-r--r-- | package/qemu/Config.in | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/package/qemu/Config.in b/package/qemu/Config.in index 96ec301fd7..f29f8489aa 100644 --- a/package/qemu/Config.in +++ b/package/qemu/Config.in @@ -31,6 +31,25 @@ if BR2_PACKAGE_QEMU comment "Emulators selection" +config BR2_PACKAGE_QEMU_CUSTOM_TARGETS + string "Enable specific targets" + help + Enter here the list of QEMU targets you want to build. For example: + + System emulation | User-land emulation + ----------------------+----------------------- + i386-softmmu | i386-linux-user + arm-softmmu | ppc-linux-user + x86_64-softmmu | sparc-bsd-user + ... | ... + +config QEMU_FOO + bool # To break the indentation + +if BR2_PACKAGE_QEMU_CUSTOM_TARGETS = "" + +comment "... or you can select emulator families to enable, below:" + config BR2_PACKAGE_QEMU_SYSTEM bool "Enable all systems emulation" help @@ -43,4 +62,6 @@ config BR2_PACKAGE_QEMU_LINUX_USER # Note: bsd-user can not be build on Linux +endif # BR2_PACKAGE_QEMU_CUSTOM_TARGETS == "" + endif # BR2_PACKAGE_QEMU |