diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2018-02-24 14:05:29 +0100 |
---|---|---|
committer | Andreas Baumann <mail@andreasbaumann.cc> | 2018-02-24 14:05:29 +0100 |
commit | 5af74548e741eab8fcf156f56850a5639043abac (patch) | |
tree | 4b1c2a3679b589d5b99bb831a48244e8e488cb08 /i486-stage2/iptables | |
parent | 428aebe60e7dd5664c53e9efb8cf2368397211b0 (diff) | |
download | bootstrap32-5af74548e741eab8fcf156f56850a5639043abac.tar.xz |
building all but syslinux, gcc and glibc
Diffstat (limited to 'i486-stage2/iptables')
-rw-r--r-- | i486-stage2/iptables/DESCR | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/i486-stage2/iptables/DESCR b/i486-stage2/iptables/DESCR new file mode 100644 index 0000000..bc12c3e --- /dev/null +++ b/i486-stage2/iptables/DESCR @@ -0,0 +1,13 @@ +# disable Berkley Packet Filtering +sed -i 's@--enable-bpf-compiler@--disable-bpf-compiler@g' PKGBUILD + +# disable nftable support, draws in more libraries, we need the xtables +# depevelopment mainly now for iproute2 +sed -i "/depends=/s/libnftnl//" PKGBUILD +sed -i 's@./configure@./configure --disable-nftables@' PKGBUILD + +# disable libpcap (tcpdump, draws in too many dependencies) +sed -i "/depends=/s/libpcap//" PKGBUILD + +# disable connection tracking +sed -i 's@./configure@./configure --disable-connlabel@' PKGBUILD |