projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
run rstrip in bash
[openwrt.git]
/
scripts
/
gen_busybox_config.pl
diff --git
a/scripts/gen_busybox_config.pl
b/scripts/gen_busybox_config.pl
index
1a84ab9
..
9360052
100755
(executable)
--- a/
scripts/gen_busybox_config.pl
+++ b/
scripts/gen_busybox_config.pl
@@
-1,4
+1,11
@@
#!/usr/bin/perl
#!/usr/bin/perl
+#
+# Copyright (C) 2006 OpenWrt.org
+#
+# This is free software, licensed under the GNU General Public License v2.
+# See /LICENSE for more information.
+#
+
use strict;
my $line;
use strict;
my $line;
@@
-6,11
+13,11
@@
my $l1 = '';
my $l2 = '=y';
while (<>) {
chomp;
my $l2 = '=y';
while (<>) {
chomp;
- /^(# )
BR2
_LARGEFILE(.+)$/ and do {
+ /^(# )
CONFIG
_LARGEFILE(.+)$/ and do {
$l1 = $1;
$l2 = $2;
};
$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 {
my $p1 = $1;
my $p2 = $2;
$p2 =~ /(CONFIG_LFS|FDISK_SUPPORT_LARGE_DISKS)/ and do {
This page took
0.022246 seconds
and
4
git commands to generate.