diff options
author | Ed Bartosh <ed.bartosh@linux.intel.com> | 2016-04-06 17:46:12 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-06 23:10:27 +0100 |
commit | e23a23b35b5f61d8401f74644089937a089d5ec9 (patch) | |
tree | eb5c4e5276e330ad64127a7a2ab67fe777a48da9 /bitbake | |
parent | f77baec6dee958e4b0a78ceac1d4e253b7a8eb7a (diff) | |
download | poky-e23a23b35b5f61d8401f74644089937a089d5ec9.tar.gz |
bitbake: 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.
(Bitbake rev: 7506719090e8bb39231cf389c4a5b47f1b37a01f)
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 'bitbake')
-rwxr-xr-x | bitbake/bin/toaster | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/bitbake/bin/toaster b/bitbake/bin/toaster index 6a85ae255c..1e6e6905e4 100755 --- a/bitbake/bin/toaster +++ b/bitbake/bin/toaster | |||
@@ -175,15 +175,11 @@ fi | |||
175 | # make sure that the toaster.sqlite file doesn't default to `pwd` like it currently does. | 175 | # make sure that the toaster.sqlite file doesn't default to `pwd` like it currently does. |
176 | export TOASTER_DIR=`pwd` | 176 | export TOASTER_DIR=`pwd` |
177 | 177 | ||
178 | NOTOASTERUI=0 | ||
179 | WEBSERVER=1 | 178 | WEBSERVER=1 |
180 | WEB_PORT="8000" | 179 | WEB_PORT="8000" |
181 | unset CMD | 180 | unset CMD |
182 | for param in $*; do | 181 | for param in $*; do |
183 | case $param in | 182 | case $param in |
184 | noui ) | ||
185 | NOTOASTERUI=1 | ||
186 | ;; | ||
187 | noweb ) | 183 | noweb ) |
188 | WEBSERVER=0 | 184 | WEBSERVER=0 |
189 | ;; | 185 | ;; |