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