Merge commit '895d950b5e6c7c5b53ce6cc17522374362b9c999'

This commit is contained in:
Igor Pečovnik 2015-12-08 19:37:13 +01:00
commit 4920a8eb4a

10
main.sh
View File

@ -13,6 +13,16 @@
#
#
# Script parameters handling
for i in "$@"; do
if [[ "$i" == *"="* ]]; then
parameter=${i%%=*}
value=${i##*=}
echo "[info] Command line: setting $parameter to ${value:-(empty)}"
eval $parameter=$value
fi
done
# We'll use this tittle on all menus
backtitle="Armbian building script, http://www.armbian.com | Author: Igor Pecovnik"
mkdir -p $DEST/debug $SRC/userpatches/kernel $SRC/userpatches/u-boot