-
Reinier van der Walle authored
$RADIOHDL/libraries/technology/ip_{technology}. this was set to the location from where the script was executed using a dot (.)
Reinier van der Walle authored$RADIOHDL/libraries/technology/ip_{technology}. this was set to the location from where the script was executed using a dot (.)
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
generate-all-ip.sh 319 B
#!/bin/bash
files=`find $RADIOHDL/libraries/technology/ip_arria10 -name 'generate_ip.sh' `
echo -e "About to generate the following IP blocks:\n$files\n"
for f in $files ; do
cd `dirname $f`
echo
echo -n "Entering directory: "
pwd
echo
rm -rf generated
./`basename $f`
cd -
done
echo "Done"