summaryrefslogtreecommitdiffstats
path: root/bin/toaster
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-04-06 17:46:12 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-04-06 23:00:09 +0100
commit7506719090e8bb39231cf389c4a5b47f1b37a01f (patch)
tree59ca352feb0bc5b81a9403a60779a15b47f1858b /bin/toaster
parent3fbd8534149e87c5a5d1bc1691711cfca05cafd1 (diff)
downloadbitbake-contrib-7506719090e8bb39231cf389c4a5b47f1b37a01f.tar.gz
toaster: get rid of noui option
noui command line option doesn't makes sense anymore as toaster doesn't run bitbake. It should be safe to to remove it. The purpose of this option was to skip running bitbake observer process. This was never used before as it's not possible to run toaster build without running observer. Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Michael Wood <michael.g.wood@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin/toaster')
-rwxr-xr-xbin/toaster4
1 files changed, 0 insertions, 4 deletions
diff --git a/bin/toaster b/bin/toaster
index 6a85ae255..1e6e6905e 100755
--- a/bin/toaster
+++ b/bin/toaster
@@ -175,15 +175,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
WEB_PORT="8000"
unset CMD
for param in $*; do
case $param in
- noui )
- NOTOASTERUI=1
- ;;
noweb )
WEBSERVER=0
;;