diff options
| author | David Bauer | 2024-09-10 02:25:59 +0000 |
|---|---|---|
| committer | David Bauer | 2024-09-11 15:47:11 +0000 |
| commit | 7447eeac91d36f2e67e7da55310676ed7fe0a36d (patch) | |
| tree | 89ee1f89937a02014bdff71edc07a18fb9d99eaa | |
| parent | 5773538c907610ebfd1ea13701383e511b7fd00b (diff) | |
| download | openwrt-7447eeac91d36f2e67e7da55310676ed7fe0a36d.tar.gz | |
ipq40xx: define config-names for Aruba boards
Aruba boards now ship with multiple DTS and image-configurations per
image. Newer apboot revs expect a configuration for their hardware to be
present.
Signed-off-by: David Bauer <mail@david-bauer.net>
(cherry picked from commit c7ba5574f52f25334add66c15190b578ac873739)
| -rw-r--r-- | target/linux/ipq40xx/image/generic.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/ipq40xx/image/generic.mk b/target/linux/ipq40xx/image/generic.mk index af50dc5feb..33141f7949 100644 --- a/target/linux/ipq40xx/image/generic.mk +++ b/target/linux/ipq40xx/image/generic.mk @@ -179,12 +179,14 @@ endef define Device/aruba_ap-303 $(call Device/aruba_glenmorangie) DEVICE_MODEL := AP-303 + DEVICE_DTS_CONFIG := Glenmorangie@1 endef TARGET_DEVICES += aruba_ap-303 define Device/aruba_ap-303h $(call Device/aruba_glenmorangie) DEVICE_MODEL := AP-303H + DEVICE_DTS_CONFIG := Aberlour@1 endef TARGET_DEVICES += aruba_ap-303h @@ -192,6 +194,7 @@ define Device/aruba_ap-365 $(call Device/aruba_glenmorangie) DEVICE_MODEL := AP-365 DEVICE_PACKAGES := kmod-hwmon-ad7418 + DEVICE_DTS_CONFIG := Bunker@1 endef TARGET_DEVICES += aruba_ap-365 |