1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-04 22:24:32 +03:00
openwrt-xburst/scripts/configtest.pl
nbd 0781686bc6 make log output a bit nicer
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@2241 3c298f89-4303-0410-b956-a3cf2f4a3e73
2005-10-22 15:10:20 +00:00

29 lines
676 B
Perl
Executable File

#!/usr/bin/perl
my %change = (
'^BUSYBOX' => 'make package/busybox-clean',
'OPENVPN_' => 'make package/openvpn-clean',
'SYSCONF_' => 'make package/base-files-clean target_clean',
'' => 'make target_clean'
);
my @configfiles = (
# ['package/linux/linux.config', 'build_mipsel/linux/.config' =>
# 'make -C package linux-clean']
);
foreach my $change (keys %change) {
my $v1 = `grep '$change' .config.test`;
my $v2 = `grep '$change' .config`;
$v1 eq $v2 or system($change{$change});
}
foreach my $file (@configfiles) {
if ((-f $file->[0]) and (-f $file->[1])) {
my @s1 = stat $file->[0];
my @s2 = stat $file->[1];
$s1[9] > $s2[9] and system($file->[2]);
}
}