mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-27 19:03:08 +02:00
fix busybox config parsing for new config format
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@3770 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
02eae88c35
commit
739f48b3ce
@ -6,11 +6,11 @@ my $l1 = '';
|
|||||||
my $l2 = '=y';
|
my $l2 = '=y';
|
||||||
while (<>) {
|
while (<>) {
|
||||||
chomp;
|
chomp;
|
||||||
/^(# )BR2_LARGEFILE(.+)$/ and do {
|
/^(# )CONFIG_LARGEFILE(.+)$/ and do {
|
||||||
$l1 = $1;
|
$l1 = $1;
|
||||||
$l2 = $2;
|
$l2 = $2;
|
||||||
};
|
};
|
||||||
/^(# )?BUSYBOX_(.+)/ and do {
|
/^(# )?CONFIG_BUSYBOX_(.+)/ and do {
|
||||||
my $p1 = $1;
|
my $p1 = $1;
|
||||||
my $p2 = $2;
|
my $p2 = $2;
|
||||||
$p2 =~ /(CONFIG_LFS|FDISK_SUPPORT_LARGE_DISKS)/ and do {
|
$p2 =~ /(CONFIG_LFS|FDISK_SUPPORT_LARGE_DISKS)/ and do {
|
||||||
|
Loading…
Reference in New Issue
Block a user