1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-04 02:01:25 +02:00

clean linux kernel, when linux.config changes

SVN-Revision: 408
This commit is contained in:
Felix Fietkau 2005-03-21 14:27:53 +00:00
parent 7f3427642d
commit 9f7d283063

@ -1,12 +1,26 @@
#!/usr/bin/perl #!/usr/bin/perl
my %change = ( my %change = (
'BUSYBOX' => 'make -C package busybox-clean', 'BUSYBOX' => 'make -C package busybox-clean',
'' => 'make 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) { foreach my $change (keys %change) {
my $v1 = `grep '$change' .config.test`; my $v1 = `grep '$change' .config.test`;
my $v2 = `grep '$change' .config`; my $v2 = `grep '$change' .config`;
$v1 eq $v2 or system($change{$change}); $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]);
}
}