mirror of
https://github.com/openwrt/luci.git
synced 2025-10-09 06:21:19 +00:00
Makefile: - update SPDX license identified and copyright - update documentation link README: - add short README with the link to full documentation System View javascript: - switch from single to double quotes - update documentation link - more readable translateTable - better code readability for - callPowerOff - handlePowerOff - handleReboot - handleTogglePartition - handleAlternativeReboot - parsePartitions - some visual elements RPCD Script: - more resilient to unexpected CLI output - add debugger function to ease development/debugging - better check if `/var/alt_rom` is mounted before calling umount - better handling of MTD indices Device Support: - add Linksys MR7350 which slipped thru the cracks Signed-off-by: Stan Grishin <stangri@melmac.ca>
30 lines
952 B
Makefile
30 lines
952 B
Makefile
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
# Copyright 2017-2025 MOSSDeF, Stan Grishin (stangri@melmac.ca).
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-advanced-reboot
|
|
PKG_LICENSE:=AGPL-3.0-or-later
|
|
PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca>
|
|
PKG_VERSION:=1.1.0
|
|
PKG_RELEASE:=1
|
|
|
|
LUCI_TITLE:=Advanced Linksys Reboot Web UI
|
|
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.ca/luci-app-advanced-reboot/
|
|
LUCI_DEPENDS:=+luci-base +jshn
|
|
|
|
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
|