summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-26 13:48:06 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-27 09:42:06 +0000
commit2651e11cae308ecbda16d844105218e8bbcd7213 (patch)
tree6c854285bccb111811feb086daf26a17ce29fb62 /scripts
parent0f77f3fa44c872a5ec61676d74168d9d8284d12c (diff)
downloadpoky-2651e11cae308ecbda16d844105218e8bbcd7213.tar.gz
scripts: Update after addtion of parameter to bitbake -S
(From OE-Core rev: fe2692c1ad1fcdbcdbc0ba419db8ff9ddb390fa7) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/bitbake-whatchanged2
-rwxr-xr-xscripts/sstate-diff-machines.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/bitbake-whatchanged b/scripts/bitbake-whatchanged
index 90ad2f850c..e4497e03a8 100755
--- a/scripts/bitbake-whatchanged
+++ b/scripts/bitbake-whatchanged
@@ -272,7 +272,7 @@ Note:
272 try: 272 try:
273 # Generate the new stamps dir 273 # Generate the new stamps dir
274 print("Generating the new stamps ... (need several minutes)") 274 print("Generating the new stamps ... (need several minutes)")
275 cmdline = "STAMPS_DIR=%s bitbake -S %s" % (new_stampsdir, recipe) 275 cmdline = "STAMPS_DIR=%s bitbake -S none %s" % (new_stampsdir, recipe)
276 # FIXME 276 # FIXME
277 # The "bitbake -S" may fail, not fatal error, the stamps will still 277 # The "bitbake -S" may fail, not fatal error, the stamps will still
278 # be generated, this might be a bug of "bitbake -S". 278 # be generated, this might be a bug of "bitbake -S".
diff --git a/scripts/sstate-diff-machines.sh b/scripts/sstate-diff-machines.sh
index 931f9d7c00..860be73679 100755
--- a/scripts/sstate-diff-machines.sh
+++ b/scripts/sstate-diff-machines.sh
@@ -98,7 +98,7 @@ OUTPUT=${tmpdir}/sstate-diff/`date "+%s"`
98for M in ${machines}; do 98for M in ${machines}; do
99 find ${tmpdir}/stamps/ -name \*sigdata\* | xargs rm -f 99 find ${tmpdir}/stamps/ -name \*sigdata\* | xargs rm -f
100 mkdir -p ${OUTPUT}/${M} 100 mkdir -p ${OUTPUT}/${M}
101 export MACHINE=${M}; bitbake -S ${targets} | tee -a ${OUTPUT}/${M}/log; 101 export MACHINE=${M}; bitbake -S none ${targets} | tee -a ${OUTPUT}/${M}/log;
102 cp -ra ${tmpdir}/stamps/* ${OUTPUT}/${M} 102 cp -ra ${tmpdir}/stamps/* ${OUTPUT}/${M}
103 find ${OUTPUT}/${M} -name \*sigdata\* | sed "s#${OUTPUT}/${M}/##g" | sort > ${OUTPUT}/${M}/list 103 find ${OUTPUT}/${M} -name \*sigdata\* | sed "s#${OUTPUT}/${M}/##g" | sort > ${OUTPUT}/${M}/list
104 M_UNDERSCORE=`echo ${M} | sed 's/-/_/g'` 104 M_UNDERSCORE=`echo ${M} | sed 's/-/_/g'`