-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7317 from stangri/openwrt-23.05-luci-app-advanced…
…-reboot [23.05] luci-app-advanced-reboot: update to 1.0.1-15
- Loading branch information
Showing
7 changed files
with
88 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,30 @@ | ||
# Copyright 2017-2018 Stan Grishin (stangri@melmac.net) | ||
# This is free software, licensed under the GNU General Public License v3. | ||
# Copyright 2017-2024 MOSSDeF, Stan Grishin (stangri@melmac.ca). | ||
# This is free software, licensed under AGPL-3.0-or-later. | ||
|
||
include $(TOPDIR)/rules.mk | ||
|
||
PKG_LICENSE:=GPL-3.0-or-later | ||
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net> | ||
PKG_VERSION:=1.0.1-r10 | ||
PKG_NAME:=luci-app-advanced-reboot | ||
PKG_LICENSE:=AGPL-3.0-or-later | ||
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca> | ||
PKG_VERSION:=1.0.1 | ||
PKG_RELEASE:=15 | ||
|
||
LUCI_TITLE:=Advanced Linksys Reboot Web UI | ||
LUCI_URL:=https://docs.openwrt.melmac.net/luci-app-advanced-reboot/ | ||
LUCI_URL:=https://github.com/stangri/luci-app-advanced-reboot/ | ||
LUCI_DESCRIPTION:=Provides Web UI (found under System/Advanced Reboot) to reboot supported Linksys and ZyXEL routers to\ | ||
an alternative partition. Also provides Web UI to shut down (power off) your device. Supported dual-partition\ | ||
routers are listed at https://docs.openwrt.melmac.net/luci-app-advanced-reboot/ | ||
LUCI_DEPENDS:=+luci-mod-admin-full +jshn | ||
LUCI_PKGARCH:=all | ||
|
||
define Package/$(PKG_NAME)/config | ||
# shown in make menuconfig <Help> | ||
help | ||
$(LUCI_TITLE) | ||
. | ||
Version: $(PKG_VERSION)-$(PKG_RELEASE) | ||
endef | ||
|
||
include ../../luci.mk | ||
|
||
# call BuildPackage - OpenWrt buildroot signature |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Advanced Reboot Web UI (luci-app-advanced-reboot) | ||
# README | ||
|
||
README has been moved to [https://docs.openwrt.melmac.net/luci-app-advanced-reboot/](<https://docs.openwrt.melmac.net/luci-app-advanced-reboot/>). | ||
Documentation for this project is available at [https://docs.openwrt.melmac.net/luci-app-advanced-reboot/](https://docs.openwrt.melmac.net/luci-app-advanced-reboot/). |
14 changes: 14 additions & 0 deletions
14
...ons/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-ea6350v4.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"vendorName": "Linksys", | ||
"deviceName": "EA6350v4", | ||
"boardNames": [ "linksys,ea6350-v4" ], | ||
"partition1MTD": "mtd5", | ||
"partition2MTD": "mtd7", | ||
"labelOffset": 32, | ||
"bootEnv1": "boot_part", | ||
"bootEnv1Partition1Value": 1, | ||
"bootEnv1Partition2Value": 2, | ||
"bootEnv2": null, | ||
"bootEnv2Partition1Value": null, | ||
"bootEnv2Partition2Value": null | ||
} |
14 changes: 14 additions & 0 deletions
14
...ons/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v1.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
14 changes: 14 additions & 0 deletions
14
...ons/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4200v2.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
14 changes: 14 additions & 0 deletions
14
...tions/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-mx4300.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
14 changes: 14 additions & 0 deletions
14
...ations/luci-app-advanced-reboot/root/usr/share/advanced-reboot/devices/linksys-whw03.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"vendorName": "Linksys", | ||
"deviceName": "WHW03 (Velop)", | ||
"boardNames": [ "linksys,whw03" ], | ||
"partition1MTD": "mmcblk0p14", | ||
"partition2MTD": "mmcblk0p16", | ||
"labelOffset": 192, | ||
"bootEnv1": "boot_part", | ||
"bootEnv1Partition1Value": 1, | ||
"bootEnv1Partition2Value": 2, | ||
"bootEnv2": null, | ||
"bootEnv2Partition1Value": null, | ||
"bootEnv2Partition2Value": null | ||
} |