]> code.ossystems Code Review - openembedded-core.git/commitdiff
scripts: Update after addtion of parameter to bitbake -S
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 26 Mar 2014 13:48:06 +0000 (13:48 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 27 Mar 2014 09:40:02 +0000 (09:40 +0000)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/bitbake-whatchanged
scripts/sstate-diff-machines.sh

index 90ad2f850cf18527e89c12df2cc0f52fd4655852..e4497e03a8784b8f06c859572dea5002518e3e2f 100755 (executable)
@@ -272,7 +272,7 @@ Note:
     try:
         # Generate the new stamps dir
         print("Generating the new stamps ... (need several minutes)")
-        cmdline = "STAMPS_DIR=%s bitbake -S %s" % (new_stampsdir, recipe)
+        cmdline = "STAMPS_DIR=%s bitbake -S none %s" % (new_stampsdir, recipe)
         # FIXME
         # The "bitbake -S" may fail, not fatal error, the stamps will still
         # be generated, this might be a bug of "bitbake -S".
index 931f9d7c006f9e9f81e6d88f12ec675dede7c291..860be736790a0910104a5390f5148b9fcd45a4bc 100755 (executable)
@@ -98,7 +98,7 @@ OUTPUT=${tmpdir}/sstate-diff/`date "+%s"`
 for M in ${machines}; do
   find ${tmpdir}/stamps/ -name \*sigdata\* | xargs rm -f
   mkdir -p ${OUTPUT}/${M}
-  export MACHINE=${M}; bitbake -S ${targets} | tee -a ${OUTPUT}/${M}/log;
+  export MACHINE=${M}; bitbake -S none ${targets} | tee -a ${OUTPUT}/${M}/log;
   cp -ra ${tmpdir}/stamps/* ${OUTPUT}/${M}
   find ${OUTPUT}/${M} -name \*sigdata\* | sed "s#${OUTPUT}/${M}/##g" | sort > ${OUTPUT}/${M}/list
   M_UNDERSCORE=`echo ${M} | sed 's/-/_/g'`