summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xplugins/url_check_ng/main5
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/url_check_ng/main b/plugins/url_check_ng/main
index 8611cda99..77d168868 100755
--- a/plugins/url_check_ng/main
+++ b/plugins/url_check_ng/main
@@ -187,10 +187,11 @@ init(){
while read line content; do
case $line in
"PACKAGES-y"*)
- YESPACKAGES=`echo "$content" | tr "a-z-" "A-Z_"`
+ # we donīt want to see kernel- and u-boot urls, so we just skip these packages
+ YESPACKAGES=`echo "$content" | tr "a-z-" "A-Z_" | sed -e s/kernel\ //g -e s/u-boot\ //g`
;;
"PACKAGES-"*)
- NOPACKAGES=`echo "$content" | tr "a-z-" "A-Z_"`
+ NOPACKAGES=`echo "$content" | tr "a-z-" "A-Z_" | sed -e s/kernel\ //g -e s/u-boot\ //g`
;;
esac
done < ${M2B_ENV}