diff options
author | Mike Baker <mbm@openwrt.org> | 2005-01-16 11:43:02 +0000 |
---|---|---|
committer | Mike Baker <mbm@openwrt.org> | 2005-01-16 11:43:02 +0000 |
commit | 76d90c2ed2956d27e0c8af8fb0b76b3069228d5f (patch) | |
tree | 986493f1905c17f3a385831d60709492c4c5ed7a /openwrt/package/iptables | |
parent | a5e92562f883bbd64e84b69bb683f42911ec7036 (diff) | |
download | mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.zip mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.tar.gz mtk-20170518-76d90c2ed2956d27e0c8af8fb0b76b3069228d5f.tar.bz2 |
Initial revision
SVN-Revision: 197
Diffstat (limited to 'openwrt/package/iptables')
-rw-r--r-- | openwrt/package/iptables/Config.in | 7 | ||||
-rw-r--r-- | openwrt/package/iptables/Makefile.in | 3 | ||||
-rw-r--r-- | openwrt/package/iptables/iptables.mk | 51 |
3 files changed, 61 insertions, 0 deletions
diff --git a/openwrt/package/iptables/Config.in b/openwrt/package/iptables/Config.in new file mode 100644 index 0000000..f1e5ef6 --- /dev/null +++ b/openwrt/package/iptables/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_IPTABLES + bool "iptables" + default n + help + Linux kernel (2.4+) firewall, NAT, and packet mangling tools. + + http://www.iptables.org/ diff --git a/openwrt/package/iptables/Makefile.in b/openwrt/package/iptables/Makefile.in new file mode 100644 index 0000000..5be894b --- /dev/null +++ b/openwrt/package/iptables/Makefile.in @@ -0,0 +1,3 @@ +ifeq ($(strip $(BR2_PACKAGE_IPTABLES)),y) +TARGETS+=iptables +endif diff --git a/openwrt/package/iptables/iptables.mk b/openwrt/package/iptables/iptables.mk new file mode 100644 index 0000000..f053f1e --- /dev/null +++ b/openwrt/package/iptables/iptables.mk @@ -0,0 +1,51 @@ +############################################################# +# +# iptables +# +############################################################# +IPTABLES_VER:=1.2.11 +IPTABLES_SOURCE_URL:=http://www.netfilter.org/files +IPTABLES_SOURCE:=iptables-$(IPTABLES_VER).tar.bz2 +IPTABLES_BUILD_DIR:=$(BUILD_DIR)/iptables-$(IPTABLES_VER) + +$(DL_DIR)/$(IPTABLES_SOURCE): + $(WGET) -P $(DL_DIR) $(IPTABLES_SOURCE_URL)/$(IPTABLES_SOURCE) + +$(IPTABLES_BUILD_DIR)/.unpacked: $(DL_DIR)/$(IPTABLES_SOURCE) + bzcat $(DL_DIR)/$(IPTABLES_SOURCE) | tar -C $(BUILD_DIR) $(TAR_OPTIONS) - + touch $(IPTABLES_BUILD_DIR)/.unpacked + +$(IPTABLES_BUILD_DIR)/.configured: $(IPTABLES_BUILD_DIR)/.unpacked + # Allow patches. Needed for openwrt for instance. + toolchain/patch-kernel.sh $(IPTABLES_BUILD_DIR) package/iptables/ iptables-\*.patch + # + $(SED) "s;\[ -f /usr/include/netinet/ip6.h \];grep -q '__UCLIBC_HAS_IPV6__ 1' \ + $(BUILD_DIR)/uClibc/include/bits/uClibc_config.h;" $(IPTABLES_BUILD_DIR)/Makefile + touch $(IPTABLES_BUILD_DIR)/.configured + +$(IPTABLES_BUILD_DIR)/iptables: $(IPTABLES_BUILD_DIR)/.configured + $(TARGET_CONFIGURE_OPTS) \ + $(MAKE) -C $(IPTABLES_BUILD_DIR) \ + KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \ + CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" + +$(TARGET_DIR)/usr/sbin/iptables: $(IPTABLES_BUILD_DIR)/iptables + $(TARGET_CONFIGURE_OPTS) \ + $(MAKE) -C $(IPTABLES_BUILD_DIR) \ + KERNEL_DIR=$(LINUX_DIR) PREFIX=/usr \ + CC=$(TARGET_CC) COPT_FLAGS="$(TARGET_CFLAGS)" \ + DESTDIR=$(TARGET_DIR) install + $(STRIP) $(TARGET_DIR)/usr/sbin/iptables* + $(STRIP) $(TARGET_DIR)/usr/lib/iptables/*.so + rm -rf $(TARGET_DIR)/usr/man + +iptables: kernel-headers $(TARGET_DIR)/usr/sbin/iptables + +iptables-source: $(DL_DIR)/$(IPTABLES_SOURCE) + +iptables-clean: + $(MAKE) DESTDIR=$(TARGET_DIR) CC=$(TARGET_CC) -C $(IPTABLES_BUILD_DIR) uninstall + -$(MAKE) -C $(IPTABLES_BUILD_DIR) clean + +iptables-dirclean: + rm -rf $(IPTABLES_BUILD_DIR) |