d641ec30be
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>
16 lines
363 B
Plaintext
16 lines
363 B
Plaintext
config ARM
|
|
bool
|
|
select ARM_COMPATIBLE_SEMIHOSTING if TCG
|
|
|
|
# We need to select this until we move m_helper.c and the
|
|
# translate.c v7m helpers under ARM_V7M.
|
|
select ARM_V7M if TCG
|
|
|
|
select DEVICE_TREE # needed by boot.c
|
|
|
|
config AARCH64
|
|
bool
|
|
select ARM
|
|
# kvm_arch_fixup_msi_route() needs to access PCIDevice
|
|
select PCI if KVM
|