[PATCH 1/4] buildscript: buildall: remove community parameter

Tim Niemeyer tim at tn-x.org
Sa Mai 14 16:36:25 CEST 2016


Signed-off-by: Tim Niemeyer <tim at tn-x.org>
---

 buildscript | 15 ++++++---------
 1 file changed, 6 insertions(+), 9 deletions(-)

diff --git a/buildscript b/buildscript
index 7e16687..d6e4d51 100755
--- a/buildscript
+++ b/buildscript
@@ -316,14 +316,13 @@ clean() {
 
 buildall() {
     for bsp in $(/bin/ls bsp/*.bsp); do
-        ./buildscript selectcommunity "$1"
         ./buildscript selectbsp "$bsp"
         ./buildscript prepare
-        ./buildscript build "$2"
+        ./buildscript build "$1"
     done
 }
 
-if [ "$1" != "selectbsp" -a "$1" != "selectcommunity" -a "$1" != "buildall" ]; then
+if [ "$1" != "selectbsp" -a "$1" != "selectcommunity" ]; then
     if [ ! -h selected_bsp ]; then
         echo "Please select a Board-Support-Package using:"
         echo "$0 selectbsp"
@@ -422,15 +421,13 @@ case "$1" in
         fi
         ;;
     "buildall")
-        if [ "$2" = "help" ] || [ "$2" = "" ]; then
+        if [ "$1" = "help" ]; then
             echo "This option builds the firmware for all routers of a given community."
             echo
-            echo "Usage: $0 $1 <community-file> [fast]"
-            echo "available community-files: "
-            /bin/ls community/*.cfg
+            echo "Usage: $0 $1 [fast]"
             echo
         else
-            buildall "$2" "$3"
+            buildall "$2"
         fi
         ;;
     "release")
@@ -453,7 +450,7 @@ case "$1" in
         echo "  prepare"
         echo "  config openwrt"
         echo "  build [fast|debug]"
-        echo "  buildall <community-file> [fast]"
+        echo "  buildall [fast]"
         echo "  release [all] [fast]"
         echo "  clean"
         echo ""
-- 
2.1.4




Mehr Informationen über die Mailingliste franken-dev