diff options
author | Bernhard Beschow <shentey@gmail.com> | 2025-07-08 22:48:04 +0200 |
---|---|---|
committer | Philippe Mathieu-Daudé <philmd@linaro.org> | 2025-07-15 00:24:26 +0200 |
commit | 07e8cd2b8c757d646178879169df79fbf0a09eda (patch) | |
tree | 7a06c5987e9639b088f0a2b03e0fbf09e4d87937 | |
parent | 83110a6c662f392360b2d235de6c96cd09370823 (diff) | |
download | qemu-07e8cd2b8c757d646178879169df79fbf0a09eda.zip qemu-07e8cd2b8c757d646178879169df79fbf0a09eda.tar.gz qemu-07e8cd2b8c757d646178879169df79fbf0a09eda.tar.bz2 |
hw/microblaze: Add missing FDT dependency
These boards ship with a bundled DTB, and dtc will be required for generating
these from device tree sources. Prepare for that by adding an FDT dependency.
Signed-off-by: Bernhard Beschow <shentey@gmail.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20250708204806.1898-2-shentey@gmail.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
-rw-r--r-- | hw/microblaze/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/microblaze/Kconfig b/hw/microblaze/Kconfig index b0214b2..72d8072 100644 --- a/hw/microblaze/Kconfig +++ b/hw/microblaze/Kconfig @@ -1,7 +1,7 @@ config PETALOGIX_S3ADSP1800 bool default y - depends on MICROBLAZE + depends on MICROBLAZE && FDT select PFLASH_CFI01 select XILINX select XILINX_AXI @@ -11,7 +11,7 @@ config PETALOGIX_S3ADSP1800 config PETALOGIX_ML605 bool default y - depends on MICROBLAZE + depends on MICROBLAZE && FDT select PFLASH_CFI01 select SERIAL_MM select SSI_M25P80 |