summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorEd Bartosh <ed.bartosh@linux.intel.com>2016-01-22 12:18:37 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2016-01-22 12:45:14 +0000
commit76c9871740ef42ac35fdfdcb89a68478cca370cd (patch)
tree735ca19d822b6e1ad004234d6a0da25a229320eb /bin
parentaba0dce57c889495ec5c13919991a060aeff65d2 (diff)
downloadbitbake-contrib-76c9871740ef42ac35fdfdcb89a68478cca370cd.tar.gz
toaster: run bitbake server with --read option
Toaster script run bitbake with --postread conf/toaster.conf. It turned out that variables set this way don't influence the build. Changing --postread to --read makes bitbake to read variables earlier and should fix this issue. [YOCTO #8781] Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Elliot Smith <elliot.smith@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/toaster2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/toaster b/bin/toaster
index e5041cbb9..72eae6416 100755
--- a/bin/toaster
+++ b/bin/toaster
@@ -108,7 +108,7 @@ stop_system()
start_bitbake() {
unset BBSERVER
- bitbake --postread conf/toaster.conf --server-only -t xmlrpc -B 0.0.0.0:0
+ bitbake --read conf/toaster.conf --server-only -t xmlrpc -B 0.0.0.0:0
if [ $? -ne 0 ]; then
echo "Bitbake server start failed"
return 1