mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 00:41:17 +00:00
5e409f0e69
With d2b6bf1416
("ramips: fix image validation errors") the board
name was changed to fix an image validation error. But this change
wasn't applied to all other files using the board name, which broke
sysupgrade.
Revert this change and use the former board name in the metadata
instead.
Signed-off-by: Mathias Kresin <dev@kresin.me>
59 lines
1.4 KiB
Makefile
59 lines
1.4 KiB
Makefile
#
|
|
# MT7628 Profiles
|
|
#
|
|
|
|
define Device/mt7628
|
|
DTS := MT7628
|
|
BLOCKSIZE := 64k
|
|
IMAGE_SIZE := $(ralink_default_fw_size_4M)
|
|
DEVICE_TITLE := MediaTek MT7628 EVB
|
|
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport
|
|
endef
|
|
TARGET_DEVICES += mt7628
|
|
|
|
define Device/miwifi-nano
|
|
DTS := MIWIFI-NANO
|
|
IMAGE_SIZE := $(ralink_default_fw_size_16M)
|
|
DEVICE_TITLE := Xiaomi MiWiFi Nano
|
|
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport
|
|
endef
|
|
TARGET_DEVICES += miwifi-nano
|
|
|
|
define Device/vocore2
|
|
DTS := VOCORE2
|
|
IMAGE_SIZE := $(ralink_default_fw_size_16M)
|
|
DEVICE_TITLE := VoCore VoCore2
|
|
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport \
|
|
kmod-sdhci kmod-sdhci-mt7620
|
|
endef
|
|
TARGET_DEVICES += vocore2
|
|
|
|
define Device/wl-wn575a3
|
|
DTS := WL-WN575A3
|
|
IMAGE_SIZE := $(ralink_default_fw_size_8M)
|
|
DEVICE_TITLE := Wavlink WL-WN575A3
|
|
endef
|
|
TARGET_DEVICES += wl-wn575a3
|
|
|
|
define Device/wrtnode2p
|
|
DTS := WRTNODE2P
|
|
IMAGE_SIZE := $(ralink_default_fw_size_16M)
|
|
DEVICE_TITLE := WRTnode 2P
|
|
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport
|
|
endef
|
|
TARGET_DEVICES += wrtnode2p
|
|
|
|
define Device/duzun-dm06
|
|
DTS := DUZUN-DM06
|
|
DEVICE_TITLE := DuZun DM06
|
|
DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-usb-ledtrig-usbport
|
|
endef
|
|
TARGET_DEVICES += duzun-dm06
|
|
|
|
define Device/mac1200r-v2
|
|
DTS := MAC1200RV2
|
|
DEVICE_TITLE := Mercury MAC1200R v2.0
|
|
SUPPORTED_DEVICES := mac1200rv2
|
|
endef
|
|
TARGET_DEVICES += mac1200r-v2
|