diff options
| author | Caleb James DeLisle | 2025-12-04 19:13:23 +0000 |
|---|---|---|
| committer | Robert Marko | 2025-12-08 16:30:27 +0000 |
| commit | 75915e35805322e55eced5dd9d27c7f9f1cce3e2 (patch) | |
| tree | a33fbb98b66d013724eafd5f73000ee0bf4a0094 | |
| parent | 4e0dfa6e2798fd2a301f8eb974caa2e0d8051f41 (diff) | |
| download | openwrt-75915e35805322e55eced5dd9d27c7f9f1cce3e2.tar.gz | |
econet: fix wrong board name for Zyxel PMG5617GA
Board name was specified incorrectly in the DT, fix.
This bug was introduced in #20580 (31f5fc8fea8931f5) which was
merged last week, and econet is still a mostly experimental target,
so it is considered unnecessary to update SUPPORTED_DEVICES.
Signed-off-by: Caleb James DeLisle <cjd@cjdns.fr>
Link: https://github.com/openwrt/openwrt/pull/21023
Signed-off-by: Robert Marko <robimarko@gmail.com>
| -rwxr-xr-x | target/linux/econet/base-files/sbin/en75_chboot | 2 | ||||
| -rw-r--r-- | target/linux/econet/dts/en751221_zyxel_pmg5617ga.dts | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/econet/base-files/sbin/en75_chboot b/target/linux/econet/base-files/sbin/en75_chboot index f5b5dafdcc..e6be66e582 100755 --- a/target/linux/econet/base-files/sbin/en75_chboot +++ b/target/linux/econet/base-files/sbin/en75_chboot @@ -129,7 +129,7 @@ main() { code_openwrt=30000000 code_factory=31000000 ;; - tplink,zyxel-pmg5617ga) + zyxel,pmg5617ga) # 00060fff part=$(part_named '"reservearea"') offset_blocks=3 diff --git a/target/linux/econet/dts/en751221_zyxel_pmg5617ga.dts b/target/linux/econet/dts/en751221_zyxel_pmg5617ga.dts index 12f9c61ef9..b6a95801be 100644 --- a/target/linux/econet/dts/en751221_zyxel_pmg5617ga.dts +++ b/target/linux/econet/dts/en751221_zyxel_pmg5617ga.dts @@ -5,7 +5,7 @@ / { model = "Zyxel PMG5617GA"; - compatible = "tplink,zyxel-pmg5617ga", "econet,en751221"; + compatible = "zyxel,pmg5617ga", "econet,en751221"; memory@0 { device_type = "memory"; |