#!/bin/bash # # Copyright (C) 2017 Wolfgang Wiedmeyer # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # set -e SCRIPT=$0 REPLICANT_DIR=$1 . releasevars.sh ARGS_COUNT=1 parallel_tasks=$(echo "$(grep 'processor' /proc/cpuinfo | wc -l ) + 1" | bc) build_all () { dir=$( pwd ) cd "$REPLICANT_DIR" for device in $RELEASE_DEVICES do vendor/replicant/build.sh $device done cd "$dir" } prepare () { dir=$( pwd ) cd "$REPLICANT_DIR" make clobber ./vendor/replicant/build-toolchain cd "$dir" } print_help () { echo "$SCRIPT: [REPLICANT_DIR]" } # Check for the correct number of args if [ "$#" -lt "$ARGS_COUNT" ] then print_help exit 1 fi prepare build_all