[PATCH] configure: Add nios2-softmmu to the libfdt-required list

Stephanos Ioannidis posted 1 patch 4 years ago
Test docker-mingw@fedora passed
Test docker-quick@centos7 passed
Test checkpatch passed
Test FreeBSD passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20200408081607.96114-1-root@stephanos.io
configure | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] configure: Add nios2-softmmu to the libfdt-required list
Posted by Stephanos Ioannidis 4 years ago
The nios2-softmmu target requires libfdt to function properly (see
hw/nios2/boot.c).

Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
---
 configure | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure b/configure
index 233c671aaa..029adcf795 100755
--- a/configure
+++ b/configure
@@ -4236,7 +4236,7 @@ fi
 fdt_required=no
 for target in $target_list; do
   case $target in
-    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|riscv*-softmmu|rx-softmmu)
+    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|nios2-softmmu|riscv*-softmmu|rx-softmmu)
       fdt_required=yes
     ;;
   esac
-- 
2.17.1


Re: [PATCH] configure: Add nios2-softmmu to the libfdt-required list
Posted by Philippe Mathieu-Daudé 4 years ago
On 4/8/20 10:16 AM, Stephanos Ioannidis wrote:
> The nios2-softmmu target requires libfdt to function properly (see
> hw/nios2/boot.c).
> 
> Signed-off-by: Stephanos Ioannidis <root@stephanos.io>
> ---
>   configure | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 233c671aaa..029adcf795 100755
> --- a/configure
> +++ b/configure
> @@ -4236,7 +4236,7 @@ fi
>   fdt_required=no
>   for target in $target_list; do
>     case $target in
> -    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|riscv*-softmmu|rx-softmmu)
> +    aarch64*-softmmu|arm*-softmmu|ppc*-softmmu|microblaze*-softmmu|mips64el-softmmu|nios2-softmmu|riscv*-softmmu|rx-softmmu)
>         fdt_required=yes
>       ;;
>     esac
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>