diff options
author | Thomas Huth <thuth@redhat.com> | 2023-01-19 13:57:45 +0100 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2023-01-26 13:25:07 +0100 |
commit | ddf0944aa4b0c2d6516478a3e825149918b7a892 (patch) | |
tree | 2fb0ae95e97217d0ee865e6343cb439460497423 /configs | |
parent | e803a7f9b1f4d2324b15213593b6e24096e64280 (diff) |
configs/targets/nios2-softmmu: Add TARGET_NEED_FDT=y to the nios2 config
qemu-system-nios2 uses the functions from libfdt in hw/nios2/boot.c,
so this target has to be marked with TARGET_NEED_FDT=y in its config
file.
Message-Id: <20230119125745.2028814-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'configs')
-rw-r--r-- | configs/targets/nios2-softmmu.mak | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configs/targets/nios2-softmmu.mak b/configs/targets/nios2-softmmu.mak index 1e93b54cd1..5823fc02c8 100644 --- a/configs/targets/nios2-softmmu.mak +++ b/configs/targets/nios2-softmmu.mak @@ -1,2 +1,3 @@ TARGET_ARCH=nios2 TARGET_ALIGNED_ONLY=y +TARGET_NEED_FDT=y |