busybox: update to version 1.23.2

Signed-off-by: Felix Fietkau <nbd@openwrt.org>

SVN-Revision: 45272
This commit is contained in:
Felix Fietkau
2015-04-04 17:52:02 +00:00
parent 94850b0068
commit c31df6e995
28 changed files with 307 additions and 342 deletions

View File

@@ -41,6 +41,14 @@ while (<FIND>) {
undef $default_set;
}
$line =~ s/^(\s*source\s+)/$1package\/utils\/busybox\/config\//;
if ($line =~ /^(\s*range\s*)(\w+)(\s+)(\w+)\s*$/) {
my $prefix = $1;
my $r1 = $2;
my $r2 = $4;
$r1 =~ s/^([a-zA-Z]+)/BUSYBOX_CONFIG_$1/;
$r2 =~ s/^([a-zA-Z]+)/BUSYBOX_CONFIG_$1/;
$line = "$prefix$r1 $r2\n";
}
$line =~ s/^(\s*(prompt "[^"]+" if|config|depends|depends on|select|default|default \w if)\s+\!?)([A-Z_])/$1BUSYBOX_CONFIG_$3/g;
$line =~ s/(( \|\| | \&\& | \( )!?)([A-Z_])/$1BUSYBOX_CONFIG_$3/g;