- Timestamp:
- 12/24/06 13:53:28 (5 years ago)
- Location:
- floppyfw
- Files:
-
- 5 modified
-
.config.cmd (modified) (1 diff)
-
Config.in (modified) (1 diff)
-
package/Makefile.in (modified) (1 diff)
-
package/linux/linux.mk (modified) (3 diffs)
-
target/floppy/floppy.mk (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
floppyfw/.config.cmd
r161 r179 6 6 target/Config.in \ 7 7 package/fakeident/Config.in \ 8 package/libpcap/Config.in \ 8 9 package/libosip2/Config.in \ 9 10 package/openssl/Config.in \ -
floppyfw/Config.in
r155 r179 20 20 string "Subversion (svn) checkout command" 21 21 default "svn co" 22 23 config 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 33 config 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 43 config BR2_UPX 44 string "upx command" 45 default "upx-1.11" 46 help 47 Command to (eventually) be used to compress the Linux kernel. 22 48 23 49 config BR2_TAR_OPTIONS -
floppyfw/package/Makefile.in
r165 r179 8 8 #" 9 9 SVN:=$(strip $(subst ",, $(BR2_SVN))) 10 #" 11 UPX:=$(strip $(subst ",, $(BR2_UPX))) 12 #" 13 BZCAT:=$(strip $(subst ",, $(BR2_BZCAT))) 10 14 #" 11 15 ZCAT:=$(strip $(subst ",, $(BR2_ZCAT))) -
floppyfw/package/linux/linux.mk
r176 r179 27 27 28 28 # Version of Linux to download and then apply patches to 29 DOWNLOAD_LINUX_VERSION=2.4.3 3.529 DOWNLOAD_LINUX_VERSION=2.4.34 30 30 # Version of Linux AFTER patches 31 31 LINUX_VERSION=$(DOWNLOAD_LINUX_VERSION)-floppyfw-$(FLOPPYFW_VERSION) … … 42 42 LINUX_SOURCE_DIR=$(LINUX_DIR) 43 43 44 UPX=upx-1.1145 44 #LINUX_CC_OPTS="-Os -pipe" 46 45 # LINUX_CC_OPTS="-Os -mregparm=3 -falign-functions=2 -falign-jumps=2 -falign-labels=2 -falign-loops=2" … … 158 157 159 158 160 linux: patch-o-matic hostap-driver-source $(IPTABLES_BUILD_DIR)/.configured $(LINUX_KERNEL) $(MODULES_DIR)/lib/modules/$(LINUX_VERSION)/modules.dep 159 linux: patch-o-matic hostap-driver-source \ 160 $(IPTABLES_BUILD_DIR)/.configured $(LINUX_KERNEL) \ 161 $(MODULES_DIR)/lib/modules/$(LINUX_VERSION)/modules.dep 161 162 162 163 linux-depmod: linux -
floppyfw/target/floppy/floppy.mk
r178 r179 6 6 INSERT_IPTABLES_MODULES = `cat $(TMP_DIR)/iptablesmodules.lst` 7 7 8 floppydir: linux 8 floppydir: linux module-packages 9 9 -mv $(BASE_DIR)/floppy.old $(BASE_DIR)/floppy.old2 10 10 -mv $(BASE_DIR)/floppy $(BASE_DIR)/floppy.old