Skip to content
Snippets Groups Projects
Commit 184dab8f authored by Sven Roederer's avatar Sven Roederer Committed by Sven Roederer
Browse files

build: ignore deactivated feeds


The OpenWrt feeds.conf.defaults contains some feeds that are commented out
and not active. Such feeds will be returned by the default_feeds.sh script
anyway and causing pseudo feeds. Limit the script to only return active
feeds, by filtering out lines starting with '#'.
This usually only applies to the OpenWrt master branch.

Signed-off-by: default avatarSven Roederer <freifunk@it-solutions.geroedel.de>

change as per NeoRider
parent 45402173
No related branches found
No related tags found
No related merge requests found
DEFAULT_FEEDS="$(awk '{print $2}' openwrt/feeds.conf.default)"
# list feeds which don't start with #
DEFAULT_FEEDS="$(awk '!/^#/ {print $2}' openwrt/feeds.conf.default)"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment