0
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2025-10-07 16:57:15 +00:00
Files
openwrt/target/linux/econet/Makefile
Caleb James DeLisle c43925313e econet: Add basic USB support with Mass Storage
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>
2025-09-18 22:36:28 +02:00

26 lines
513 B
Makefile

# SPDX-License-Identifier: GPL-2.0-only
#
# Copyright (C) 2009-2025 OpenWrt.org
include $(TOPDIR)/rules.mk
ARCH:=mips
BOARD:=econet
BOARDNAME:=EcoNet EN75xx MIPS
FEATURES:=dt source-only squashfs nand usb
SUBTARGETS:=en751221
KERNEL_PATCHVER:=6.12
define Target/Description
Build firmware image for EcoNet EN75xx MIPS based boards.
endef
# include the profiles
include $(INCLUDE_DIR)/target.mk
# nand-utils is used by base-files/sbin/en75_chboot
DEFAULT_PACKAGES += nand-utils
$(eval $(call BuildTarget))