Changeset 256 for floppyfw-3.0
- Timestamp:
- 09/21/08 11:59:43 (4 years ago)
- Location:
- floppyfw-3.0
- Files:
-
- 6 modified
-
Makefile (modified) (1 diff)
-
makefiles/bridgeutils.mk (modified) (1 diff)
-
makefiles/iptables.mk (modified) (1 diff)
-
makefiles/linux.mk (modified) (1 diff)
-
makefiles/pppd.mk (modified) (2 diffs)
-
packages/scripts/post-dropbear.ini (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
floppyfw-3.0/Makefile
r252 r256 38 38 39 39 # Which version of floppyfw is this? 40 FLOPPYFW_VERSION=3.0. 840 FLOPPYFW_VERSION=3.0.9rc1 41 41 42 42 # What sortof target system shall we compile this for? -
floppyfw-3.0/makefiles/bridgeutils.mk
r34 r256 6 6 7 7 BRIDGECTL_SOURCE_URL=$(SF_MIRROR)/sourceforge/bridge/ 8 # 1.0.6 is the newest, need to test.9 8 BRIDGECTL_SOURCE=bridge-utils-0.9.6.tar.gz 10 9 BRIDGECTL_DIR=$(BUILD_DIR)/bridge-utils 11 10 11 # 1.0.6 is the newest, does not compile right now. 12 12 # BRIDGECTL_SOURCE=bridge-utils-1.0.6.tar.gz 13 13 # BRIDGECTL_DIR=$(BUILD_DIR)/bridge-utils-1.0.6 -
floppyfw-3.0/makefiles/iptables.mk
r237 r256 20 20 21 21 $(IPTABLES_BUILD_DIR)/.configured: $(IPTABLES_BUILD_DIR)/.unpacked 22 # Should I start using ./configure here? 23 # --with-kernel=$(BUILD_DIR)/linux 22 24 touch $(IPTABLES_BUILD_DIR)/.configured 23 25 -
floppyfw-3.0/makefiles/linux.mk
r245 r256 27 27 28 28 # Version of Linux to download and then apply patches to 29 DOWNLOAD_LINUX_VERSION=2.4.36. 629 DOWNLOAD_LINUX_VERSION=2.4.36.7 30 30 # Version of Linux AFTER patches 31 31 LINUX_VERSION=$(DOWNLOAD_LINUX_VERSION)-floppyfw-$(FLOPPYFW_VERSION) -
floppyfw-3.0/makefiles/pppd.mk
r84 r256 5 5 ############################################################# 6 6 7 8 # I wish I could but the resulting package is way too big. 9 # 2.4.4 should be useable, the tip is "#HAS_SHADOW=y" 10 # PPPD_SOURCE_URL=ftp://ftp.samba.org/pub/ppp/ 11 # PPPD_SOURCE=ppp-2.4.4.tar.gz 12 # PPPD_DIR=$(BUILD_DIR)/ppp-2.4.4 13 7 14 PPPD_SOURCE_URL=http://www.zelow.no/floppyfw/download/Development/src/ 8 15 PPPD_SOURCE=ppp-2.4.1.pppoe4.tgz 9 16 PPPD_DIR=$(BUILD_DIR)/ppp-2.4.1.pppoe4 10 17 PPPD_PACKAGES_DIR=$(PACKAGES_DIR)/ppp 18 11 19 12 20 $(DL_DIR)/$(PPPD_SOURCE): … … 25 33 CFLAGS="$(TARGET_CFLAGS)" \ 26 34 ); 35 $(SED) 's/HAS_SHADOW=y/#HAS_SHADOW=y/' $(PPPD_DIR)/pppd/Makefile 27 36 touch $(PPPD_DIR)/.configured 28 37 29 38 $(PPPD_DIR)/pppd/pppd: $(PPPD_DIR)/.configured 30 (cd $(PPPD_DIR); $(MAKE) CC="$(TARGET_CC)" HAS_SHADOW=n \31 );39 # (cd $(PPPD_DIR); $(MAKE) CC="$(TARGET_CC)" HAS_SHADOW=n ); 40 (cd $(PPPD_DIR); $(MAKE) CC="$(TARGET_CC)" ); 32 41 33 42 $(PACKAGES_DIR)/ppp/sbin/pppd: $(PPPD_DIR)/pppd/pppd -
floppyfw-3.0/packages/scripts/post-dropbear.ini
r246 r256 46 46 47 47 dropbear 48 # This may look stupid and it may be. The problem seems to be that 49 # dropbear detatches itself too early and when the script dies it 50 # takes dropbear with it. 51 sleep 1