mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-24 07:46:48 +00:00
fix busybox config parsing for new config format
SVN-Revision: 3770
This commit is contained in:
parent
7e8b5f9c55
commit
4811f9dcdc
@ -6,11 +6,11 @@ my $l1 = '';
|
||||
my $l2 = '=y';
|
||||
while (<>) {
|
||||
chomp;
|
||||
/^(# )BR2_LARGEFILE(.+)$/ and do {
|
||||
/^(# )CONFIG_LARGEFILE(.+)$/ and do {
|
||||
$l1 = $1;
|
||||
$l2 = $2;
|
||||
};
|
||||
/^(# )?BUSYBOX_(.+)/ and do {
|
||||
/^(# )?CONFIG_BUSYBOX_(.+)/ and do {
|
||||
my $p1 = $1;
|
||||
my $p2 = $2;
|
||||
$p2 =~ /(CONFIG_LFS|FDISK_SUPPORT_LARGE_DISKS)/ and do {
|
||||
|
Loading…
Reference in New Issue
Block a user