summaryrefslogtreecommitdiffstats
path: root/userspace/scripts
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-06-02 19:11:46 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-06-02 19:11:46 +0000
commit563af1fbee19ca8f61b52a7fca9cc3eb5a1aa455 (patch)
tree636aeac7005613c1d90ade87ab638f4b37e0aeac /userspace/scripts
parentd5cc0d8e5b4e5a58c3cd582c0175c1c52fe19414 (diff)
*** empty log message ***
Diffstat (limited to 'userspace/scripts')
-rwxr-xr-xuserspace/scripts/Make_userspace_diff28
1 files changed, 28 insertions, 0 deletions
diff --git a/userspace/scripts/Make_userspace_diff b/userspace/scripts/Make_userspace_diff
new file mode 100755
index 0000000..9262465
--- /dev/null
+++ b/userspace/scripts/Make_userspace_diff
@@ -0,0 +1,28 @@
+#!/bin/bash
+# Used to make incremental diffs for ebtables userspace
+
+export FROM=ebtables-v2.0pre6
+export TO=ebtables-v2.0pre7.001
+export FILE=ebtables-v2.0pre7.001.diff
+
+diff -urN $FROM/Makefile $TO/Makefile > $FILE
+diff -urN $FROM/ebtables.c $TO/ebtables.c >> $FILE
+diff -urN $FROM/communication.c $TO/communication.c >> $FILE
+diff -urN $FROM/extensions/ebt_redirect.c $TO/extensions/ebt_redirect.c >> $FILE
+diff -urN $FROM/extensions/ebtable_broute.c $TO/extensions/ebtable_broute.c >> $FILE
+diff -urN $FROM/extensions/ebt_nat.c $TO/extensions/ebt_nat.c >> $FILE
+diff -urN $FROM/extensions/ebt_ip.c $TO/extensions/ebt_ip.c >> $FILE
+diff -urN $FROM/extensions/ebt_arp.c $TO/extensions/ebt_arp.c >> $FILE
+diff -urN $FROM/extensions/ebt_vlan.c $TO/extensions/ebt_vlan.c >> $FILE
+diff -urN $FROM/extensions/ebt_log.c $TO/extensions/ebt_log.c >> $FILE
+diff -urN $FROM/extensions/ebt_standard.c $TO/extensions/ebt_standard.c >> $FILE
+diff -urN $FROM/extensions/ebtable_filter.c $TO/extensions/ebtable_filter.c >> $FILE
+diff -urN $FROM/extensions/ebtable_nat.c $TO/extensions/ebtable_nat.c >> $FILE
+diff -urN $FROM/extensions/Makefile $TO/extensions/Makefile >> $FILE
+diff -urN $FROM/COPYING $TO/COPYING >> $FILE
+diff -urN $FROM/THANKS $TO/THANKS >> $FILE
+diff -urN $FROM/ChangeLog $TO/ChangeLog >> $FILE
+diff -urN $FROM/ebtables.8 $TO/ebtables.8 >> $FILE
+diff -urN $FROM/ethertypes $TO/ethertypes >> $FILE
+diff -urN $FROM/include/ebtables_u.h $TO/include/ebtables_u.h >> $FILE
+