diff options
Diffstat (limited to 'openwrt/scripts/configtest.pl')
-rwxr-xr-x | openwrt/scripts/configtest.pl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/openwrt/scripts/configtest.pl b/openwrt/scripts/configtest.pl new file mode 100755 index 000000000..01323a521 --- /dev/null +++ b/openwrt/scripts/configtest.pl @@ -0,0 +1,12 @@ +#!/usr/bin/perl + +my %change = ( + 'BUSYBOX' => 'make -C package busybox-clean', + '' => 'make target_clean' +); + +foreach my $change (keys %change) { + my $v1 = `grep '$change' .config.test`; + my $v2 = `grep '$change' .config`; + $v1 eq $v2 or system($change{$change}); +} |