[openwrt/openwrt] sysfsutils: Define START early in file
LEDE Commits
lede-commits at lists.infradead.org
Mon Sep 26 09:58:56 PDT 2022
ldir pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/dafa6630125ce92967792d177b02c38b8e64e293
commit dafa6630125ce92967792d177b02c38b8e64e293
Author: Kevin Darbyshire-Bryant <ldir at darbyshire-bryant.me.uk>
AuthorDate: Mon Sep 26 09:57:43 2022 +0100
sysfsutils: Define START early in file
The luci ucode rewrite exposed the definition of START as being over 1K
from start of file. Initial versions limited the search for START &
STOP to within the 1st 1K of a file. Whilst the search has been
expanded, it doesn't do any harm to define START early in the file like
all other init scripts seen so far.
Signed-off-by: Kevin Darbyshire-Bryant <ldir at darbyshire-bryant.me.uk>
---
package/libs/sysfsutils/Makefile | 2 +-
package/libs/sysfsutils/files/sysfsutils | 3 ++-
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/package/libs/sysfsutils/Makefile b/package/libs/sysfsutils/Makefile
index 8ce9a40f91..ff676308da 100644
--- a/package/libs/sysfsutils/Makefile
+++ b/package/libs/sysfsutils/Makefile
@@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=sysfsutils
PKG_VERSION:=2.1.0
-PKG_RELEASE:=3
+PKG_RELEASE:=4
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=@SF/linux-diag
diff --git a/package/libs/sysfsutils/files/sysfsutils b/package/libs/sysfsutils/files/sysfsutils
index 0305ca82a9..3c5b35e78d 100644
--- a/package/libs/sysfsutils/files/sysfsutils
+++ b/package/libs/sysfsutils/files/sysfsutils
@@ -4,6 +4,8 @@
# Based on Debian's script /etc/init.d/sysfsutils by
# Martin Pitt <mpitt at debian.org>
+START=11
+
load_conffile() {
FILE="$1"
sed 's/#.*$//; /^[[:space:]]*$/d;
@@ -39,7 +41,6 @@ load_conffile() {
}
}
-START=11
start() {
for file in /etc/sysfs.conf /etc/sysfs.d/*.conf; do
[ -r "$file" ] || continue
More information about the lede-commits
mailing list