This commit is contained in:
Mark Qvist 2014-04-03 22:21:37 +02:00
commit c898b090dd
1049 changed files with 288572 additions and 0 deletions

17
bertos/cpu/newcore Executable file
View file

@ -0,0 +1,17 @@
#!/bin/bash
DIRS="drv hw io scripts"
if [ $# != 1 ]; then
echo "Create a new core tree with subdirs:"
echo $DIRS
echo "usage $0 <core>"
exit 1
fi
CORE=$1
mkdir $CORE
cd $CORE
for dir in $DIRS
do
mkdir $dir
done
cd ..