clean linux kernel, when linux.config changes
authorFelix Fietkau <nbd@openwrt.org>
Mon, 21 Mar 2005 14:27:53 +0000 (14:27 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Mon, 21 Mar 2005 14:27:53 +0000 (14:27 +0000)
SVN-Revision: 408

openwrt/scripts/configtest.pl

index 01323a521111a943cfc8e9c5f94a45f1632a2144..05022debd379f59356c626f869e9b588a3e53977 100755 (executable)
@@ -1,12 +1,26 @@
 #!/usr/bin/perl
-
 my %change = (
        'BUSYBOX' => 'make -C package busybox-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]);
+       }
+}