83 lines
3.0 KiB
Bash
Executable File
83 lines
3.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# exit script if any command fails
|
|
set -e
|
|
set -o pipefail
|
|
|
|
# Check that git version is at least 1.7.8
|
|
MYGIT=$(git --version)
|
|
MYGIT=${MYGIT#'git version '} # Strip prefix
|
|
case ${MYGIT} in
|
|
[1-9]*) ;;
|
|
*) echo 'warning: unknown git version' ;;
|
|
esac
|
|
MINGIT="1.7.8"
|
|
if [ "$MINGIT" != "$(echo -e "$MINGIT\n$MYGIT" | sort -V | head -n1)" ]; then
|
|
echo "This script requires git version $MINGIT or greater. Exiting."
|
|
false
|
|
fi
|
|
|
|
DIR="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
CHIPYARD_DIR="$(dirname "$DIR")"
|
|
|
|
# Ignore toolchain submodules
|
|
cd "$CHIPYARD_DIR"
|
|
for name in toolchains/*-tools/*/ ; do
|
|
git config submodule."${name%/}".update none
|
|
done
|
|
git config submodule.toolchains/libgloss.update none
|
|
git config submodule.toolchains/qemu.update none
|
|
|
|
# Don't automatically initialize generators with big submodules (e.g. linux source)
|
|
git config submodule.generators/sha3.update none
|
|
git config submodule.generators/gemmini.update none
|
|
|
|
# Disable updates to the FireSim submodule until explicitly requested
|
|
git config submodule.sims/firesim.update none
|
|
# Disable updates to the hammer tool plugins repos
|
|
git config submodule.vlsi/hammer-cadence-plugins.update none
|
|
git config submodule.vlsi/hammer-synopsys-plugins.update none
|
|
git config submodule.vlsi/hammer-mentor-plugins.update none
|
|
git config submodule.software/firemarshal.update none
|
|
git submodule update --init --recursive #--jobs 8
|
|
|
|
# Un-ignore toolchain submodules
|
|
for name in toolchains/*-tools/*/ ; do
|
|
git config --unset submodule."${name%/}".update
|
|
done
|
|
git config --unset submodule.toolchains/libgloss.update
|
|
git config --unset submodule.toolchains/qemu.update
|
|
|
|
git config --unset submodule.vlsi/hammer-cadence-plugins.update
|
|
git config --unset submodule.vlsi/hammer-synopsys-plugins.update
|
|
git config --unset submodule.vlsi/hammer-mentor-plugins.update
|
|
|
|
git config --unset submodule.generators/sha3.update
|
|
git config --unset submodule.generators/gemmini.update
|
|
git config --unset submodule.software/firemarshal.update
|
|
|
|
# Non-recursive clone to exclude riscv-linux
|
|
git submodule update --init generators/sha3
|
|
|
|
# Non-recursive clone to exclude gemmini-software
|
|
git submodule update --init generators/gemmini
|
|
git -C generators/gemmini/ submodule update --init --recursive software/gemmini-rocc-tests
|
|
|
|
git config --unset submodule.sims/firesim.update
|
|
# Minimal non-recursive clone to initialize sbt dependencies
|
|
git submodule update --init sims/firesim
|
|
git config submodule.sims/firesim.update none
|
|
|
|
# Only shallow clone needed for basic SW tests
|
|
git submodule update --init software/firemarshal
|
|
|
|
# Configure firemarshal to know where our firesim installation is
|
|
if [ ! -f ./software/firemarshal/marshal-config.yaml ]; then
|
|
echo "firesim-dir: '../../sims/firesim/'" > ./software/firemarshal/marshal-config.yaml
|
|
fi
|
|
|
|
echo "# line auto-generated by init-submodules-no-riscv-tools.sh" >> env.sh
|
|
echo '__DIR="$(dirname "$(readlink -f "${BASH_SOURCE[0]:-${(%):-%x}}")")"' >> env.sh
|
|
echo "PATH=\$__DIR/bin:\$PATH" >> env.sh
|
|
echo "PATH=\$__DIR/software/firemarshal:\$PATH" >> env.sh
|