From: nbd Date: Fri, 6 Apr 2007 23:15:39 +0000 (+0000) Subject: add a menuconfig option for specifying a local download mirror X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=39093d7cdd662d17f5177c804c944f82d8639113 add a menuconfig option for specifying a local download mirror git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6877 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/Config.in b/Config.in index 72a3be2b6..fde72b518 100644 --- a/Config.in +++ b/Config.in @@ -26,6 +26,9 @@ config BROKEN bool "Show broken platforms / packages" if DEVEL default n +config LOCALMIRROR + string "Local mirror for source packages" if DEVEL + menuconfig BUILDOPTS bool "Build Options" if DEVEL diff --git a/scripts/download.pl b/scripts/download.pl index 280e5f0d7..543dcc187 100755 --- a/scripts/download.pl +++ b/scripts/download.pl @@ -21,13 +21,24 @@ my $ok; @ARGV > 0 or die "Syntax: $0 [ ...]\n"; sub localmirrors { - my @mlist; - open LM, "$scriptdir/localmirrors" or return (); - while () { - chomp $_; - push @mlist, $_; - } + open LM, "$scriptdir/localmirrors" and do { + while () { + chomp $_; + push @mlist, $_; + } + close LM; + }; + open CONFIG, "<".$ENV{'TOPDIR'}."/.config" and do { + while () { + /^CONFIG_LOCALMIRROR="(.+)"/ and do { + chomp; + push @mlist, $1; + }; + } + close CONFIG; + }; + return @mlist; }