Changeset 256 for floppyfw-3.0

Show
Ignore:
Timestamp:
09/21/08 11:59:43 (4 years ago)
Author:
root
Message:

A few bug fixes and a new kernel version.

Location:
floppyfw-3.0
Files:
6 modified

Legend:

Unmodified
Added
Removed
  • floppyfw-3.0/Makefile

    r252 r256  
    3838 
    3939# Which version of floppyfw is this? 
    40 FLOPPYFW_VERSION=3.0.8 
     40FLOPPYFW_VERSION=3.0.9rc1 
    4141 
    4242# What sortof target system shall we compile this for? 
  • floppyfw-3.0/makefiles/bridgeutils.mk

    r34 r256  
    66 
    77BRIDGECTL_SOURCE_URL=$(SF_MIRROR)/sourceforge/bridge/ 
    8 # 1.0.6 is the newest, need to test. 
    98BRIDGECTL_SOURCE=bridge-utils-0.9.6.tar.gz 
    109BRIDGECTL_DIR=$(BUILD_DIR)/bridge-utils 
    1110 
     11# 1.0.6 is the newest, does not compile right now. 
    1212# BRIDGECTL_SOURCE=bridge-utils-1.0.6.tar.gz 
    1313# BRIDGECTL_DIR=$(BUILD_DIR)/bridge-utils-1.0.6 
  • floppyfw-3.0/makefiles/iptables.mk

    r237 r256  
    2020 
    2121$(IPTABLES_BUILD_DIR)/.configured: $(IPTABLES_BUILD_DIR)/.unpacked 
     22        # Should I start using ./configure here? 
     23        # --with-kernel=$(BUILD_DIR)/linux 
    2224        touch  $(IPTABLES_BUILD_DIR)/.configured 
    2325 
  • floppyfw-3.0/makefiles/linux.mk

    r245 r256  
    2727 
    2828# Version of Linux to download and then apply patches to 
    29 DOWNLOAD_LINUX_VERSION=2.4.36.6 
     29DOWNLOAD_LINUX_VERSION=2.4.36.7 
    3030# Version of Linux AFTER patches 
    3131LINUX_VERSION=$(DOWNLOAD_LINUX_VERSION)-floppyfw-$(FLOPPYFW_VERSION) 
  • floppyfw-3.0/makefiles/pppd.mk

    r84 r256  
    55############################################################# 
    66 
     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 
    714PPPD_SOURCE_URL=http://www.zelow.no/floppyfw/download/Development/src/ 
    815PPPD_SOURCE=ppp-2.4.1.pppoe4.tgz 
    916PPPD_DIR=$(BUILD_DIR)/ppp-2.4.1.pppoe4 
    1017PPPD_PACKAGES_DIR=$(PACKAGES_DIR)/ppp 
     18 
    1119 
    1220$(DL_DIR)/$(PPPD_SOURCE): 
     
    2533                 CFLAGS="$(TARGET_CFLAGS)" \ 
    2634        ); 
     35        $(SED) 's/HAS_SHADOW=y/#HAS_SHADOW=y/' $(PPPD_DIR)/pppd/Makefile 
    2736        touch $(PPPD_DIR)/.configured 
    2837 
    2938$(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)" ); 
    3241 
    3342$(PACKAGES_DIR)/ppp/sbin/pppd: $(PPPD_DIR)/pppd/pppd 
  • floppyfw-3.0/packages/scripts/post-dropbear.ini

    r246 r256  
    4646 
    4747dropbear 
     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. 
     51sleep 1