Merge commit '895d950b5e6c7c5b53ce6cc17522374362b9c999'
This commit is contained in:
commit
4920a8eb4a
10
main.sh
10
main.sh
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user