summaryrefslogtreecommitdiffstats
path: root/scripts/configtest.pl
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/configtest.pl')
-rwxr-xr-xscripts/configtest.pl11
1 files changed, 11 insertions, 0 deletions
diff --git a/scripts/configtest.pl b/scripts/configtest.pl
new file mode 100755
index 000000000..61fe8a7b6
--- /dev/null
+++ b/scripts/configtest.pl
@@ -0,0 +1,11 @@
+#!/usr/bin/perl
+
+my %change = (
+ 'ROOTFS' => 'make linux-dirclean'
+);
+
+foreach my $change (keys %change) {
+ my $v1 = `grep '$change' .config.test`;
+ my $v2 = `grep '$change' .config`;
+ $v1 eq $v2 or system($change{$change});
+}