diff options
| author | Paolo Bonzini <pbonzini@redhat.com> | 2024-04-30 21:08:15 +0200 |
|---|---|---|
| committer | Paolo Bonzini <pbonzini@redhat.com> | 2024-05-10 15:45:15 +0200 |
| commit | d641ec30be4963f43bffe033f5265a57cb8f4c90 (patch) | |
| tree | aa87df2c809f45e751ff609d0214e07f6d998f10 /hw/openrisc | |
| parent | 1935b7ead18dbcbf459dbe7a8fd4253fbe1ed4d0 (diff) | |
| download | focaccia-qemu-d641ec30be4963f43bffe033f5265a57cb8f4c90.tar.gz focaccia-qemu-d641ec30be4963f43bffe033f5265a57cb8f4c90.zip | |
kconfig: express dependency of individual boards on libfdt
Now that boards are enabled by default and the "CONFIG_FOO=y" entries are gone from configs/devices/, there cannot be any more a conflicts between the default contents of configs/devices/ and a failed "depends on" clause. With this change, each individual board or target can express whether it needs FDT. It can then include the common code in the build via "select DEVICE_TREE", which will also as tell meson to link with libfdt. This allows building non-microvm x86 emulators without having libfdt available. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'hw/openrisc')
| -rw-r--r-- | hw/openrisc/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/hw/openrisc/Kconfig b/hw/openrisc/Kconfig index 9c9015e0a5..76b953c62c 100644 --- a/hw/openrisc/Kconfig +++ b/hw/openrisc/Kconfig @@ -2,6 +2,7 @@ config OR1K_SIM bool default y depends on OPENRISC + select DEVICE_TREE select SERIAL select OPENCORES_ETH select OMPIC @@ -14,6 +15,7 @@ config OR1K_VIRT imply PCI_DEVICES imply VIRTIO_VGA imply TEST_DEVICES + select DEVICE_TREE select PCI select PCI_EXPRESS_GENERIC_BRIDGE select GOLDFISH_RTC |