Changeset 3710
- Timestamp:
- 03/10/08 16:00:21 (9 months ago)
- Files:
-
- trunk/freewrt/mk/targets.mk (modified) (2 diffs)
- trunk/freewrt/rules.mk (modified) (2 diffs)
- trunk/freewrt/target/Config.in (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/freewrt/mk/targets.mk
r3388 r3710 53 53 $(eval $(call target_template,2.4,brcm,asus-wl500g-premium,2_4_BRCM_ASUS_WL500G_PREMIUM)) 54 54 $(eval $(call target_template,2.6,brcm,asus-wl500g-premium,2_6_BRCM_ASUS_WL500G_PREMIUM)) 55 # atheros models 56 $(eval $(call target_template,2.6,atheros,atheros-fon2100,2_6_ATHEROS)) 55 57 # linksys models 56 58 $(eval $(call target_template,2.4,brcm,linksys-wrt54g-old,2_4_BRCM_LINKSYS_WRT54G_OLD)) … … 115 117 116 118 # set architecture 119 ifeq ($(BOARD),atheros) 120 CPU_ARCH=mips 121 KERNEL_ARCH=mips 122 endif 123 117 124 ifeq ($(BOARD),brcm) 118 125 CPU_ARCH=mipsel trunk/freewrt/rules.mk
r3693 r3710 85 85 ifeq ($(strip ${FWRT_LINUX_2_6_AR7}),y) 86 86 UNAME_R:= 2.6.21.1 87 else ifeq ($(strip ${FWRT_LINUX_2_6_ATHEROS}),y) 88 UNAME_R:= 2.6.23.12 87 89 else ifeq ($(strip ${FWRT_LINUX_2_6_BRCM_ASUS_WL500G_PREMIUM}),y) 88 90 UNAME_R:= 2.6.22.1 … … 96 98 97 99 ifeq ($(strip ${FWRT_mipsel}),y) 100 UNAME_M:= mips 101 else ifeq ($(strip ${FWRT_mips}),y) 98 102 UNAME_M:= mips 99 103 else ifeq ($(strip ${FWRT_i386}),y) trunk/freewrt/target/Config.in
r3426 r3710 12 12 13 13 config FWRT_TARGET_CATEGORY_MIPS 14 bool "MIPS-based routers (Broadcom, Routerboard )"14 bool "MIPS-based routers (Broadcom, Routerboard, Atheros)" 15 15 help 16 16 Select here to choose one of the embedded WLAN router … … 131 131 Mikrotik RouterBoard 532 132 132 http://www.routerboard.com/ 133 134 # 135 # atheros 136 # 137 config FWRT_DEVICE_ATHEROS 138 depends on FWRT_TARGET_CATEGORY_MIPS 139 bool "Atheros SoC Boards" 140 select !FWRT_TARGET_CAN_LINUX_2_4 141 select FWRT_TARGET_CAN_LINUX_2_6 142 help 143 Support for the fon2100, an Atheros SoC 144 device distributed by Fon. 133 145 134 146 # … … 251 263 endchoice 252 264 265 source "target/linux/atheros-2.6/Config.in" 253 266 source "target/linux/brcm-2.4/Config.in" 254 267 source "target/linux/brcm-2.6/Config.in" … … 290 303 select FWRT_KERNEL_JFFS2_FS 291 304 select FWRT_KERNEL_JFFS2_BBC_LZARI 292 depends on FWRT_LINUX_2_4_BRCM 305 depends on FWRT_LINUX_2_4_BRCM || FWRT_LINUX_2_6_ATHEROS 293 306 help 294 307 Build firmware images with a writable jffs2 root filesystem. … … 330 343 depends on FWRT_LINUX_2_4_RB || \ 331 344 FWRT_LINUX_2_6_RB || \ 332 FWRT_LINUX_2_4_BRCM_NETGEAR_WGT634U 345 FWRT_LINUX_2_4_BRCM_NETGEAR_WGT634U || \ 346 FWRT_LINUX_2_6_ATHEROS 333 347 select FWRT_KERNEL_EXT2_FS if !FWRT_LINUX_2_4_BRCM 334 348 select FWRT_KERNEL_IP_PNP … … 383 397 FWRT_TARGET_NOKERNEL || \ 384 398 (FWRT_DEVEL && FWRT_LINUX_2_6) 399 depends on !FWRT_LINUX_2_6_ATHEROS 385 400 help 386 401 create a initramfs only.


