diff options
author | Stan Grishin <stangri@melmac.ca> | 2024-09-22 17:45:28 +0000 |
---|---|---|
committer | Stan Grishin <stangri@melmac.ca> | 2024-09-22 17:45:54 +0000 |
commit | b884bf4f47e5bea487a2f0962976bd373ffa727f (patch) | |
tree | 58fb074551c0b41b2e6377f0833d0a4aa2d34f47 /applications/luci-app-advanced-reboot/root/usr/share | |
parent | c360e3742c79cb6276f39ed769a3a0fc9dda87da (diff) |
luci-app-advanced-reboot: update to 1.0.1-13
* update copyright
* update license
* split version string into PKG_VERSION and PKG_RELEASE for APK compatibility
* update upstream URL link
* add menuconfig title/version info
* update README
* add support for:
* Linksys MX4200v1 (Thanks @innovara)
* Linksys MX4200v2 (Thanks @innovara)
* Linksys MX4300 (Thanks @PIPIPIG233666)
Signed-off-by: Stan Grishin <stangri@melmac.ca>
Diffstat (limited to 'applications/luci-app-advanced-reboot/root/usr/share')
3 files changed, 42 insertions, 0 deletions
diff --git a/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v1.json b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v1.json new file mode 100644 index 0000000000..01213849aa --- /dev/null +++ b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v1.json @@ -0,0 +1,14 @@ +{ + "vendorName": "Linksys", + "deviceName": "MX4200v1", + "boardNames": [ "linksys,mx4200v1" ], + "partition1MTD": "mtd21", + "partition2MTD": "mtd23", + "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-mx4200v2.json b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v2.json new file mode 100644 index 0000000000..44e8d3c80d --- /dev/null +++ b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v2.json @@ -0,0 +1,14 @@ +{ + "vendorName": "Linksys", + "deviceName": "MX4200v2", + "boardNames": [ "linksys,mx4200v2" ], + "partition1MTD": "mtd21", + "partition2MTD": "mtd23", + "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-mx4300.json b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4300.json new file mode 100644 index 0000000000..8692c6d2b2 --- /dev/null +++ b/applications/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4300.json @@ -0,0 +1,14 @@ +{ + "vendorName": "Linksys", + "deviceName": "MX4300", + "boardNames": [ "linksys,mx4300" ], + "partition1MTD": "mtd21", + "partition2MTD": "mtd23", + "labelOffset": 192, + "bootEnv1": "boot_part", + "bootEnv1Partition1Value": 1, + "bootEnv1Partition2Value": 2, + "bootEnv2": null, + "bootEnv2Partition1Value": null, + "bootEnv2Partition2Value": null +} |