diff options
| author | Christoph Krapp | 2025-10-19 11:52:31 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-10-19 17:40:44 +0000 |
| commit | b442ca0d4eedea348dbb4d81c00454996ac31b8c (patch) | |
| tree | a1eee3f8118591e7a9a62fffe9b61117208ed1d5 | |
| parent | b926ae085630a3469be7fd237ef6fe46ee021bb5 (diff) | |
| download | openwrt-b442ca0d4eedea348dbb4d81c00454996ac31b8c.tar.gz | |
ipq40xx: add device alias for Linksys VLP01
Both devices, the Linksys WHW01 and the VLP01, are essentially the same
device. Even Linksys provides only one image for both devices which uses
the WHW01 identifier in the image header.
Signed-off-by: Christoph Krapp <achterin@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/20455
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rw-r--r-- | target/linux/ipq40xx/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq4018-whw01.dts | 2 | ||||
| -rw-r--r-- | target/linux/ipq40xx/image/generic.mk | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/target/linux/ipq40xx/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq4018-whw01.dts b/target/linux/ipq40xx/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq4018-whw01.dts index 15a22afff7..9809ac8777 100644 --- a/target/linux/ipq40xx/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq4018-whw01.dts +++ b/target/linux/ipq40xx/files-6.12/arch/arm/boot/dts/qcom/qcom-ipq4018-whw01.dts @@ -6,7 +6,7 @@ #include <dt-bindings/input/input.h> / { - model = "Linksys WHW01"; + model = "Linksys WHW01 / VLP01"; compatible = "linksys,whw01"; aliases { diff --git a/target/linux/ipq40xx/image/generic.mk b/target/linux/ipq40xx/image/generic.mk index 7afe64b415..eeab128008 100644 --- a/target/linux/ipq40xx/image/generic.mk +++ b/target/linux/ipq40xx/image/generic.mk @@ -727,6 +727,8 @@ define Device/linksys_whw01 $(call Device/FitzImage) DEVICE_VENDOR := Linksys DEVICE_MODEL := WHW01 + DEVICE_ALT0_VENDOR := Linksys + DEVICE_ALT0_MODEL := VLP01 KERNEL_SIZE := 6144k IMAGE_SIZE := 75776k NAND_SIZE := 256m |