Changeset 227 for floppyfw-3.0
- Timestamp:
- 07/08/07 14:02:24 (5 years ago)
- Location:
- floppyfw-3.0
- Files:
-
- 6 modified
-
Makefile (modified) (2 diffs)
-
add/skeleton/bin/info (modified) (1 prop)
-
makefiles/add.mk (modified) (1 diff)
-
makefiles/ipset.mk (modified) (1 diff)
-
makefiles/iptables.mk (modified) (1 diff)
-
makefiles/linux.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
floppyfw-3.0/Makefile
r226 r227 38 38 39 39 # Which version of floppyfw is this? 40 FLOPPYFW_VERSION=3.0. 240 FLOPPYFW_VERSION=3.0.3 41 41 42 42 # What sortof target system shall we compile this for? … … 188 188 TARGETS+=tcpdump 189 189 TARGETS+=madwifi 190 TARGETS+=quagga190 # TARGETS+=quagga 191 191 192 192 # The hostap target will add patches to the kernel and build a hostap.ffw -
floppyfw-3.0/add/skeleton/bin/info
- Property svn:executable set to *
-
floppyfw-3.0/makefiles/add.mk
r105 r227 26 26 echo $(FLOPPYFW_VERSION) > $(ADD_MASTER)/etc/floppyfw_version 27 27 $(RM) $(ADD_MASTER)/etc/version 28 ln -s $(ADD_MASTER)/etc/floppyfw_version $(ADD_MASTER)/etc/version28 ( cd $(ADD_MASTER)/etc/ ; ln -snf floppyfw_version version ) 29 29 30 30 chown -R root.root $(ADD_MASTER) -
floppyfw-3.0/makefiles/ipset.mk
r27 r227 42 42 BINDIR=/sbin \ 43 43 LIBDIR=/lib \ 44 INCDIR=/ include \45 MANDIR=/ man \44 INCDIR=/$(TMP_DIR)/include \ 45 MANDIR=/$(TMP_DIR)/man \ 46 46 CC="$(TARGET_CC)" \ 47 47 COPT_FLAGS="$(TARGET_CFLAGS) -DNDEBUG" \ 48 48 install 49 $(RM) -r $(ADD_MASTER) $(TMP_DIR)/*50 $(RM) -r $(ADD_MASTER)/usr $(TMP_DIR)/*49 $(RM) -r $(ADD_MASTER)/$(TMP_DIR)/* 50 $(RM) -r $(ADD_MASTER)/usr/$(TMP_DIR)/* 51 51 -$(SSTRIP) $(ADD_MASTER)/sbin/ipset 52 52 -$(SSTRIP) $(ADD_MASTER)/lib/ipset/* -
floppyfw-3.0/makefiles/iptables.mk
r196 r227 57 57 $(RM) $(ADD_MASTER)/lib/iptables/libipt_TARPIT.so 58 58 $(RM) $(ADD_MASTER)/lib/iptables/libipt_MIRROR.so 59 $(RM) -r $(ADD_MASTER) $(TMP_DIR)/*60 $(RM) -r $(ADD_MASTER)/usr $(TMP_DIR)/*59 $(RM) -r $(ADD_MASTER)/$(TMP_DIR)/* 60 $(RM) -r $(ADD_MASTER)/usr/$(TMP_DIR)/* 61 61 -$(SSTRIP) $(ADD_MASTER)/sbin/iptables 62 62 -$(SSTRIP) $(ADD_MASTER)/lib/iptables/* -
floppyfw-3.0/makefiles/linux.mk
r226 r227 27 27 28 28 # Version of Linux to download and then apply patches to 29 DOWNLOAD_LINUX_VERSION=2.4.34. 429 DOWNLOAD_LINUX_VERSION=2.4.34.5 30 30 # Version of Linux AFTER patches 31 31 LINUX_VERSION=$(DOWNLOAD_LINUX_VERSION)-floppyfw-$(FLOPPYFW_VERSION)