Changeset 3335
- Timestamp:
- 07/24/07 14:19:41 (1 year ago)
- Files:
-
- trunk/freewrt/mk/build.mk (modified) (1 diff)
- trunk/freewrt/mk/targets.mk (modified) (2 diffs)
- trunk/freewrt/package/Config.in (modified) (1 diff)
- trunk/freewrt/target/Config.in (modified) (4 diffs)
- trunk/freewrt/target/Config.in.kernel (modified) (1 diff)
- trunk/freewrt/target/Makefile (modified) (1 diff)
- trunk/freewrt/target/image/nokernel (added)
- trunk/freewrt/target/image/nokernel/Makefile (added)
- trunk/freewrt/target/linux/Config.in (modified) (1 diff)
- trunk/freewrt/target/linux/brcm-2.4/Makefile (modified) (1 diff)
- trunk/freewrt/target/linux/brcm-2.6/Makefile (modified) (1 diff)
- trunk/freewrt/target/linux/generic-2.4/Makefile (copied) (copied from trunk/freewrt/target/linux/rb-2.4/Makefile)
- trunk/freewrt/target/linux/generic-2.6/Makefile (copied) (copied from trunk/freewrt/target/linux/rb-2.6/Makefile)
- trunk/freewrt/target/linux/nokernel/Config.in (modified) (1 diff)
- trunk/freewrt/target/linux/pkgmips-2.4 (added)
- trunk/freewrt/target/linux/pkgmips-2.4/Makefile (copied) (copied from trunk/freewrt/target/linux/rb-2.4/Makefile) (1 diff)
- trunk/freewrt/target/linux/pkgmips-2.4/kernelconfig (added)
- trunk/freewrt/target/linux/pkgmips-2.6 (added)
- trunk/freewrt/target/linux/pkgmips-2.6/Makefile (copied) (copied from trunk/freewrt/target/linux/rb-2.6/Makefile) (1 diff)
- trunk/freewrt/target/linux/pkgmips-2.6/kernelconfig (added)
- trunk/freewrt/target/linux/rb-2.4/Makefile (modified) (1 diff)
- trunk/freewrt/target/linux/rb-2.6/Makefile (modified) (1 diff)
- trunk/freewrt/target/linux/x86-2.4/Makefile (modified) (1 diff)
- trunk/freewrt/target/linux/x86-2.6/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/build.mk
r3328 r3335 43 43 world: $(DISTDIR) $(BUILD_DIR) $(PACKAGE_DIR) ${TOPDIR}/.cfg/FWRT_HAVE_DOT_CONFIG 44 44 BASH='${BASH}' ${MBSH} ${TOPDIR}/scripts/scan-pkgs.sh 45 ifneq ($(strip ${FWRT_TARGET_NOKERNEL}),)46 45 ifeq ($(strip ${FWRT_PACKAGE_BASE_FILES}),m) 47 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare package/compile package_index 48 else 49 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare package/compile package_index root_clean package/install 50 endif 51 else ifneq ($(strip ${FWRT_TARGET_ROOTFS_INITRAMFS}),) 52 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare package/compile root_clean package/install target/install 53 else ifeq ($(strip ${FWRT_PACKAGE_BASE_FILES}),m) 54 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare target/compile package/compile 55 @echo Running allmodconfig succeeded. 46 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare target/compile package/compile package_index 56 47 else 57 48 $(MAKE) -f mk/build.mk tools/install toolchain/install target/config-prepare target/compile package/compile root_clean package/install target/install package_index trunk/freewrt/mk/targets.mk
r3328 r3335 47 47 endef 48 48 49 define nokerneltarget_template50 ifeq ($(FWRT_LINUX_$(4)),y)51 KERNEL:=$(1)52 BOARD:=$(2)53 DEVICE:=$(3)54 endif55 endef56 57 58 49 # asus models 59 50 $(eval $(call target_template,2.4,brcm,asus-wl-hdd,2_4_BRCM_ASUS_WLHDD)) … … 78 69 $(eval $(call target_template,2.6,x86,cryptotoken,2_6_X86_CRYPTOTOKEN)) 79 70 # nokernel targets 80 $(eval $(call nokerneltarget_template,2.4,pkgmips,mips,NOKERNEL_MIPS)) 81 $(eval $(call nokerneltarget_template,2.4,pkgarmeb,armeb,NOKERNEL_ARMEB)) 82 $(eval $(call nokerneltarget_template,2.4,pkgarm,arm,NOKERNEL_ARM)) 83 $(eval $(call nokerneltarget_template,2.4,pkgcris,cris,NOKERNEL_CRIS)) 84 $(eval $(call nokerneltarget_template,2.4,pkgavr32,avr32,NOKERNEL_AVR32)) 85 $(eval $(call nokerneltarget_template,2.4,pkgpowerpc,powerpc,NOKERNEL_POWERPC)) 86 $(eval $(call nokerneltarget_template,2.4,pkgi386,i386,NOKERNEL_I386)) 71 $(eval $(call target_template,2.4,pkgmips,mips,NOKERNEL_MIPS_24)) 72 $(eval $(call target_template,2.4,pkgarmeb,armeb,NOKERNEL_ARMEB_24)) 73 $(eval $(call target_template,2.4,pkgarm,arm,NOKERNEL_ARM_24)) 74 $(eval $(call target_template,2.4,pkgcris,cris,NOKERNEL_CRIS_24)) 75 $(eval $(call target_template,2.4,pkgavr32,avr32,NOKERNEL_AVR32_24)) 76 $(eval $(call target_template,2.4,pkgpowerpc,powerpc,NOKERNEL_POWERPC_24)) 77 $(eval $(call target_template,2.4,pkgi386,i386,NOKERNEL_I386_24)) 78 $(eval $(call target_template,2.6,pkgmips,mips,NOKERNEL_MIPS_26)) 79 $(eval $(call target_template,2.6,pkgarmeb,armeb,NOKERNEL_ARMEB_26)) 80 $(eval $(call target_template,2.6,pkgarm,arm,NOKERNEL_ARM_26)) 81 $(eval $(call target_template,2.6,pkgcris,cris,NOKERNEL_CRIS_26)) 82 $(eval $(call target_template,2.6,pkgavr32,avr32,NOKERNEL_AVR32_26)) 83 $(eval $(call target_template,2.6,pkgpowerpc,powerpc,NOKERNEL_POWERPC_26)) 84 $(eval $(call target_template,2.6,pkgi386,i386,NOKERNEL_I386_26)) 87 85 88 86 trunk/freewrt/package/Config.in
r3304 r3335 503 503 504 504 menu "Kernel Module Selection" 505 if FWRT_TARGET_NOKERNEL506 comment "XXX do not bother to change, these are ignored anyway"507 endif508 505 source "target/linux/Config.in" 509 506 endmenu trunk/freewrt/target/Config.in
r3333 r3335 158 158 # virtual targets (userland only) 159 159 # 160 source "target/linux/nokernel/Config.in" 160 config FWRT_LINUX_NOKERNEL_ARM 161 bool "arm" 162 depends on FWRT_DEVEL 163 depends on FWRT_TARGET_CATEGORY_NOKERNEL 164 select FWRT_TARGET_CAN_LINUX_2_4 165 select FWRT_TARGET_CAN_LINUX_2_6 166 help 167 This is a target which does not build a kernel, root filesy- 168 stem or flash image; it is mostly used for testing packages. 169 Where a kernel is required, Linux 2.4 will be used. 170 171 This option selects the little-endian 32-bit ARM platform. 172 173 config FWRT_LINUX_NOKERNEL_ARMEB 174 bool "armeb" 175 depends on FWRT_DEVEL 176 depends on FWRT_TARGET_CATEGORY_NOKERNEL 177 select FWRT_TARGET_CAN_LINUX_2_4 178 select FWRT_TARGET_CAN_LINUX_2_6 179 help 180 This is a target which does not build a kernel, root filesy- 181 stem or flash image; it is mostly used for testing packages. 182 Where a kernel is required, Linux 2.4 will be used. 183 184 This option selects the big-endian 32-bit ARM platform. 185 186 #config FWRT_LINUX_NOKERNEL_AVR32 187 # bool "avr32" 188 # depends on FWRT_DEVEL 189 # depends on FWRT_TARGET_CATEGORY_NOKERNEL 190 # select FWRT_TARGET_CAN_LINUX_2_4 191 # select FWRT_TARGET_CAN_LINUX_2_6 192 # help 193 # This is a target which does not build a kernel, root filesy- 194 # stem or flash image; it is mostly used for testing packages. 195 # Where a kernel is required, Linux 2.4 will be used. 196 # 197 # This option selects the big-endian 32-bit AVR platform. 198 199 config FWRT_LINUX_NOKERNEL_CRIS 200 bool "cris" 201 depends on FWRT_DEVEL 202 depends on FWRT_TARGET_CATEGORY_NOKERNEL 203 select FWRT_TARGET_CAN_LINUX_2_4 204 select FWRT_TARGET_CAN_LINUX_2_6 205 help 206 This is a target which does not build a kernel, root filesy- 207 stem or flash image; it is mostly used for testing packages. 208 Where a kernel is required, Linux 2.4 will be used. 209 210 This option selects the little-endian 32-bit CRIS platform. 211 212 config FWRT_LINUX_NOKERNEL_I386 213 bool "i386" 214 depends on FWRT_DEVEL 215 depends on FWRT_TARGET_CATEGORY_NOKERNEL 216 select FWRT_TARGET_CAN_LINUX_2_4 217 select FWRT_TARGET_CAN_LINUX_2_6 218 help 219 This is a target which does not build a kernel, root filesy- 220 stem or flash image; it is mostly used for testing packages. 221 Where a kernel is required, Linux 2.4 will be used. 222 223 This option selects the little-endian 32-bit i386 platform. 224 225 config FWRT_LINUX_NOKERNEL_MIPS 226 bool "mipsel" 227 depends on FWRT_DEVEL 228 depends on FWRT_TARGET_CATEGORY_NOKERNEL 229 select FWRT_TARGET_CAN_LINUX_2_4 230 select FWRT_TARGET_CAN_LINUX_2_6 231 help 232 This is a target which does not build a kernel, root filesy- 233 stem or flash image; it is mostly used for testing packages. 234 Where a kernel is required, Linux 2.4 will be used. 235 236 This option selects the little-endian 32-bit mips platform. 237 238 config FWRT_LINUX_NOKERNEL_POWERPC 239 bool "powerpc" 240 depends on FWRT_DEVEL 241 depends on FWRT_TARGET_CATEGORY_NOKERNEL 242 select FWRT_TARGET_CAN_LINUX_2_4 243 select FWRT_TARGET_CAN_LINUX_2_6 244 help 245 This is a target which does not build a kernel, root filesy- 246 stem or flash image; it is mostly used for testing packages. 247 Where a kernel is required, Linux 2.4 will be used. 248 249 This option selects the big-endian 32-bit powerpc platform. 161 250 162 251 endchoice … … 168 257 source "target/linux/x86-2.4/Config.in" 169 258 source "target/linux/x86-2.6/Config.in" 259 source "target/linux/nokernel/Config.in" 170 260 171 261 choice … … 189 279 choice 190 280 prompt "Target Firmware type" 281 default FWRT_TARGET_ROOTFS_NFS if FWRT_LINUX_2_4_RB || FWRT_LINUX_2_6_RB 282 default FWRT_TARGET_ROOTFS_NONE if FWRT_TARGET_NOKERNEL 191 283 default FWRT_TARGET_ROOTFS_SQUASHFS 192 284 … … 272 364 bool "initramfs image (cpio archive)" 273 365 depends on FWRT_LINUX_2_6_X86_CRYPTOTOKEN || \ 366 FWRT_TARGET_NOKERNEL || \ 274 367 (FWRT_DEVEL && FWRT_LINUX_2_6) 275 368 help trunk/freewrt/target/Config.in.kernel
r3321 r3335 2 2 bool 3 3 default n 4 select FWRT_LINUX_2_45 4 6 5 config FWRT_KERNEL_SQUASHFS trunk/freewrt/target/Makefile
r3328 r3335 51 51 52 52 image_install: 53 ifneq ($(strip ${FWRT_TARGET_NOKERNEL}),) 54 ${MAKE} -C image/nokernel install-prepare install 55 else 53 56 $(MAKE) -C image/$(BOARD) install-prepare 54 57 $(MAKE) -C image/$(BOARD) install 58 endif 55 59 56 60 %-clean: trunk/freewrt/target/linux/Config.in
r3117 r3335 1 config FWRT_KERNEL_MAGIC_SYSRQ 2 prompt "magic sysrq....................... Magic BREAK sequence" 3 bool 4 default y 5 help 6 Enable this to be able to use the Magic SysRq functions, 7 probably using a serial console break. 8 1 9 source target/linux/config/Config.in.network 2 10 source target/linux/config/Config.in.netdevice trunk/freewrt/target/linux/brcm-2.4/Makefile
r2504 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= f59665540a7f3351ea416a0dad104b55 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.4/Makefile trunk/freewrt/target/linux/brcm-2.6/Makefile
r2995 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= 2ab08fdfddc00e09b3d5bc7397d3c8be 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.6/Makefile trunk/freewrt/target/linux/nokernel/Config.in
r3303 r3335 1 #XXX these are 2.4-only for now 2 3 config FWRT_LINUX_NOKERNEL_ARM 4 bool "arm" 5 depends on FWRT_DEVEL 6 depends on FWRT_TARGET_CATEGORY_NOKERNEL 1 config FWRT_LINUX_NOKERNEL_ARM_24 2 bool 3 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_ARM 4 default n 7 5 select FWRT_TARGET_NOKERNEL 8 6 select FWRT_arm 9 select FWRT_TARGET_CAN_LINUX_2_410 select !FWRT_TARGET_CAN_LINUX_2_611 help12 This is a target which does not build a kernel, root filesy-13 stem or flash image; it is mostly used for testing packages.14 Where a kernel is required, Linux 2.4 will be used.15 16 This option selects the little-endian 32-bit ARM platform.17 7 18 config FWRT_LINUX_NOKERNEL_ARMEB 19 bool "armeb"20 de pends on FWRT_DEVEL21 de pends on FWRT_TARGET_CATEGORY_NOKERNEL8 config FWRT_LINUX_NOKERNEL_ARMEB_24 9 bool 10 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_ARMEB 11 default n 22 12 select FWRT_TARGET_NOKERNEL 23 13 select FWRT_armeb 24 select FWRT_TARGET_CAN_LINUX_2_425 select !FWRT_TARGET_CAN_LINUX_2_626 help27 This is a target which does not build a kernel, root filesy-28 stem or flash image; it is mostly used for testing packages.29 Where a kernel is required, Linux 2.4 will be used.30 31 This option selects the big-endian 32-bit ARM platform.32 14 33 #config FWRT_LINUX_NOKERNEL_AVR32 34 # bool "avr32"35 # de pends on FWRT_DEVEL36 # de pends on FWRT_TARGET_CATEGORY_NOKERNEL15 #config FWRT_LINUX_NOKERNEL_AVR32_24 16 # bool 17 # default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_AVR32 18 # default n 37 19 # select FWRT_TARGET_NOKERNEL 38 20 # select FWRT_avr32 39 # select FWRT_TARGET_CAN_LINUX_2_440 # select !FWRT_TARGET_CAN_LINUX_2_641 # help42 # This is a target which does not build a kernel, root filesy-43 # stem or flash image; it is mostly used for testing packages.44 # Where a kernel is required, Linux 2.4 will be used.45 #46 # This option selects the big-endian 32-bit AVR platform.47 21 48 config FWRT_LINUX_NOKERNEL_CRIS 49 bool "cris"50 de pends on FWRT_DEVEL51 de pends on FWRT_TARGET_CATEGORY_NOKERNEL22 config FWRT_LINUX_NOKERNEL_CRIS_24 23 bool 24 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_CRIS 25 default n 52 26 select FWRT_TARGET_NOKERNEL 53 27 select FWRT_cris 54 select FWRT_TARGET_CAN_LINUX_2_455 select !FWRT_TARGET_CAN_LINUX_2_656 help57 This is a target which does not build a kernel, root filesy-58 stem or flash image; it is mostly used for testing packages.59 Where a kernel is required, Linux 2.4 will be used.60 61 This option selects the little-endian 32-bit CRIS platform.62 28 63 config FWRT_LINUX_NOKERNEL_I386 64 bool "i386"65 de pends on FWRT_DEVEL66 de pends on FWRT_TARGET_CATEGORY_NOKERNEL29 config FWRT_LINUX_NOKERNEL_I386_24 30 bool 31 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_I386 32 default n 67 33 select FWRT_TARGET_NOKERNEL 68 34 select FWRT_i386 69 select FWRT_TARGET_CAN_LINUX_2_470 select !FWRT_TARGET_CAN_LINUX_2_671 help72 This is a target which does not build a kernel, root filesy-73 stem or flash image; it is mostly used for testing packages.74 Where a kernel is required, Linux 2.4 will be used.75 76 This option selects the little-endian 32-bit i386 platform.77 35 78 config FWRT_LINUX_NOKERNEL_MIPS 79 bool "mipsel"80 de pends on FWRT_DEVEL81 de pends on FWRT_TARGET_CATEGORY_NOKERNEL36 config FWRT_LINUX_NOKERNEL_MIPS_24 37 bool 38 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_MIPS 39 default n 82 40 select FWRT_TARGET_NOKERNEL 83 41 select FWRT_mipsel 84 select FWRT_TARGET_CAN_LINUX_2_485 select !FWRT_TARGET_CAN_LINUX_2_686 help87 This is a target which does not build a kernel, root filesy-88 stem or flash image; it is mostly used for testing packages.89 Where a kernel is required, Linux 2.4 will be used.90 91 This option selects the little-endian 32-bit mips platform.92 42 93 config FWRT_LINUX_NOKERNEL_POWERPC 94 bool "powerpc"95 de pends on FWRT_DEVEL96 de pends on FWRT_TARGET_CATEGORY_NOKERNEL43 config FWRT_LINUX_NOKERNEL_POWERPC_24 44 bool 45 default y if FWRT_TARGET_WITH_LINUX_2_4 && FWRT_LINUX_NOKERNEL_POWERPC 46 default n 97 47 select FWRT_TARGET_NOKERNEL 98 48 select FWRT_powerpc 99 select FWRT_TARGET_CAN_LINUX_2_4 100 select !FWRT_TARGET_CAN_LINUX_2_6 101 help 102 This is a target which does not build a kernel, root filesy- 103 stem or flash image; it is mostly used for testing packages. 104 Where a kernel is required, Linux 2.4 will be used. 105 106 This option selects the big-endian 32-bit powerpc platform. 49 50 config FWRT_LINUX_NOKERNEL_ARM_26 51 bool 52 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_ARM 53 default n 54 select FWRT_TARGET_NOKERNEL 55 select FWRT_arm 56 57 config FWRT_LINUX_NOKERNEL_ARMEB_26 58 bool 59 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_ARMEB 60 default n 61 select FWRT_TARGET_NOKERNEL 62 select FWRT_armeb 63 64 #config FWRT_LINUX_NOKERNEL_AVR32_26 65 # bool 66 # default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_AVR32 67 # default n 68 # select FWRT_TARGET_NOKERNEL 69 # select FWRT_avr32 70 71 config FWRT_LINUX_NOKERNEL_CRIS_26 72 bool 73 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_CRIS 74 default n 75 select FWRT_TARGET_NOKERNEL 76 select FWRT_cris 77 78 config FWRT_LINUX_NOKERNEL_I386_26 79 bool 80 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_I386 81 default n 82 select FWRT_TARGET_NOKERNEL 83 select FWRT_i386 84 85 config FWRT_LINUX_NOKERNEL_MIPS_26 86 bool 87 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_MIPS 88 default n 89 select FWRT_TARGET_NOKERNEL 90 select FWRT_mipsel 91 92 config FWRT_LINUX_NOKERNEL_POWERPC_26 93 bool 94 default y if FWRT_TARGET_WITH_LINUX_2_6 && FWRT_LINUX_NOKERNEL_POWERPC 95 default n 96 select FWRT_TARGET_NOKERNEL 97 select FWRT_powerpc trunk/freewrt/target/linux/pkgmips-2.4/Makefile
r2504 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= f59665540a7f3351ea416a0dad104b55 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.4/Makefile trunk/freewrt/target/linux/pkgmips-2.6/Makefile
r2995 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= 2ab08fdfddc00e09b3d5bc7397d3c8be 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.6/Makefile trunk/freewrt/target/linux/rb-2.4/Makefile
r2504 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= f59665540a7f3351ea416a0dad104b55 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.4/Makefile trunk/freewrt/target/linux/rb-2.6/Makefile
r2995 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= 2ab08fdfddc00e09b3d5bc7397d3c8be 12 13 include $(TOPDIR)/mk/kernel.mk 14 include $(TOPDIR)/mk/modules.mk 15 include $(TOPDIR)/mk/kernel-build.mk 1 include ${TOPDIR}/target/linux/generic-2.6/Makefile trunk/freewrt/target/linux/x86-2.4/Makefile
r2992 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= f59665540a7f3351ea416a0dad104b55 12 13 include $(TOPDIR)/mk/kernel.mk 1 include ${TOPDIR}/target/linux/generic-2.4/Makefile 14 2 include $(TOPDIR)/mk/netfilter.mk 15 include $(TOPDIR)/mk/modules.mk16 include $(TOPDIR)/mk/kernel-build.mktrunk/freewrt/target/linux/x86-2.6/Makefile
r2995 r3335 1 # $FreeWRT$ 2 #- 3 # This file is part of the FreeWRT project. FreeWRT is copyrighted 4 # material, please see the LICENCE file in the top-level directory 5 # or at http://www.freewrt.org/licence for details. 6 7 include $(TOPDIR)/rules.mk 8 9 LINUX_VERSION:= ${UNAME_R} 10 LINUX_RELEASE:= 1 11 LINUX_KERNEL_MD5SUM:= 2ab08fdfddc00e09b3d5bc7397d3c8be 12 13 include $(TOPDIR)/mk/kernel.mk 1 include ${TOPDIR}/target/linux/generic-2.6/Makefile 14 2 include $(TOPDIR)/mk/netfilter.mk 15 include $(TOPDIR)/mk/modules.mk16 include $(TOPDIR)/mk/kernel-build.mk


