diff options
| author | Tim Harvey | 2025-02-13 18:36:09 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-02-25 21:59:04 +0000 |
| commit | 79ba16309029879b0678dc0525b0a56eef5e4acf (patch) | |
| tree | c0a7bf61534f9e063373f0aeac4e70e72cc031cc | |
| parent | 0963a15e7cd4084d052e8461fc68822e42805b11 (diff) | |
| download | openwrt-79ba16309029879b0678dc0525b0a56eef5e4acf.tar.gz | |
imx: cortexa53: add 'gateworks,imx8m*' to sysupgrade board checks
The upstream device-tree files are now using 'gateworks' instead of 'gw'
for compatible. Add this pattern so that the newer boards support
sysupgrade.
Signed-off-by: Tim Harvey <tharvey@gateworks.com>
Link: https://github.com/openwrt/openwrt/pull/17964
(cherry picked from commit ee73d35fbe0f18bfd0f710008de369236a220510)
Link: https://github.com/openwrt/openwrt/pull/18093
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rwxr-xr-x | target/linux/imx/cortexa53/base-files/lib/upgrade/platform.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/target/linux/imx/cortexa53/base-files/lib/upgrade/platform.sh b/target/linux/imx/cortexa53/base-files/lib/upgrade/platform.sh index c59a69421a..f97b55f789 100755 --- a/target/linux/imx/cortexa53/base-files/lib/upgrade/platform.sh +++ b/target/linux/imx/cortexa53/base-files/lib/upgrade/platform.sh @@ -12,6 +12,7 @@ platform_check_image() { local board=$(board_name) case "$board" in + gateworks,imx8m*|\ gw,imx8m*) return 0 ;; @@ -25,6 +26,7 @@ platform_do_upgrade() { local board=$(board_name) case "$board" in + gateworks,imx8m*|\ gw,imx8m*) export_bootdevice && export_partdevice diskdev 0 || { echo "Unable to find root device." @@ -41,6 +43,7 @@ platform_copy_config() { local partdev case "$board" in + gateworks,imx8m*|\ gw,imx8m*) export_partdevice partdev 1 && { v "Storing $UPGRADE_BACKUP on /dev/$partdev..." |