[ci skip] Give all scripts +x permissions

This commit is contained in:
Jerry Zhao
2022-10-01 03:03:22 +00:00
parent 03083507d3
commit 88054facdf
3 changed files with 20 additions and 14 deletions

0
scripts/build-util.sh Normal file → Executable file
View File

32
scripts/repo-clean.sh Normal file → Executable file
View File

@@ -5,17 +5,23 @@ set -e
# this should be run from chipyard repo top
RDIR=$(git rev-parse --show-toplevel)
cd $RDIR/libgloss
rm -rf build.log
cd ../riscv-tools/riscv-isa-sim/
rm -rf build.log
cd ../riscv-pk
rm -rf build.log
cd ../riscv-tests
rm -rf build.log
cd $RDIR/tools/api-config-chipsalliance
rm -rf $RDIR/toolchains/libgloss/build.log
rm -rf $RDIR/toolchains/riscv-tools/riscv-isa-sim/build.log
rm -rf $RDIR/toolchains/riscv-tools/riscv-pk/build.log
rm -rf $RDIR/toolchains/riscv-tools/riscv-tests/build.log
rm -rf $RDIR/toolchains/esp-tools/riscv-isa-sim/build.log
rm -rf $RDIR/toolchains/esp-tools/riscv-pk/build.log
rm -rf $RDIR/toolchains/esp-tools/riscv-tests/build.log
(
pushd $RDIR/generators/constellation
if [ -d espresso ]
then
git submodule deinit espresso
fi
popd
)
(
pushd $RDIR/tools/api-config-chipsalliance
git config --local status.showUntrackedFiles no
popd
)

0
scripts/utils.sh Normal file → Executable file
View File