From d3ac1eec7ab93105b91cbc0cd692d6e150b36458 Mon Sep 17 00:00:00 2001 From: Dreaded_X Date: Mon, 1 Feb 2021 01:04:35 +0100 Subject: [PATCH] Reorganized setup to only have required scripts --- scripts/microblaze.sh => microblaze.sh | 0 scripts/arm.sh | 8 -------- setup.sh | 8 -------- source.sh | 2 -- 4 files changed, 18 deletions(-) rename scripts/microblaze.sh => microblaze.sh (100%) delete mode 100755 scripts/arm.sh delete mode 100755 setup.sh delete mode 100644 source.sh diff --git a/scripts/microblaze.sh b/microblaze.sh similarity index 100% rename from scripts/microblaze.sh rename to microblaze.sh diff --git a/scripts/arm.sh b/scripts/arm.sh deleted file mode 100755 index f97c964..0000000 --- a/scripts/arm.sh +++ /dev/null @@ -1,8 +0,0 @@ -# Cleanup old files -rm -rf arm-none-eabi - -# Download and extract latest arm toolchain -wget https://developer.arm.com/-/media/Files/downloads/gnu-rm/9-2020q2/gcc-arm-none-eabi-9-2020-q2-update-x86_64-linux.tar.bz2 -O arm-none-eabi-gcc.tar.bz2 -tar xvf arm-none-eabi-gcc.tar.bz2 -mv gcc-arm-none-eabi-9-2020-q2-update arm-none-eabi -rm arm-none-eabi-gcc.tar.bz2 diff --git a/setup.sh b/setup.sh deleted file mode 100755 index d731858..0000000 --- a/setup.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/bash - -# @todo Check if all the required programs are installed - -./scripts/arm.sh -./scripts/microblaze.sh - -# svn checkout svn://svn.code.sf.net/p/sdcc/code/trunk sdcc-code diff --git a/source.sh b/source.sh deleted file mode 100644 index ff9c678..0000000 --- a/source.sh +++ /dev/null @@ -1,2 +0,0 @@ -# Add all the tools to the path -PATH=$(dirname $(readlink -f $0))/arm-none-eabi/bin:$(dirname $(readlink -f $0))/microblazeel-xilinx-elf/bin:$(dirname $(readlink -f $0))/bin:/opt/Xilinx/14.7/ISE_DS/EDK/bin/lin64:/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64:$PATH