summaryrefslogtreecommitdiffstats
path: root/update
blob: 58045540229e4d17406c4f99373714386fd62f9d (plain)
1
2
3
4
5
6
7
8
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/ipset/$1 > include/libipset/linux_$1