mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
The EN751221 has an XHCI that is compatible with MT7621. While there is setup logic in the vendor code for both EN751221 and MT7621, but MT7621 does not use it in mainline or OpenWRT, and it appears to work correctly with EN751221. Include SCSI / Mass Storage because many EcoNet devices contain a builtin USB SD-Card reader. Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr> Link: https://github.com/openwrt/openwrt/pull/20050 [Remove usb storage kmod from smartfiber_xp8421-b] Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
27 lines
963 B
Makefile
27 lines
963 B
Makefile
define Device/smartfiber_xp8421-b
|
|
DEVICE_VENDOR := SmartFiber
|
|
DEVICE_MODEL := XP8421-B
|
|
DEVICE_DTS := en751221_smartfiber_xp8421-b
|
|
IMAGES := tclinux.trx
|
|
IMAGE/tclinux.trx := append-kernel | lzma | tclinux-trx
|
|
DEVICE_PACKAGES := kmod-usb3
|
|
endef
|
|
TARGET_DEVICES += smartfiber_xp8421-b
|
|
|
|
# NOTE: This will not work for upgrading from factory because it requires a cryptographic signature
|
|
# however, it it can be flashed, then it will boot correctly.
|
|
define Device/tplink_archer-vr1200v-v2
|
|
DEVICE_VENDOR := TP-Link
|
|
DEVICE_MODEL := Archer vr1200v
|
|
DEVICE_VARIANT := v2
|
|
TPLINK_FLASHLAYOUT := 16Mmtk
|
|
TPLINK_HWID := 0x0b473502
|
|
TPLINK_HWREV := 0x0006007c
|
|
TPLINK_HWREVADD := 0x0
|
|
TPLINK_HVERSION := 3
|
|
DEVICE_DTS := en751221_tplink_archer-vr1200v-v2
|
|
IMAGES := sysupgrade.bin
|
|
IMAGE/sysupgrade.bin := append-kernel | lzma | pad-to 4193792 | append-rootfs | \
|
|
tplink-v2-header -R 0x400000
|
|
endef
|
|
TARGET_DEVICES += tplink_archer-vr1200v-v2
|