From: Adolf Belka Date: Sun, 24 Nov 2024 12:27:15 +0000 (+0100) Subject: sysvinit: Update to version 3.11 X-Git-Tag: v2.29-core191~14^2~56 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6320f1393481507c0abf8ab2aa796ced909f2c1;p=ipfire-2.x.git sysvinit: Update to version 3.11 - Update from version 3.10 to 3.11 - Update of rootfile not required - Changelog 3.11 * Some escape characters were included in the inittab manual page, but not displayed by the "man" command because they were not (ironically) properly escaped. This has been fixed. * Enabled chaining commands together in the inittab file. This allows the admin to run commands like "task1 && task2" or "task2 || task2" from the inittab file. * Fix typoes in halt manual page. Fixes provided by Bjarni Ingi Gislason. * Fix typos/markdown in fstab-decode manual page. Patch provided by Bjarni Ingi Gislason. Signed-off-by: Adolf Belka Signed-off-by: Arne Fitzenreiter --- diff --git a/lfs/sysvinit b/lfs/sysvinit index ff5577e5ee..d97c625549 100644 --- a/lfs/sysvinit +++ b/lfs/sysvinit @@ -24,7 +24,7 @@ include Config -VER = 3.10 +VER = 3.11 THISAPP = sysvinit-$(VER) DL_FILE = $(THISAPP).tar.xz @@ -40,7 +40,7 @@ objects = $(DL_FILE) $(DL_FILE) = $(DL_FROM)/$(DL_FILE) -$(DL_FILE)_BLAKE2 = 894f1ad140f1e92f4d4a2220a9abff6ba106d9f84ee0e001ee8d5a0f41a2877e08110d442a2bcd52efc5662838fae36835b067091d37b9f4d295b47c01c26153 +$(DL_FILE)_BLAKE2 = a7233509ec31ef6834e145d5912b2c1d3832bf63ffab6eb75c864cd2a9c4fe053b0e3a5abc20891c7d29596f95dd3aa518e69ad111d5586011fee37b4e23d7cb install : $(TARGET) @@ -70,7 +70,7 @@ $(subst %,%_BLAKE2,$(objects)) : $(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) @$(PREBUILD) @rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE) - cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/sysvinit-3.10_build_mountpoint.patch + cd $(DIR_APP) && patch -Np1 -i $(DIR_SRC)/src/patches/sysvinit-3.11_build_mountpoint.patch cd $(DIR_APP) && make $(MAKETUNING) cd $(DIR_APP) && make install @rm -rf $(DIR_APP) diff --git a/src/patches/sysvinit-3.10_build_mountpoint.patch b/src/patches/sysvinit-3.11_build_mountpoint.patch similarity index 100% rename from src/patches/sysvinit-3.10_build_mountpoint.patch rename to src/patches/sysvinit-3.11_build_mountpoint.patch