summaryrefslogtreecommitdiffstats
path: root/update
diff options
context:
space:
mode:
Diffstat (limited to 'update')
-rwxr-xr-xupdate9
1 files changed, 9 insertions, 0 deletions
diff --git a/update b/update
new file mode 100755
index 0000000..494485c
--- /dev/null
+++ b/update
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+NAME=`echo $1 | sed 's/\.h//' | tr a-z A-Z`
+
+awk "BEGIN { userspace=1 }
+/ifdef __KERNEL__/ { userspace = !userspace }
+{ if (userspace == 1) print }
+END { print \"#endif /* __${NAME}_H */\" }" \
+ < kernel/include/linux/netfilter/$1 > include/libipset/linux_$1