diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-03-30 17:18:25 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-03-30 17:19:59 +0200 |
commit | f220498f4b96c86b2d4ef7048f9c82f85c73d75c (patch) | |
tree | 14307b9a13979741e4b6b1e927bc1ffa91bc8da7 /toolchain/uClibc | |
parent | 8628082b83110acad71c27b79edd5f5345c405b0 (diff) | |
download | buildroot-novena-f220498f4b96c86b2d4ef7048f9c82f85c73d75c.tar.gz buildroot-novena-f220498f4b96c86b2d4ef7048f9c82f85c73d75c.zip |
get rid of broken nios2 support
Has been marked as broken for more than 1 year, with no indication
that anyone cares, and it needs a bunch of special handling.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'toolchain/uClibc')
-rw-r--r-- | toolchain/uClibc/uclibc.mk | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/toolchain/uClibc/uclibc.mk b/toolchain/uClibc/uclibc.mk index 7cd9acf71..765a684da 100644 --- a/toolchain/uClibc/uclibc.mk +++ b/toolchain/uClibc/uclibc.mk @@ -38,7 +38,6 @@ UCLIBC_TARGET_ARCH:=$(shell $(SHELL) -c "echo $(ARCH) | sed \ -e 's/mips.*/mips/' \ -e 's/mipsel.*/mips/' \ -e 's/cris.*/cris/' \ - -e 's/nios2.*/nios2/' \ -e 's/xtensa.*/xtensa/' \ ") # just handle the ones that can be big or little @@ -192,12 +191,6 @@ ifeq ($(BR2_mips_64),y) $(SED) 's/.*\(CONFIG_MIPS_ISA_MIPS64\).*/\1=y/' $(UCLIBC_DIR)/.oldconfig endif endif -ifeq ($(UCLIBC_TARGET_ARCH),nios2) - /bin/echo "# UCLIBC_FORMAT_FDPIC_ELF is not set" >> $(UCLIBC_DIR)/.oldconfig - /bin/echo "UCLIBC_FORMAT_FLAT=y" >> $(UCLIBC_DIR)/.oldconfig - /bin/echo "# UCLIBC_FORMAT_FLAT_SEP_DATA is not set" >> $(UCLIBC_DIR)/.oldconfig - /bin/echo "# UCLIBC_FORMAT_SHARED_FLAT is not set" >> $(UCLIBC_DIR)/.oldconfig -endif ifeq ($(UCLIBC_TARGET_ARCH),sh) /bin/echo "# CONFIG_SH2A is not set" >> $(UCLIBC_DIR)/.oldconfig /bin/echo "# CONFIG_SH2 is not set" >> $(UCLIBC_DIR)/.oldconfig |