|
From: Ivan D. <idr...@us...> - 2006-06-13 22:08:58
|
Update of /cvsroot/terk/embed In directory sc8-pr-cvs10.sourceforge.net:/tmp/cvs-serv20671 Modified Files: buildoptfs.sh Log Message: buildoptfs now gives all files in /opt/bin and /opt/scripts executable permissions Index: buildoptfs.sh =================================================================== RCS file: /cvsroot/terk/embed/buildoptfs.sh,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** buildoptfs.sh 13 Jun 2006 20:44:06 -0000 1.1 --- buildoptfs.sh 13 Jun 2006 22:08:56 -0000 1.2 *************** *** 60,63 **** --- 60,68 ---- try cp ${BASEDIR}/../embed/test/leds/setLEDs ${BASEDIR}/edb9302/opt/bin try cp ${BASEDIR}/../embed/src/diagnostics/checkCFG ${BASEDIR}/edb9302/opt/bin + + # Make executable + + try chmod a+x ${BASEDIR}/edb9302/opt/scripts/*.* + try chmod a+x ${BASEDIR}/edb9302/opt/bin/* # Copy website *************** *** 76,82 **** try cp ${BASEDIR}/../embed/www/files/NetworkConfig.txt ${BASEDIR}/edb9302/opt/www/files ! #BASEDIR=`cd cirrus-arm-linux-1.0.4/;` build_rwfs ${BASEDIR}/edb9302/opt edb9302 echo "Writable filesystem successfully created!" --- 81,88 ---- try cp ${BASEDIR}/../embed/www/files/NetworkConfig.txt ${BASEDIR}/edb9302/opt/www/files ! # Build image build_rwfs ${BASEDIR}/edb9302/opt edb9302 + echo "Writable filesystem successfully created!" |