From: Stan Grishin Date: Thu, 6 Mar 2025 19:04:27 +0000 (+0000) Subject: luci-app-advanced-reboot: update to 1.0.1-21 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;h=476b64626d3d9bda66826cd164b3083c7fc65f66;p=project%2Fluci.git luci-app-advanced-reboot: update to 1.0.1-21 * add support for Linksys MR7500 (thanks @PIPIPIG233666) * add support for Linksys MX8500 (thanks @PIPIPIG233666) Signed-off-by: Stan Grishin --- diff --git a/applications/luci-app-advanced-reboot/Makefile b/applications/luci-app-advanced-reboot/Makefile index 868c51058e..5166242a8d 100644 --- a/applications/luci-app-advanced-reboot/Makefile +++ b/applications/luci-app-advanced-reboot/Makefile @@ -7,7 +7,7 @@ PKG_NAME:=luci-app-advanced-reboot PKG_LICENSE:=AGPL-3.0-or-later PKG_MAINTAINER:=Stan Grishin PKG_VERSION:=1.0.1 -PKG_RELEASE:=19 +PKG_RELEASE:=21 LUCI_TITLE:=Advanced Linksys Reboot Web UI LUCI_URL:=https://github.com/stangri/luci-app-advanced-reboot/ diff --git a/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mr7500.json b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mr7500.json new file mode 100644 index 0000000000..55cad93096 --- /dev/null +++ b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mr7500.json @@ -0,0 +1,14 @@ +{ + "vendorName": "Linksys", + "deviceName": "MR7500", + "boardNames": [ "linksys,mr7500" ], + "partition1MTD": "mtd13", + "partition2MTD": "mtd15", + "labelOffset": 192, + "bootEnv1": "boot_part", + "bootEnv1Partition1Value": 1, + "bootEnv1Partition2Value": 2, + "bootEnv2": null, + "bootEnv2Partition1Value": null, + "bootEnv2Partition2Value": null +} diff --git a/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx8500.json b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx8500.json new file mode 100644 index 0000000000..72dd673696 --- /dev/null +++ b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx8500.json @@ -0,0 +1,14 @@ +{ + "vendorName": "Linksys", + "deviceName": "MX8500", + "boardNames": [ "linksys,mx8500" ], + "partition1MTD": "mtd21", + "partition2MTD": "mtd23", + "labelOffset": 192, + "bootEnv1": "boot_part", + "bootEnv1Partition1Value": 1, + "bootEnv1Partition2Value": 2, + "bootEnv2": null, + "bootEnv2Partition1Value": null, + "bootEnv2Partition2Value": null +}