From 3960b6ec5c34e2136682e56b2883b69efa0a2693 Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Thu, 17 Dec 2015 16:48:55 +0000 Subject: bitbake: toaster: move setting of default values Set default values of script parameters just before they are parsed to increase readability. (Bitbake rev: 627f0d6adcfe281ef0487bf15a35151f1ceff194) Signed-off-by: Ed Bartosh Signed-off-by: Elliot Smith Signed-off-by: Richard Purdie --- bitbake/bin/toaster | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) (limited to 'bitbake/bin') diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 6dd20c11d1..7cecc7b3cd 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster @@ -159,12 +159,7 @@ fi BBBASEDIR=`dirname $TOASTER`/.. MANAGE=$BBBASEDIR/lib/toaster/manage.py OEROOT=`dirname $TOASTER`/../.. -NOTOASTERUI=0 -WEBSERVER=1 -TOASTER_BRBE="" -if [ "$WEB_PORT" = "" ]; then - WEB_PORT="8000" -fi + # this is the configuraton file we are using for toaster # we are using the same logic that oe-setup-builddir uses # (based on TEMPLATECONF and .templateconf) to determine @@ -206,7 +201,11 @@ fi # make sure that the toaster.sqlite file doesn't default to `pwd` like it currently does. export TOASTER_DIR=`pwd` +NOTOASTERUI=0 +WEBSERVER=1 NOBROWSER=0 +TOASTER_BRBE="" +WEB_PORT="8000" for param in $*; do case $param in -- cgit v1.2.3-54-g00ecf