]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
sysvinit: Update to version 3.11
authorAdolf Belka <adolf.belka@ipfire.org>
Sun, 24 Nov 2024 12:27:15 +0000 (13:27 +0100)
committerArne Fitzenreiter <arne_f@ipfire.org>
Tue, 17 Dec 2024 08:09:30 +0000 (09:09 +0100)
- 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 <adolf.belka@ipfire.org>
Signed-off-by: Arne Fitzenreiter <arne_f@ipfire.org>
lfs/sysvinit
src/patches/sysvinit-3.11_build_mountpoint.patch [moved from src/patches/sysvinit-3.10_build_mountpoint.patch with 100% similarity]

index ff5577e5ee5b0567c20bcf06cf914c4f38041d9c..d97c625549459c3c02cdc96a522adbaa86c1e97a 100644 (file)
@@ -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)