summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile11
-rw-r--r--Rules.mak4
-rw-r--r--docs/uclibc.org/FAQ.html4
-rw-r--r--extra/Configs/Config.mips3
-rwxr-xr-xextra/scripts/fix_includes.sh4
5 files changed, 5 insertions, 21 deletions
diff --git a/Makefile b/Makefile
index 7fe64c8bc..9e4855828 100644
--- a/Makefile
+++ b/Makefile
@@ -126,11 +126,6 @@ ifeq ($(strip $(UCLIBC_HAS_MMU)),y)
else
@set -x; ./extra/scripts/fix_includes.sh -k $(KERNEL_SOURCE) -t $(TARGET_ARCH) -n
endif
- @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
- $(LN) -fs mips libc/sysdeps/linux/mipsel; \
- $(LN) -fs mips ldso/ldso/mipsel; \
- $(LN) -fs mips libpthread/linuxthreads/sysdeps/mipsel; \
- fi;
@cd include/bits; \
set -e; \
for i in `ls ../../libc/sysdeps/linux/common/bits/*.h` ; do \
@@ -406,12 +401,6 @@ clean:
@if [ -d libc/sysdeps/linux/$(TARGET_ARCH) ]; then \
$(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean; \
fi;
- @if [ "$(TARGET_ARCH)" = "mipsel" ]; then \
- $(MAKE) -C libc/sysdeps/linux/mips clean; \
- $(RM) ldso/ldso/mipsel; \
- $(RM) libc/sysdeps/linux/mipsel; \
- $(RM) libpthread/linuxthreads/sysdeps/mipsel; \
- fi;
distclean: clean
$(RM) .config .config.old .config.cmd
diff --git a/Rules.mak b/Rules.mak
index 03ada6bd9..0883a727d 100644
--- a/Rules.mak
+++ b/Rules.mak
@@ -31,8 +31,8 @@
# your compiler is broken, you should not need to specify TARGET_ARCH
#
# Most people will set this stuff on the command line, i.e.
-# make CROSS=mipsel-linux-
-# will build uClibc for 'mipsel'.
+# make CROSS=arm-linux-
+# will build uClibc for 'arm'.
ifndef CROSS
CROSS=
diff --git a/docs/uclibc.org/FAQ.html b/docs/uclibc.org/FAQ.html
index 2f2416716..333d7101f 100644
--- a/docs/uclibc.org/FAQ.html
+++ b/docs/uclibc.org/FAQ.html
@@ -54,7 +54,7 @@ to the uClibc home page.</a>
<TR><TD BGCOLOR="#eeeee0">
Currently uClibc runs on alpha, ARM, cris, h8300, i386, i960, m68k,
- mips/mipsel, PowerPC, SH, SPARC, and v850 processors.
+ mips, PowerPC, SH, SPARC, and v850 processors.
<p>
@@ -233,7 +233,7 @@ to the uClibc home page.</a>
</TD></TR>
<TR><TD BGCOLOR="#eeeee0">
- Yes. uClibc has native shared library support on i386, ARM, mips/mipsel,
+ Yes. uClibc has native shared library support on i386, ARM, mips,
SH, CRIS, and PowerPC processors. Other architectures can use shared libraries
but will need to use the GNU libc shared library loader.
<p>
diff --git a/extra/Configs/Config.mips b/extra/Configs/Config.mips
index b61b1deea..777c23869 100644
--- a/extra/Configs/Config.mips
+++ b/extra/Configs/Config.mips
@@ -4,8 +4,7 @@
#
config TARGET_ARCH
- default "mips" if ARCH_BIG_ENDIAN
- default "mipsel" if ARCH_LITTLE_ENDIAN
+ default "mips"
config HAVE_ELF
bool
diff --git a/extra/scripts/fix_includes.sh b/extra/scripts/fix_includes.sh
index 04295a62a..a7e878079 100755
--- a/extra/scripts/fix_includes.sh
+++ b/extra/scripts/fix_includes.sh
@@ -130,10 +130,6 @@ if [ ! -d "$KERNEL_SOURCE/include/asm" ]; then
ln -fs arch-ebsa285 arch);
fi
fi;
- elif [ "$TARGET_ARCH" = "mipsel" ];then
- set -x;
- ln -fs $KERNEL_SOURCE/include/asm-mips include/asm;
- set +x;
elif [ "$TARGET_ARCH)" = "cris" ]; then
set -x;
ln -fs $KERNEL_SOURCE/include/asm-cris include/asm;