URL
https://opencores.org/ocsvn/s1_core/s1_core/trunk
Subversion Repositories s1_core
[/] [s1_core/] [trunk/] [tools/] [bin/] [tar_env] - Rev 114
Compare with Previous | Blame | View Log
#!/bin/bash# This script makes a tarball of the S1 environment:# you should call "clean_env" before calling this,# otherwise you will get a huge file.test_env S1_ROOTTARBALL=$HOME/s1_core.tarrm -f $TARBALL* $S1_ROOT/*.tar*cd $S1_ROOT/..tar cvf $TARBALL `basename $S1_ROOT`gzip $TARBALLmv -f $TARBALL.gz $S1_ROOT
