dd8f5abb23
HiWiFi HC5661/5761/5861 models are manufactured by http://www.hiwifi.com <http://www.hiwifi.com/>. These models have similar hardware specs(MT7620A + 128M DDR2 + 16M flash). This patch adds support for them. The original author is Justin Liu (rssnsj@gmail.com). I ported the patch to trunk and submitted it here with his approval. v3 fix 1: Spaces -> Tabs 2: Removed some packages Signed-off-by: Xiaoning Kang <kangxn@163.com> SVN-Revision: 47113
48 lines
992 B
Makefile
48 lines
992 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/HC5661
|
|
NAME:=HiWiFi HC5661
|
|
PACKAGES:=\
|
|
kmod-usb-core kmod-usb-dwc2 kmod-usb2 \
|
|
kmod-mmc-spi kmod-sdhci kmod-sdhci-mt7620 \
|
|
kmod-ledtrig-usbdev
|
|
endef
|
|
|
|
define Profile/HC5661/Description
|
|
Support HiWiFi HC5661 model(J1S)
|
|
endef
|
|
$(eval $(call Profile,HC5661))
|
|
|
|
|
|
define Profile/HC5761
|
|
NAME:=HiWiFi HC5761
|
|
PACKAGES:=\
|
|
kmod-usb-core kmod-usb-dwc2 kmod-usb2 \
|
|
kmod-mmc-spi kmod-sdhci kmod-sdhci-mt7620 \
|
|
kmod-ledtrig-usbdev
|
|
endef
|
|
|
|
define Profile/HC5761/Description
|
|
Support HiWiFi HC5761 model(J2)
|
|
endef
|
|
$(eval $(call Profile,HC5761))
|
|
|
|
|
|
define Profile/HC5861
|
|
NAME:=HiWiFi HC5861
|
|
PACKAGES:=\
|
|
kmod-usb-core kmod-usb-dwc2 kmod-usb2 \
|
|
kmod-mmc-spi kmod-sdhci kmod-sdhci-mt7620 \
|
|
kmod-ledtrig-usbdev
|
|
endef
|
|
|
|
define Profile/HC5861/Description
|
|
Support HiWiFi HC5861 model(J3)
|
|
endef
|
|
$(eval $(call Profile,HC5861))
|