mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
fix a small bug in config.pl that tends to mess up kernel cmdlines
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6212 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
@@ -18,11 +18,11 @@ sub load_config($) {
|
|||||||
open FILE, "$file" or die "can't open file";
|
open FILE, "$file" or die "can't open file";
|
||||||
while (<FILE>) {
|
while (<FILE>) {
|
||||||
chomp;
|
chomp;
|
||||||
/^CONFIG_(.+)=(.+)/ and do {
|
/^CONFIG_(.+?)=(.+)/ and do {
|
||||||
$config{$1} = $2;
|
$config{$1} = $2;
|
||||||
next;
|
next;
|
||||||
};
|
};
|
||||||
/^# CONFIG_(.+) is not set/ and do {
|
/^# CONFIG_(.+?) is not set/ and do {
|
||||||
$config{$1} = -1;
|
$config{$1} = -1;
|
||||||
next;
|
next;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user