Skip to content
Snippets Groups Projects
Commit 3016055a authored by Eric Kooistra's avatar Eric Kooistra
Browse files

Added generate-all-ip.sh (svn-copy from ip_arria)to generate all IP for this...

Added generate-all-ip.sh (svn-copy from ip_arria)to generate all IP for this version ip_arria10_e3sge3 of the IP.
parent 878e497a
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
files=`find . -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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment