diff options
author | Michael Pratt <mcpratt@pm.me> | 2021-02-12 13:24:32 -0500 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2021-06-11 07:20:31 +0200 |
commit | a1b2815b5229fe009fab021a70635b034174a13f (patch) | |
tree | 56b14bca27d13a860d48b8cf247d516aaa6e589b /target/linux/ath79/image/tiny.mk | |
parent | 46b53ce83b3d47ef48a0ef9cb3263a038e1ebc8a (diff) | |
download | upstream-a1b2815b5229fe009fab021a70635b034174a13f.tar.gz upstream-a1b2815b5229fe009fab021a70635b034174a13f.tar.bz2 upstream-a1b2815b5229fe009fab021a70635b034174a13f.zip |
ath79: rename 'engenius' Makefile definitions to 'senao'
These recipes and definitions can apply
to devices from other vendors
with PCB boards or SDK produced by Senao
not only the brand Engenius
possible examples:
Extreme Networks, WatchGuard, OpenMesh,
Fortinet, ALLNET, OCEDO, Plasma Cloud, devolo, etc.
so rename all of these items
and move DEVICE_VENDOR from common to generic/tiny.mk
Signed-off-by: Michael Pratt <mcpratt@pm.me>
(cherry picked from commit 70bf4a979c24a5db6f29f6dd691e20eb2345b4d0)
Diffstat (limited to 'target/linux/ath79/image/tiny.mk')
-rw-r--r-- | target/linux/ath79/image/tiny.mk | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/target/linux/ath79/image/tiny.mk b/target/linux/ath79/image/tiny.mk index 36d2818ad5..dec3cd368d 100644 --- a/target/linux/ath79/image/tiny.mk +++ b/target/linux/ath79/image/tiny.mk @@ -1,5 +1,5 @@ include ./common-buffalo.mk -include ./common-engenius.mk +include ./common-senao.mk define Device/buffalo_whr-g301n $(Device/buffalo_common) @@ -32,36 +32,39 @@ endef TARGET_DEVICES += dlink_dir-615-e4 define Device/engenius_eap350-v1 - $(Device/engenius_loader_okli) + $(Device/senao_loader_okli) SOC := ar7242 + DEVICE_VENDOR := EnGenius DEVICE_MODEL := EAP350 DEVICE_VARIANT := v1 IMAGE_SIZE := 4864k LOADER_FLASH_OFFS := 0x1b0000 - ENGENIUS_IMGNAME := senao-eap350 + SENAO_IMGNAME := senao-eap350 endef TARGET_DEVICES += engenius_eap350-v1 define Device/engenius_ecb350-v1 - $(Device/engenius_loader_okli) + $(Device/senao_loader_okli) SOC := ar7242 + DEVICE_VENDOR := EnGenius DEVICE_MODEL := ECB350 DEVICE_VARIANT := v1 IMAGE_SIZE := 4864k LOADER_FLASH_OFFS := 0x1b0000 - ENGENIUS_IMGNAME := senao-ecb350 + SENAO_IMGNAME := senao-ecb350 endef TARGET_DEVICES += engenius_ecb350-v1 define Device/engenius_enh202-v1 - $(Device/engenius_loader_okli) + $(Device/senao_loader_okli) SOC := ar7240 + DEVICE_VENDOR := EnGenius DEVICE_MODEL := ENH202 DEVICE_VARIANT := v1 DEVICE_PACKAGES := rssileds IMAGE_SIZE := 4864k LOADER_FLASH_OFFS := 0x1b0000 - ENGENIUS_IMGNAME := senao-enh202 + SENAO_IMGNAME := senao-enh202 endef TARGET_DEVICES += engenius_enh202-v1 |