summaryrefslogtreecommitdiffstats
path: root/meta/classes/package_ipk.bbclass
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes/package_ipk.bbclass')
-rw-r--r--meta/classes/package_ipk.bbclass20
1 files changed, 20 insertions, 0 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass
index fdf326205b..ba768746ca 100644
--- a/meta/classes/package_ipk.bbclass
+++ b/meta/classes/package_ipk.bbclass
@@ -61,6 +61,26 @@ python package_ipk_install () {
61 raise bb.build.FuncFailed 61 raise bb.build.FuncFailed
62} 62}
63 63
64ipk_log_check() {
65 target="$1"
66 lf_path="$2"
67
68 lf_txt="`cat $lf_path`"
69 for keyword_die in "exit 1" "Collected errors" ERR Fail
70 do
71 if (echo "$lf_txt" | grep -v log_check | grep "$keyword_die") >/dev/null 2>&1
72 then
73 echo "log_check: There were error messages in the logfile"
74 echo -e "log_check: Matched keyword: [$keyword_die]\n"
75 echo "$lf_txt" | grep -v log_check | grep -C 5 -i "$keyword_die"
76 echo ""
77 do_exit=1
78 fi
79 done
80 test "$do_exit" = 1 && exit 1
81 true
82}
83
64# 84#
65# Update the Packages index files in ${DEPLOY_DIR_IPK} 85# Update the Packages index files in ${DEPLOY_DIR_IPK}
66# 86#