mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
Initial revision
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@197 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
7
package/iptables/Config.in
Normal file
7
package/iptables/Config.in
Normal file
@@ -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/
|
||||
3
package/iptables/Makefile.in
Normal file
3
package/iptables/Makefile.in
Normal file
@@ -0,0 +1,3 @@
|
||||
ifeq ($(strip $(BR2_PACKAGE_IPTABLES)),y)
|
||||
TARGETS+=iptables
|
||||
endif
|
||||
51
package/iptables/iptables.mk
Normal file
51
package/iptables/iptables.mk
Normal file
@@ -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)
|
||||
Reference in New Issue
Block a user