aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/configtest.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-13 22:51:49 +0200
committerFelix Fietkau <nbd@openwrt.org>2016-03-20 17:29:15 +0100
commit60c1f0f64d23003a19a07d6b9638542130f6641d (patch)
tree8fb2787f4c49baded97cd55e0c371fe1cffce2b6 /scripts/configtest.pl
parentd58a09110ccfa95f06c983fe796806f2e035c9d2 (diff)
parentb3ce218b51746d3a576221ea542facf3a1703ab2 (diff)
downloadupstream-60c1f0f64d23003a19a07d6b9638542130f6641d.tar.gz
upstream-60c1f0f64d23003a19a07d6b9638542130f6641d.tar.bz2
upstream-60c1f0f64d23003a19a07d6b9638542130f6641d.zip
finally move buildroot-ng to trunk
Diffstat (limited to 'scripts/configtest.pl')
-rwxr-xr-xscripts/configtest.pl35
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/configtest.pl b/scripts/configtest.pl
new file mode 100755
index 0000000000..289b2fecc0
--- /dev/null
+++ b/scripts/configtest.pl
@@ -0,0 +1,35 @@
+#!/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.
+#
+
+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]);
+ }
+}