2006-06-27 03:35:46 +03:00
|
|
|
#
|
|
|
|
# Copyright (C) 2006 OpenWrt.org
|
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-01-10 21:43:00 +02:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-11-12 01:11:02 +02:00
|
|
|
ARCH:=mipsel
|
|
|
|
BOARD:=brcm
|
|
|
|
BOARDNAME:=Broadcom BCM947xx/953xx
|
2006-11-19 22:30:11 +02:00
|
|
|
FEATURES:=squashfs jffs2
|
2006-11-12 01:11:02 +02:00
|
|
|
|
|
|
|
define Target/Description
|
|
|
|
Build firmware images for Broadcom based routers
|
|
|
|
(e.g. Linksys WRT54G(S), Asus WL-500g, Motorola WR850G)
|
|
|
|
|
|
|
|
This one builds the generic .trx images, activate one of the
|
|
|
|
options below for creating device specific files for use
|
|
|
|
with TFTP client too.
|
|
|
|
endef
|
|
|
|
|
2006-11-24 02:56:51 +02:00
|
|
|
LINUX_VERSION:=2.4.33.4
|
2006-01-10 21:43:00 +02:00
|
|
|
LINUX_RELEASE:=1
|
2006-11-24 02:56:51 +02:00
|
|
|
LINUX_KERNEL_MD5SUM:=aca0257549c385a227088ad8853a72a2
|
2006-01-10 21:43:00 +02:00
|
|
|
|
2006-06-21 05:32:39 +03:00
|
|
|
include $(INCLUDE_DIR)/kernel-build.mk
|
2006-11-12 07:09:56 +02:00
|
|
|
DEFAULT_PACKAGES += kmod-switch nvram
|
2006-11-12 01:11:02 +02:00
|
|
|
|
2006-11-12 07:06:56 +02:00
|
|
|
define Profile/Broadcom
|
|
|
|
NAME:=Generic, Broadcom WiFi (default)
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,Broadcom))
|
|
|
|
|
|
|
|
define Profile/BroadcomMimo
|
|
|
|
NAME:=Generic, Broadcom WiFi (MIMO)
|
|
|
|
PACKAGES:=kmod-brcm-wl-mimo
|
|
|
|
endef
|
|
|
|
$(eval $(call Profile,BroadcomMimo))
|
|
|
|
|
|
|
|
define Profile/Atheros
|
|
|
|
NAME:=Generic, Atheros WiFi
|
|
|
|
PACKAGES:=kmod-madwifi
|
|
|
|
endef
|
|
|
|
$(eval $(call Profile,Atheros))
|
|
|
|
|
|
|
|
define Profile/None
|
|
|
|
NAME:=Generic, No WiFi
|
|
|
|
PACKAGES:=
|
|
|
|
endef
|
|
|
|
$(eval $(call Profile,None))
|
|
|
|
|
|
|
|
|
|
|
|
define Profile/WRT54G3G
|
|
|
|
NAME:=Linksys WRT54G3G
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl kmod-usb-core kmod-usb-ohci kmod-usb2 kmod-pcmcia-core kmod-pcmcia-serial kmod-nozomi comgt
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WRT54G3G))
|
|
|
|
|
|
|
|
define Profile/WL500G
|
|
|
|
NAME:=ASUS WL-500g
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl kmod-usb-core kmod-usb-ohci kmod-lp
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WL500G))
|
|
|
|
|
|
|
|
define Profile/WL500GD
|
|
|
|
NAME:=ASUS WL-500g Deluxe
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl kmod-usb-core kmod-usb-uhci kmod-usb2
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WL500GD))
|
|
|
|
|
|
|
|
define Profile/WL500GP
|
|
|
|
NAME:=ASUS WL-500g Premium
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl kmod-usb-core kmod-usb-ohci kmod-usb2
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WL500GP))
|
|
|
|
|
|
|
|
define Profile/WLHDD
|
|
|
|
NAME:=WL-HDD
|
2006-11-27 07:25:42 +02:00
|
|
|
PACKAGES:=kmod-brcm-wl kmod-usb-core kmod-usb-ohci kmod-ide-core kmod-ide-pdc202xx
|
2006-11-12 07:06:56 +02:00
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WLHDD))
|
|
|
|
|
2006-10-19 09:20:55 +03:00
|
|
|
$(eval $(call BuildKernel))
|