From 432e30f80167b59f856ff54296f315f1035247cc Mon Sep 17 00:00:00 2001 From: Bjoern Buerger Date: Thu, 25 Oct 2007 08:42:22 +0000 Subject: git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7587 33e552b5-05e3-0310-8538-816dae2090ed --- plugins/url_check_ng/main | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'plugins') 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} -- cgit v1.2.3