From 38260998a207df693747877e8d96aa6c68ea29c6 Mon Sep 17 00:00:00 2001 From: pbrook Date: Sat, 11 Mar 2006 14:51:13 +0000 Subject: [PATCH] mipsel configure support (Thiemo Seufer). git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1771 c046a42c-6fe2-441c-8c8c-71466251a162 --- .cvsignore | 1 + Makefile | 1 + configure | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.cvsignore b/.cvsignore index 9ea66ba275..2627cd0bd1 100644 --- a/.cvsignore +++ b/.cvsignore @@ -22,5 +22,6 @@ x86_64-softmmu sparc64-user sparc64-softmmu mips-softmmu +mipsel-softmmu mips-user mipsel-user diff --git a/Makefile b/Makefile index e69cf47da9..bcc2e07d42 100644 --- a/Makefile +++ b/Makefile @@ -105,6 +105,7 @@ tarbin: $(bindir)/qemu-system-sparc \ $(bindir)/qemu-system-x86_64 \ $(bindir)/qemu-system-mips \ + $(bindir)/qemu-system-mipsel \ $(bindir)/qemu-system-arm \ $(bindir)/qemu-i386 \ $(bindir)/qemu-arm \ diff --git a/configure b/configure index 58759337a5..a0bc4d7319 100755 --- a/configure +++ b/configure @@ -232,7 +232,7 @@ fi if test -z "$target_list" ; then # these targets are portable - target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu arm-softmmu" + target_list="i386-softmmu ppc-softmmu sparc-softmmu x86_64-softmmu mips-softmmu mipsel-softmmu arm-softmmu" # the following are Linux specific if [ "$linux" = "yes" ] ; then target_list="i386-user arm-user armeb-user sparc-user ppc-user mips-user mipsel-user $target_list"