Changeset 203
- Timestamp:
- 12/27/06 23:40:45 (5 years ago)
- Location:
- floppyfw/package/linux
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
floppyfw/package/linux/Config.in
r155 r203 1 1 config BR2_PACKAGE_LINUX 2 bool "linux"2 bool "linux" 3 3 default y 4 4 help 5 5 6 6 config EMULATE_FPU 7 bool "Floating point/Math emlation"7 bool "Floating point/Math emlation" 8 8 depends BR2_PACKAGE_LINUX 9 9 default n 10 10 help 11 11 If your processor does not have a floating point unit, turn this on. 12 It turns on math emulation in the kernel, it will all be very slow 13 but at least it will work. 12 14 13 15 config NIC_MODULES … … 15 17 default "3c509 3c59x 8139cp 8139too pcnet32 r8169 e100 e1000 ne ne2k-pci forcedeth tulip" 16 18 depends BR2_PACKAGE_LINUX 19 20 config LINUX_KCONFIG 21 string "Kernel configuration file, has to reside in configs/" 22 depends BR2_PACKAGE_LINUX 23 default "config-kernel" 24 help 25 Nice to be able to roll your own kernel config. -
floppyfw/package/linux/linux.mk
r184 r203 37 37 LINUX_SOURCE=linux-$(DOWNLOAD_LINUX_VERSION).tar.bz2 38 38 LINUX_SITE=ftp://ftp.kernel.org/pub/linux/kernel/v2.4 39 LINUX_KCONFIG=$(CONFIG_DIR)/config-kernel40 39 LINUX_KERNEL=$(LINUX_DIR)/vmlinuz 41 40 # Used by pcmcia-cs and others … … 104 103 105 104 $(LINUX_KCONFIG): 106 @if [ ! -f "$( LINUX_KCONFIG)" ] ; then \105 @if [ ! -f "$(CONFIG_DIR)/$(LINUX_KCONFIG)" ] ; then \ 107 106 echo ""; \ 108 107 echo "You should create a .config for your kernel"; \ 109 echo "and install it as $( LINUX_KCONFIG)"; \108 echo "and install it as $(CONFIG_DIR)/$(LINUX_KCONFIG)"; \ 110 109 echo ""; \ 111 110 sleep 5; \ 112 111 fi; 113 114 112 115 113 $(LINUX_DIR)/.configured: $(LINUX_DIR)/.patched $(LINUX_KCONFIG) … … 178 176 linux-source: $(DL_DIR)/$(LINUX_SOURCE) 179 177 178 linux-menuconfig: $(LINUX_DIR)/.configured 179 ( cd $(LINUX_DIR) ; \ 180 make menuconfig ; \ 181 cp .config $(CONFIG_DIR)/$(LINUX_KCONFIG) \ 182 ) 183 180 184 # This has been renamed so we do _NOT_ by default run this on 'make clean' 181 185 linuxclean: clean