aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/gen_busybox_config.pl
diff options
context:
space:
mode:
authorMike Baker <mbm@openwrt.org>2006-05-12 21:33:07 +0000
committerMike Baker <mbm@openwrt.org>2006-05-12 21:33:07 +0000
commit953f22142d3f5bb1061ce595e8663d080ea9015b (patch)
treeab75c8ee89037a9adf82e55f1eee8cc5316af070 /scripts/gen_busybox_config.pl
parent20e4ecc021ee9aa4b799b065732f39d9daa5a2c5 (diff)
downloadmaster-187ad058-953f22142d3f5bb1061ce595e8663d080ea9015b.tar.gz
master-187ad058-953f22142d3f5bb1061ce595e8663d080ea9015b.tar.bz2
master-187ad058-953f22142d3f5bb1061ce595e8663d080ea9015b.zip
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
Diffstat (limited to 'scripts/gen_busybox_config.pl')
-rwxr-xr-xscripts/gen_busybox_config.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/gen_busybox_config.pl b/scripts/gen_busybox_config.pl
index 1a84ab999d..0c70b4a116 100755
--- a/scripts/gen_busybox_config.pl
+++ b/scripts/gen_busybox_config.pl
@@ -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 {