diff options
-rw-r--r-- | mk/build.mk | 8 | ||||
-rw-r--r-- | target/arch.lst | 1 | ||||
-rw-r--r-- | toolchain/glibc/tarch.lst | 10 | ||||
-rw-r--r-- | toolchain/musl/tarch.lst | 5 | ||||
-rw-r--r-- | toolchain/uclibc/tarch.lst | 8 |
5 files changed, 5 insertions, 27 deletions
diff --git a/mk/build.mk b/mk/build.mk index 79e090289..91e45a17c 100644 --- a/mk/build.mk +++ b/mk/build.mk @@ -309,25 +309,25 @@ endif @for symbol in ${DEFCONFIG}; do \ echo $$symbol >> $(TOPDIR)/.defconfig; \ done - if [ ! -z "$(ADK_TARGET_FS)" ];then \ + @if [ ! -z "$(ADK_TARGET_FS)" ];then \ grep "^config" target/config/Config.in.target \ |grep -i "$(ADK_TARGET_FS)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_COLLECTION)" ];then \ + @if [ ! -z "$(ADK_TARGET_COLLECTION)" ];then \ grep -h "^config" target/packages/pkg-available/* \ |grep -i "$(ADK_TARGET_COLLECTION)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ + @if [ ! -z "$(ADK_TARGET_LIBC)" ];then \ grep "^config" target/config/Config.in.libc.choice \ |grep -i "$(ADK_TARGET_LIBC)" \ |sed -e "s#^config \(.*\)#\1=y#" \ >> $(TOPDIR)/.defconfig; \ fi - if [ ! -z "$(ADK_TARGET_SYSTEM)" ];then \ + @if [ ! -z "$(ADK_TARGET_SYSTEM)" ];then \ system=$$(echo "$(ADK_TARGET_SYSTEM)" |sed -e "s/-/_/g"); \ grep -h "^config" target/*/Config.in.systems \ |grep -i "$$system$$" \ diff --git a/target/arch.lst b/target/arch.lst index 9fc6d20d2..e55da90c9 100644 --- a/target/arch.lst +++ b/target/arch.lst @@ -3,6 +3,7 @@ arm m68k microblaze mips +mips64 ppc ppc64 sparc diff --git a/toolchain/glibc/tarch.lst b/toolchain/glibc/tarch.lst index 60e064398..fce76f497 100644 --- a/toolchain/glibc/tarch.lst +++ b/toolchain/glibc/tarch.lst @@ -1,22 +1,12 @@ arm -armhf m68k microblaze -microblazeel mips -mipsel mips64 -mips64n32 -mips64n64 -mips64el -mips64eln32 -mips64eln64 ppc ppc64 sh4 -sh4eb sparc sparc64 x86 x86_64 -x86_64_x32 diff --git a/toolchain/musl/tarch.lst b/toolchain/musl/tarch.lst index 272259d6b..75ee3178f 100644 --- a/toolchain/musl/tarch.lst +++ b/toolchain/musl/tarch.lst @@ -1,12 +1,7 @@ arm -armhf microblaze -microblazeel mips -mipsel ppc sh4 -sh4eb x86 x86_64 -x86_64_x32 diff --git a/toolchain/uclibc/tarch.lst b/toolchain/uclibc/tarch.lst index 43c580728..14095ecc4 100644 --- a/toolchain/uclibc/tarch.lst +++ b/toolchain/uclibc/tarch.lst @@ -1,15 +1,7 @@ arm -armhf mips -mipsel mips64 -mips64n32 -mips64n64 -mips64el -mips64eln32 -mips64eln64 ppc sh4 -sh4eb x86 x86_64 |