Skip to content
Snippets Groups Projects
Commit 32403e49 authored by Tim Niemeyer's avatar Tim Niemeyer
Browse files

buildscript: add fast option to buildall


Signed-off-by: default avatarTim Niemeyer <tim.niemeyer@mastersword.de>
parent 40e4da63
No related branches found
No related tags found
No related merge requests found
...@@ -224,7 +224,7 @@ buildall() { ...@@ -224,7 +224,7 @@ buildall() {
./buildscript selectcommunity $1 ./buildscript selectcommunity $1
./buildscript selectbsp $bsp ./buildscript selectbsp $bsp
./buildscript prepare ./buildscript prepare
./buildscript build ./buildscript build $2
done done
} }
...@@ -364,11 +364,11 @@ case "$1" in ...@@ -364,11 +364,11 @@ case "$1" in
"buildall") "buildall")
if [ "$2" = "help" ] || [ "$2" = "" ]; then if [ "$2" = "help" ] || [ "$2" = "" ]; then
echo "This option builds the firmware for all routers of a given community." echo "This option builds the firmware for all routers of a given community."
echo "Usage: $0 $1 community.cfg" echo "Usage: $0 $1 community.cfg [fast]"
echo "community.cfg: " echo "community.cfg: "
/bin/ls community/*.cfg /bin/ls community/*.cfg
else else
buildall $2 buildall $2 $3
fi fi
;; ;;
*) *)
...@@ -380,6 +380,7 @@ case "$1" in ...@@ -380,6 +380,7 @@ case "$1" in
echo " prepare" echo " prepare"
echo " config" echo " config"
echo " build" echo " build"
echo " buildall"
echo " flash" echo " flash"
echo " download" echo " download"
echo "" echo ""
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment