diff options
author | Arnout Vandecappelle <arnout@mind.be> | 2015-02-04 01:34:04 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2015-02-07 21:04:17 +0100 |
commit | 9b34853ea57f6b1a08dd8e16ff21732a55a19b9e (patch) | |
tree | 771c4a806d1b2a991970b71b8a89208475966893 /package/qemu | |
parent | 08c763b539dfb4bc19bfce102c38761cbe0a5d03 (diff) | |
download | buildroot-9b34853ea57f6b1a08dd8e16ff21732a55a19b9e.tar.gz buildroot-9b34853ea57f6b1a08dd8e16ff21732a55a19b9e.zip |
qemu: add missing indirect dependency on dynamic library for fdt
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/qemu')
-rw-r--r-- | package/qemu/Config.in | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/package/qemu/Config.in b/package/qemu/Config.in index 58825719c2..65421c0b9f 100644 --- a/package/qemu/Config.in +++ b/package/qemu/Config.in @@ -54,10 +54,14 @@ comment "... or you can select emulator families to enable, below:" config BR2_PACKAGE_QEMU_SYSTEM bool "Enable all systems emulation" + depends on !BR2_STATIC_LIBS # dtc select BR2_PACKAGE_QEMU_FDT help Say 'y' to build all system emulators/virtualisers that QEMU supports. +comment "systems emulation needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS + config BR2_PACKAGE_QEMU_LINUX_USER bool "Enable all Linux user-land emulation" help @@ -86,11 +90,15 @@ comment "Misc. features" config BR2_PACKAGE_QEMU_FDT bool "Enable FDT" + depends on !BR2_STATIC_LIBS # dtc select BR2_PACKAGE_DTC help Say 'y' here to have QEMU capable of constructing Device Trees, and passing them to the VMs. +comment "FDT support needs a toolchain w/ dynamic library" + depends on BR2_STATIC_LIBS + endif # BR2_PACKAGE_QEMU_HAS_EMULS endif # BR2_PACKAGE_QEMU |