aboutsummaryrefslogtreecommitdiffstats
path: root/openwrt/scripts/configtest.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-10-07 11:57:20 +0000
commitd58a09110ccfa95f06c983fe796806f2e035c9d2 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /openwrt/scripts/configtest.pl
parentaf034797eeb62b62ac05442d5a688b28ccd0f16b (diff)
downloadupstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.gz
upstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.tar.bz2
upstream-d58a09110ccfa95f06c983fe796806f2e035c9d2.zip
move old kamikaze out of trunk - will put buildroot-ng in there as soon as all the developers are ready
SVN-Revision: 4944
Diffstat (limited to 'openwrt/scripts/configtest.pl')
-rwxr-xr-xopenwrt/scripts/configtest.pl28
1 files changed, 0 insertions, 28 deletions
diff --git a/openwrt/scripts/configtest.pl b/openwrt/scripts/configtest.pl
deleted file mode 100755
index 476bba7dce..0000000000
--- a/openwrt/scripts/configtest.pl
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/perl
-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]);
- }
-}