diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-08 09:25:48 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-10 15:45:15 +0200 |
commit | 9b089d254a5623baef01f7d0ec37331c1155f1ce (patch) | |
tree | 2da5399f30554620084132aeb05dd3225d4f0ffa /configs/targets/rx-softmmu.mak | |
parent | 47771d67563dc48753d275249d0764144d56357d (diff) | |
download | qemu-9b089d254a5623baef01f7d0ec37331c1155f1ce.zip qemu-9b089d254a5623baef01f7d0ec37331c1155f1ce.tar.gz qemu-9b089d254a5623baef01f7d0ec37331c1155f1ce.tar.bz2 |
configs: disable emulators that require it if libfdt is not found
Since boards can express their dependency on libfdt and
system/device_tree.c, only leave TARGET_NEED_FDT if the target has a
hard dependency.
Those emulators will be skipped if libfdt is disabled, or if it
is "auto" and not found and --disable-download is passed; unless
the target is mentioned explicitly in --target-list, in which case
the build will fail.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'configs/targets/rx-softmmu.mak')
-rw-r--r-- | configs/targets/rx-softmmu.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/targets/rx-softmmu.mak b/configs/targets/rx-softmmu.mak index 0c458b2..706bbe6 100644 --- a/configs/targets/rx-softmmu.mak +++ b/configs/targets/rx-softmmu.mak @@ -1,3 +1,4 @@ TARGET_ARCH=rx TARGET_XML_FILES= gdb-xml/rx-core.xml +# all boards require libfdt TARGET_NEED_FDT=y |