2d3371cd0f
Support for the BT HomeHub 2.0 Type A. This router was manufactured by Thomson, and it's BCM6358 based. The leds are controled by two chained HC594, all working ok. The BCM5325 switch has the RESET# pin wired to the GPIO15, but currently there is no way to tell the b53 driver how to get this gpio number in brcm63xx, therefore swconfig won't use it when performing a switch reset. The patch was tested with several firmwares, and all except unsupported stuff (i.e xDSL) works pretty well. Tested-by: Tahir <tahir00ali@gmail.com> Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com> SVN-Revision: 44985
25 lines
609 B
Makefile
25 lines
609 B
Makefile
#
|
|
# Copyright (C) 2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Profile/BTHOMEHUB2A
|
|
NAME:=BT Home Hub 2A
|
|
PACKAGES:=kmod-b43 wpad-mini \
|
|
kmod-usb2 kmod-usb-ohci kmod-ledtrig-usbdev
|
|
endef
|
|
define Profile/BTHOMEHUB2A/Description
|
|
Package set optimized for BTHOMEHUB2A.
|
|
endef
|
|
$(eval $(call Profile,BTHOMEHUB2A))
|
|
|
|
define Profile/BTV2500V
|
|
NAME:=BT Voyager V2500V
|
|
PACKAGES:=kmod-b43 wpad-mini
|
|
endef
|
|
define Profile/BTV2500V/Description
|
|
Package set optimized for BTV2500V.
|
|
endef
|
|
$(eval $(call Profile,BTV2500V))
|