2006-06-27 08:35:46 +08: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-11 03:43:00 +08:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2006-11-12 07:11:02 +08:00
|
|
|
ARCH:=mipsel
|
|
|
|
BOARD:=brcm
|
|
|
|
BOARDNAME:=Broadcom BCM947xx/953xx
|
2006-12-13 07:20:05 +08:00
|
|
|
FEATURES:=squashfs
|
2006-11-12 07:11:02 +08:00
|
|
|
|
|
|
|
define Target/Description
|
|
|
|
Build firmware images for Broadcom based routers
|
2007-02-06 05:56:03 +08:00
|
|
|
(e.g. Netgear WGT634U)
|
2006-11-12 07:11:02 +08:00
|
|
|
endef
|
|
|
|
|
2006-06-21 10:32:39 +08:00
|
|
|
include $(INCLUDE_DIR)/kernel-build.mk
|
2007-01-15 01:56:42 +08:00
|
|
|
DEFAULT_PACKAGES += kmod-switch kmod-diag
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-11-12 13:06:56 +08:00
|
|
|
define Profile/Atheros
|
|
|
|
NAME:=Atheros WiFi (default)
|
|
|
|
PACKAGES:=kmod-madwifi
|
|
|
|
endef
|
2007-01-20 10:30:36 +08:00
|
|
|
|
|
|
|
define Profile/Atheros/Description
|
|
|
|
Package set compatible with hardware using Atheros WiFi cards
|
|
|
|
endef
|
2006-11-12 13:06:56 +08:00
|
|
|
$(eval $(call Profile,Atheros))
|
|
|
|
|
2007-02-06 05:55:32 +08:00
|
|
|
define Profile/WGT634U
|
|
|
|
NAME:=Netgear WGT634U
|
|
|
|
PACKAGES:=kmod-madwifi kmod-usb-core kmod-usb-ohci kmod-usb2
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Profile/WGT634U/Description
|
|
|
|
Package set compatible with the Netgear WGT634U. Contains USB support
|
|
|
|
endef
|
|
|
|
$(eval $(call Profile,WGT634U))
|
|
|
|
|
2006-11-12 13:06:56 +08:00
|
|
|
define Profile/None
|
|
|
|
NAME:=No WiFi
|
|
|
|
PACKAGES:=
|
|
|
|
endef
|
2007-01-20 10:30:36 +08:00
|
|
|
|
|
|
|
define Profile/None/Description
|
|
|
|
Package set without WiFi support
|
|
|
|
endef
|
2006-11-12 13:06:56 +08:00
|
|
|
$(eval $(call Profile,None))
|
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
$(eval $(call BuildKernel))
|