Changeset 179 for floppyfw

Show
Ignore:
Timestamp:
12/24/06 13:53:28 (5 years ago)
Author:
root
Message:

More messing around to get a working modules.dep and new kernel version.

Location:
floppyfw
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • floppyfw/.config.cmd

    r161 r179  
    66        target/Config.in \ 
    77        package/fakeident/Config.in \ 
     8        package/libpcap/Config.in \ 
    89        package/libosip2/Config.in \ 
    910        package/openssl/Config.in \ 
  • floppyfw/Config.in

    r155 r179  
    2020        string "Subversion (svn) checkout command" 
    2121        default "svn co" 
     22 
     23config BR2_ZCAT 
     24        string "zcat command" 
     25        default "zcat" 
     26        help 
     27          Command to be used to extract a gzip'ed file to stdout. 
     28          zcat is identical to gunzip -c except that the former may 
     29          not be available on your system. 
     30          Default is "zcat" 
     31          Other possible values include "gunzip -c" or "gzip -d -c". 
     32 
     33config BR2_BZCAT 
     34        string "bzcat command" 
     35        default "bzcat" 
     36        help 
     37          Command to be used to extract a bzip2'ed file to stdout. 
     38          bzcat is identical to bunzip2 -c except that the former may 
     39          not be available on your system. 
     40          Default is "bzcat" 
     41          Other possible values include "bunzip2 -c" or "bzip2 -d -c". 
     42 
     43config BR2_UPX 
     44        string "upx command" 
     45        default "upx-1.11" 
     46        help 
     47          Command to (eventually) be used to compress the Linux kernel. 
    2248 
    2349config BR2_TAR_OPTIONS 
  • floppyfw/package/Makefile.in

    r165 r179  
    88#" 
    99SVN:=$(strip $(subst ",, $(BR2_SVN))) 
     10#" 
     11UPX:=$(strip $(subst ",, $(BR2_UPX))) 
     12#" 
     13BZCAT:=$(strip $(subst ",, $(BR2_BZCAT))) 
    1014#" 
    1115ZCAT:=$(strip $(subst ",, $(BR2_ZCAT))) 
  • floppyfw/package/linux/linux.mk

    r176 r179  
    2727 
    2828# Version of Linux to download and then apply patches to 
    29 DOWNLOAD_LINUX_VERSION=2.4.33.5 
     29DOWNLOAD_LINUX_VERSION=2.4.34 
    3030# Version of Linux AFTER patches 
    3131LINUX_VERSION=$(DOWNLOAD_LINUX_VERSION)-floppyfw-$(FLOPPYFW_VERSION) 
     
    4242LINUX_SOURCE_DIR=$(LINUX_DIR) 
    4343 
    44 UPX=upx-1.11 
    4544#LINUX_CC_OPTS="-Os -pipe" 
    4645# LINUX_CC_OPTS="-Os -mregparm=3 -falign-functions=2 -falign-jumps=2 -falign-labels=2 -falign-loops=2" 
     
    158157 
    159158 
    160 linux:  patch-o-matic hostap-driver-source $(IPTABLES_BUILD_DIR)/.configured $(LINUX_KERNEL) $(MODULES_DIR)/lib/modules/$(LINUX_VERSION)/modules.dep 
     159linux:  patch-o-matic hostap-driver-source \ 
     160                $(IPTABLES_BUILD_DIR)/.configured $(LINUX_KERNEL) \ 
     161                $(MODULES_DIR)/lib/modules/$(LINUX_VERSION)/modules.dep 
    161162 
    162163linux-depmod: linux 
  • floppyfw/target/floppy/floppy.mk

    r178 r179  
    66INSERT_IPTABLES_MODULES = `cat $(TMP_DIR)/iptablesmodules.lst` 
    77 
    8 floppydir: linux 
     8floppydir: linux module-packages 
    99        -mv $(BASE_DIR)/floppy.old $(BASE_DIR)/floppy.old2 
    1010        -mv $(BASE_DIR)/floppy $(BASE_DIR)/floppy.old