mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-24 22:16:14 +00:00
1d976f83e4
TP-Link TD-W8968 v3 is an 300Mbps Wireless N USB ADSL2+ Modem Router based on Broadcom BCM6318 SoC. Hardware: CPU: Broadcom BCM6318, 333 MHz, 1 core Flash: 8MB RAM: 64 MB Ethernet: 4x 10/100 Mbps Wireless: 802.11b/g/n, BCM43217 LEDs/Buttons: 10x / 3x USB: 1x 2.0 Flash instructions: * Assign static IP 192.168.1.100 to PC * Unplug the power source * Press the RESET button at the router, don't release it yet! * Plug the power source. Wait for some seconds * Release the RESET button * Browse to http://192.168.1.1 * Upload the openwrt-bmips-bcm6318-tp-link_td-w8968-v3-squashfs-cfe.bin file * Wait some minutes until the firmware upgrade finish. Signed-off-by: Mathesh Velayudan <123v.mathesh@gmail.com>
35 lines
901 B
Makefile
35 lines
901 B
Makefile
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
define Device/comtrend_ar-5315u
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := Comtrend
|
|
DEVICE_MODEL := AR-5315u
|
|
CHIP_ID := 6318
|
|
CFE_BOARD_ID := 96318A-1441N1
|
|
FLASH_MB := 16
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43217-sprom \
|
|
kmod-leds-bcm6328
|
|
endef
|
|
TARGET_DEVICES += comtrend_ar-5315u
|
|
|
|
define Device/tp-link_td-w8968-v3
|
|
$(Device/bcm63xx-cfe)
|
|
DEVICE_VENDOR := TP-Link
|
|
DEVICE_MODEL := TD-W8968
|
|
DEVICE_VARIANT := V3
|
|
DEVICE_ALT0_VENDOR := TP-Link
|
|
DEVICE_ALT0_MODEL := TD-W8968
|
|
DEVICE_ALT0_VARIANT := V4
|
|
DEVICE_ALT1_VENDOR := TP-Link
|
|
DEVICE_ALT1_MODEL := TD-W8960N
|
|
DEVICE_ALT1_VARIANT := V5
|
|
CHIP_ID := 6318
|
|
CFE_BOARD_ID := 96318REF
|
|
FLASH_MB := 8
|
|
DEVICE_PACKAGES += $(USB2_PACKAGES) \
|
|
$(B43_PACKAGES) broadcom-43217-sprom \
|
|
kmod-leds-bcm6328
|
|
endef
|
|
TARGET_DEVICES += tp-link_td-w8968-v3
|