Add --no-buildroot option to installation script

This commit is contained in:
Jordan Carlin 2024-10-13 23:26:51 -07:00
parent 77eb250ef6
commit dc98f29ffa
No known key found for this signature in database

View File

@ -77,11 +77,17 @@ trap error ERR # run error handler on error
STATUS="setup" # keep track of what part of the installation is running for error messages STATUS="setup" # keep track of what part of the installation is running for error messages
# Check for clean flag # Check for clean flag
if [ "$1" == "--clean" ]; then if [ "$1" == "--clean" ] || [ "$2" == "--clean" ]; then
clean=true clean=true
shift shift
fi fi
# Check for clean flag
if [ "$1" == "--no-buildroot" ] || [ "$2" == "--no-buildroot" ]; then
no_buidroot=true
shift
fi
# Determine script directory to locate related scripts # Determine script directory to locate related scripts
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
@ -391,6 +397,7 @@ fi
# Buildroot and Linux testvectors # Buildroot and Linux testvectors
# Buildroot is used to boot a minimal versio of Linux on Wally. # Buildroot is used to boot a minimal versio of Linux on Wally.
# Testvectors are generated using QEMU. # Testvectors are generated using QEMU.
if [ ! "$no_buidroot" ]; then
section_header "Installing Buildroot and Creating Linux testvectors" section_header "Installing Buildroot and Creating Linux testvectors"
STATUS="buildroot" STATUS="buildroot"
if [ -z "$LD_LIBRARY_PATH" ]; then if [ -z "$LD_LIBRARY_PATH" ]; then
@ -409,6 +416,9 @@ elif [ ! -e "$RISCV"/linux-testvectors ]; then
else else
echo -e "${OK_COLOR}Buildroot and Linux testvectors already exist.${ENDC}" echo -e "${OK_COLOR}Buildroot and Linux testvectors already exist.${ENDC}"
fi fi
else
echo -e "${OK_COLOR}Skipping Buildroot and Linux testvectors.${ENDC}"
fi
# Download site-setup scripts # Download site-setup scripts