|
|
|
@ -1,5 +1,8 @@
|
|
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
|
GIT_DEPTH="20"
|
|
|
|
|
GCC_VERSION="11.4.0"
|
|
|
|
|
|
|
|
|
|
HSS_BRANCH="v2023.02"
|
|
|
|
|
HSS_REPO="https://github.com/polarfire-soc/hart-software-services.git"
|
|
|
|
|
|
|
|
|
@ -17,28 +20,16 @@ LINUX_REPO="https://github.com/linux4microchip/linux.git"
|
|
|
|
|
#LINUX_BRANCH="master"
|
|
|
|
|
#LINUX_REPO="https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git"
|
|
|
|
|
|
|
|
|
|
GIT_DEPTH="20"
|
|
|
|
|
|
|
|
|
|
if [ ! -f ./mirror/x86_64-gcc-11.4.0-nolibc-riscv64-linux.tar.xz ] ; then
|
|
|
|
|
echo "wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.4.0/x86_64-gcc-11.4.0-nolibc-riscv64-linux.tar.xz"
|
|
|
|
|
wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/11.4.0/x86_64-gcc-11.4.0-nolibc-riscv64-linux.tar.xz
|
|
|
|
|
if [ ! -f ./mirror/x86_64-gcc-${GCC_VERSION}-nolibc-riscv64-linux.tar.xz ] ; then
|
|
|
|
|
echo "wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/${GCC_VERSION}/x86_64-gcc-${GCC_VERSION}-nolibc-riscv64-linux.tar.xz"
|
|
|
|
|
wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/${GCC_VERSION}/x86_64-gcc-${GCC_VERSION}-nolibc-riscv64-linux.tar.xz
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ ! -f ./riscv-toolchain/bin/riscv64-linux-gcc-11.4.0 ] ; then
|
|
|
|
|
echo "tar xf ./mirror/x86_64-gcc-11.4.0-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/"
|
|
|
|
|
tar xf ./mirror/x86_64-gcc-11.4.0-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/
|
|
|
|
|
if [ ! -f ./riscv-toolchain/bin/riscv64-linux-gcc-${GCC_VERSION} ] ; then
|
|
|
|
|
echo "tar xf ./mirror/x86_64-gcc-${GCC_VERSION}-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/"
|
|
|
|
|
tar xf ./mirror/x86_64-gcc-${GCC_VERSION}-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
#if [ ! -f ./mirror/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz ] ; then
|
|
|
|
|
# echo "wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz"
|
|
|
|
|
# wget -c --directory-prefix=./mirror/ https://mirrors.edge.kernel.org/pub/tools/crosstool/files/bin/x86_64/13.2.0/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz
|
|
|
|
|
#fi
|
|
|
|
|
|
|
|
|
|
#if [ ! -f ./riscv-toolchain/bin/riscv64-linux-gcc-13.2.0 ] ; then
|
|
|
|
|
# echo "tar xf ./mirror/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/"
|
|
|
|
|
# tar xf ./mirror/x86_64-gcc-13.2.0-nolibc-riscv64-linux.tar.xz --strip-components=2 -C ./riscv-toolchain/
|
|
|
|
|
#fi
|
|
|
|
|
|
|
|
|
|
if [ -d ./hart-software-services/ ] ; then
|
|
|
|
|
rm -rf ./hart-software-services/ || true
|
|
|
|
|
fi
|
|
|
|
|