ca7f6d28c8
This adds support for the Netgear DGND3700 v1 and DGND3800B. DGND3700 v1 and DGND3800B are exactly the same router, only one difference, the factory firmware. This patch produces two factory firmwares for each router. The router includes an onboard NAND flash for extra storage. NAND is currently not supported in bcm63xx, so no code added for this part. The NOR flash (32MB) is enough for storing an openwrt firmware. Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com> [jogo: Add back commit message from v1] Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 44831
35 lines
838 B
Makefile
35 lines
838 B
Makefile
#
|
|
# Copyright (C) 2014 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
define Profile/CVG834G
|
|
NAME:=Netgear CVG834G
|
|
PACKAGES:=
|
|
endef
|
|
define Profile/CVG834G/Description
|
|
Package set optimized for CVG834G.
|
|
endef
|
|
$(eval $(call Profile,CVG834G))
|
|
|
|
define Profile/DG834GTPN
|
|
NAME:=Netgear DG834GT/PN
|
|
PACKAGES:=kmod-ath5k wpad-mini
|
|
endef
|
|
define Profile/DG834GTPN/Description
|
|
Package set optimized for DG834GT/PN.
|
|
endef
|
|
$(eval $(call Profile,DG834GTPN))
|
|
|
|
define Profile/DGND3700v1_3800B
|
|
NAME:=Netgear DGND3700 v1 / DGND3800B
|
|
PACKAGES:=kmod-b43 wpad-mini \
|
|
kmod-usb2 kmod-usb-ohci kmod-ledtrig-usbdev
|
|
endef
|
|
define Profile/DGND3700v1_3800B/Description
|
|
Package set optimized for DGND3700 v1 / DGND3800B.
|
|
endef
|
|
$(eval $(call Profile,DGND3700v1_3800B))
|