diff options
author | John Crispin <john@phrozen.org> | 2016-05-11 12:21:45 +0200 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-05-12 03:29:36 +0200 |
commit | 0f12f329966e064bd0eda38f36d1a1c0bf25693f (patch) | |
tree | 3c9b4e878c42f2265d57126c2e6ad96314dac2b8 /target/linux/ramips/image/mt7628.mk | |
parent | 825717d45082dbf7950f271a0889689e28bac54f (diff) | |
download | upstream-0f12f329966e064bd0eda38f36d1a1c0bf25693f.tar.gz upstream-0f12f329966e064bd0eda38f36d1a1c0bf25693f.tar.bz2 upstream-0f12f329966e064bd0eda38f36d1a1c0bf25693f.zip |
ramips: convert mt7628 to new image building code
Signed-off-by: John Crispin <john@phrozen.org>
Diffstat (limited to 'target/linux/ramips/image/mt7628.mk')
-rw-r--r-- | target/linux/ramips/image/mt7628.mk | 28 |
1 files changed, 19 insertions, 9 deletions
diff --git a/target/linux/ramips/image/mt7628.mk b/target/linux/ramips/image/mt7628.mk index 1e6b06c82c..8274e11f17 100644 --- a/target/linux/ramips/image/mt7628.mk +++ b/target/linux/ramips/image/mt7628.mk @@ -2,16 +2,26 @@ # MT7628 Profiles # -Image/Build/Profile/MIWIFI-NANO=$(call BuildFirmware/Default16M/$(1),$(1),miwifi-nano,MIWIFI-NANO) -Image/Build/Profile/MT7628=$(call BuildFirmware/Default4M/$(1),$(1),mt7628,MT7628) -Image/Build/Profile/WRTNODE2P=$(call BuildFirmware/Default16M/$(1),$(1),wrtnode2p,WRTNODE2P) +define Device/mt7628 + DTS := MT7628 + IMAGE_SIZE := $(ralink_default_fw_size_4M) + DEVICE_TITLE := MediaTek MT7628 EVB + DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-ledtrig-usbdev +endef +TARGET_DEVICES += mt7628 -define Image/Build/Profile/Default - $(call Image/Build/Profile/MIWIFI-NANO,$(1)) - $(call Image/Build/Profile/MT7628,$(1)) - $(call Image/Build/Profile/WRTNODE2P,$(1)) +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-ledtrig-usbdev endef +TARGET_DEVICES += miwifi-nano -define Image/Build/Profile/MiwifiNano - $(call Image/Build/Profile/MIWIFI-NANO,$(1)) +define Device/wrtnode2p + DTS := WRTNODE2P + IMAGE_SIZE := $(ralink_default_fw_size_16M) + DEVICE_TITLE := WRTnode 2P + DEVICE_PACKAGES := kmod-usb2 kmod-usb-ohci kmod-ledtrig-usbdev endef +TARGET_DEVICES += wrtnode2p |