diff options
author | Tom Rini <trini@konsulko.com> | 2022-04-06 09:21:25 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-25 16:04:05 -0400 |
commit | 11232139e399e70641410356ae6b278113d90f16 (patch) | |
tree | 9c3dd5ad6eec3fc3af2f9ac6c0e14f99122c4394 /tools | |
parent | 8cfac237b9814d52c843e939a05fc211ba3906de (diff) | |
download | u-boot-11232139e399e70641410356ae6b278113d90f16.zip u-boot-11232139e399e70641410356ae6b278113d90f16.tar.gz u-boot-11232139e399e70641410356ae6b278113d90f16.tar.bz2 |
nds32: Remove the architectureWIP/25Apr2022
As removal of nds32 has been ack'd for the Linux kernel, remove support
here as well.
Cc: Rick Chen <rick@andestech.com>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Rick Chen <rick@andestech.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/buildman/README | 7 | ||||
-rw-r--r-- | tools/buildman/bsettings.py | 1 | ||||
-rw-r--r-- | tools/buildman/builder.py | 1 | ||||
-rw-r--r-- | tools/docker/Dockerfile | 2 |
4 files changed, 2 insertions, 9 deletions
diff --git a/tools/buildman/README b/tools/buildman/README index bafb3b0..49438cb 100644 --- a/tools/buildman/README +++ b/tools/buildman/README @@ -192,7 +192,6 @@ aarch64: /opt/linaro/gcc-linaro-aarch64-none-elf-4.8-2013.10_linux [toolchain-alias] x86: i386 blackfin: bfin -nds32: nds32le openrisc: or1k @@ -468,8 +467,6 @@ arc: https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/ download/arc-2016.09-release/arc_gnu_2016.09_prebuilt_uclibc_le_archs_linux_install.tar.gz blackfin: http://sourceforge.net/projects/adi-toolchain/files/ blackfin-toolchain-elf-gcc-4.5-2014R1_45-RC2.x86_64.tar.bz2 -nds32: http://osdk.andestech.com/packages/ - nds32le-linux-glibc-v1.tgz nios2: http://sourcery.mentor.com/public/gnu_toolchain/nios2-linux-gnu/ sourceryg++-2015.11-27-nios2-linux-gnu-i686-pc-linux-gnu.tar.bz2 sh: http://sourcery.mentor.com/public/gnu_toolchain/sh-linux-gnu/ @@ -483,10 +480,10 @@ Buildman should now be set up to use your new toolchain. At the time of writing, U-Boot has these architectures: - arc, arm, blackfin, m68k, microblaze, mips, nds32, nios2, openrisc + arc, arm, blackfin, m68k, microblaze, mips, nios2, openrisc powerpc, sandbox, sh, sparc, x86 -Of these, only arc and nds32 are not available at kernel.org.. +Of these, only arc is not available at kernel.org.. How to run it diff --git a/tools/buildman/bsettings.py b/tools/buildman/bsettings.py index e634bbb..35bb2c1 100644 --- a/tools/buildman/bsettings.py +++ b/tools/buildman/bsettings.py @@ -85,7 +85,6 @@ other = / # Indicates which toolchain should be used to build for that arch x86 = i386 blackfin = bfin -nds32 = nds32le openrisc = or1k [make-flags] diff --git a/tools/buildman/builder.py b/tools/buildman/builder.py index ecbfa3e..aa2ffe1 100644 --- a/tools/buildman/builder.py +++ b/tools/buildman/builder.py @@ -1071,7 +1071,6 @@ class Builder: For example: powerpc: (622 boards) text -0.0 arm: (285 boards) text -0.0 - nds32: (3 boards) text -8.0 Args: board_selected: Dict containing boards to summarise, keyed by diff --git a/tools/docker/Dockerfile b/tools/docker/Dockerfile index c51e343..bbdc655 100644 --- a/tools/docker/Dockerfile +++ b/tools/docker/Dockerfile @@ -29,7 +29,6 @@ RUN wget -O - https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_ # Manually install other toolchains RUN wget -O - https://github.com/foss-xtensa/toolchain/releases/download/2020.07/x86_64-2020.07-xtensa-dc233c-elf.tar.gz | tar -C /opt -xz RUN wget -O - https://github.com/foss-for-synopsys-dwc-arc-processors/toolchain/releases/download/arc-2021.03-release/arc_gnu_2021.03_prebuilt_uclibc_le_archs_linux_install.tar.gz | tar --no-same-owner -C /opt -xz -RUN wget -O - https://github.com/vincentzwc/prebuilt-nds32-toolchain/releases/download/20180521/nds32le-linux-glibc-v3-upstream.tar.gz | tar -C /opt -xz # Update and install things from apt now RUN apt-get update && apt-get install -y \ @@ -227,7 +226,6 @@ RUN /bin/echo -e "[toolchain]\nroot = /usr" > ~/.buildman RUN /bin/echo -e "kernelorg = /opt/gcc-11.1.0-nolibc/*" >> ~/.buildman RUN /bin/echo -e "arc = /opt/arc_gnu_2021.03_prebuilt_uclibc_le_archs_linux_install" >> ~/.buildman RUN /bin/echo -e "\n[toolchain-prefix]\nxtensa = /opt/2020.07/xtensa-dc233c-elf/bin/xtensa-dc233c-elf-" >> ~/.buildman; -RUN /bin/echo -e "\nnds32 = /opt/nds32le-linux-glibc-v3-upstream/bin/nds32le-linux-" >> ~/.buildman; RUN /bin/echo -e "\n[toolchain-alias]\nsh = sh2" >> ~/.buildman RUN /bin/echo -e "\nriscv = riscv64" >> ~/.buildman RUN /bin/echo -e "\nsandbox = x86_64" >> ~/.buildman |