Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
#! /bin/bash
set -e
export SSTATE_CACHE_DIR=/home/srv/sstate/master
./poky/scripts/sstate-cache-management.sh -d -y
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
ERR_REPORT_USERNAME=$1
ERR_REPORT_EMAIL=$2
BUILDDIR=$3
shift
shift
shift
if [ ! -e $BUILDDIR ]; then
exit 0
fi
cd $BUILDDIR/../poky
if [ -d $BUILDDIR/tmp/log/error-report/ ]; then
echo "$ERR_REPORT_USERNAME" > ~/.oe-send-error
echo "$ERR_REPORT_EMAIL" >> ~/.oe-send-error
. ./oe-init-build-env $BUILDDIR
for x in `ls $BUILDDIR/tmp/log/error-report/ | grep error_report_`; do
send-error-report -y tmp/log/error-report/$x
done
fi