Changeset b875e19
- Timestamp:
- 03/25/2017 05:48:04 AM (6 years ago)
- Branches:
- 10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 8.1, 8.1-rc1, 8.1-rc2, 8.2, 8.2-rc1, 8.3, 8.3-rc1, 8.3-rc2, 8.4, 8.4-rc1, 9.0, 9.0-rc1, 9.1, 9.1-rc1, arm, cross-chap5, ml-11.0, multilib, old-trunk, s6-init, trunk, xry111/arm64, xry111/clfs-ng, xry111/git-transition, xry111/glibc-2.34, xry111/glibc-2.37, xry111/kcfg-revise, xry111/lfs-next, xry111/pip3, xry111/queue-11.3, xry111/rust-wip-20221008, xry111/tester-nohack, xry111/usr-move
- Children:
- c9ac649
- Parents:
- d83fd51
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
bootscripts/ChangeLog
rd83fd51 rb875e19 1 2017-03-25 DJ Lucas <dj@linuxfromscratch.org> 2 * Bash-4.4 changes no longer allow continue in function to pass to calling 3 loop. 4 1 5 2015-02-22 Bruce Dubbs <bdubbs@linuxfromscratch.org> 2 6 * Cosmetic changes to network scripts' output -
bootscripts/lfs/init.d/rc
rd83fd51 rb875e19 38 38 if [ ! -f ${i} ]; then 39 39 log_warning_msg "${i} is not a valid symlink." 40 continue40 SCRIPT_STAT="1" 41 41 fi 42 42 43 43 if [ ! -x ${i} ]; then 44 44 log_warning_msg "${i} is not executable, skipping." 45 continue45 SCRIPT_STAT="1" 46 46 fi 47 47 } … … 151 151 do 152 152 check_script_status 153 if [ "${SCRIPT_STAT}" == "1" ]; then 154 SCRIPT_STAT="0" 155 continue 156 fi 153 157 154 158 suffix=${i#/etc/rc.d/rc$runlevel.d/K[0-9][0-9]} … … 193 197 194 198 check_script_status 199 if [ "${SCRIPT_STAT}" == "1" ]; then 200 SCRIPT_STAT="0" 201 continue 202 fi 195 203 196 204 case ${runlevel} in -
bootscripts/lfs/lib/services/init-functions
rd83fd51 rb875e19 54 54 BOOTLOG=/run/bootlog 55 55 KILLDELAY=3 56 SCRIPT_STAT="0" 56 57 57 58 # Set any user specified environment variables e.g. HEADLESS -
chapter01/changelog.xml
rd83fd51 rb875e19 43 43 appropriate for the entry or if needed the entire day's listitem. 44 44 --> 45 <listitem> 46 <para>2017-03-25</para> 47 <itemizedlist> 48 <listitem> 49 <para>[dj] - Update to lfs-bootscripts-20170825. Fix a scope issue in 50 the rc script. Thanks to "quesker" in #lfs-support for the report and 51 subsequent testing.</para> 52 </listitem> 53 </itemizedlist> 54 </listitem> 55 45 56 <listitem> 46 57 <para>2017-03-18</para> -
general.ent
rd83fd51 rb875e19 1 <!ENTITY version "SVN-201703 18">1 <!ENTITY version "SVN-20170325"> 2 2 <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; 3 3 Change to x.y for release but not -rc releases --> 4 4 <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> 5 5 6 <!ENTITY versiond "201703 18-systemd">6 <!ENTITY versiond "20170325-systemd"> 7 7 <!ENTITY short-versiond "systemd"> 8 8 <!ENTITY generic-versiond "systemd"> 9 9 10 <!ENTITY releasedate "March 18, 2017">10 <!ENTITY releasedate "March 25, 2017"> 11 11 12 12 <!ENTITY copyrightdate "1999-2017"><!-- jhalfs needs a literal dash, not – --> -
packages.ent
rd83fd51 rb875e19 359 359 <!ENTITY less-ch6-sbu "less than 0.1 SBU"> 360 360 361 <!ENTITY lfs-bootscripts-version "201703 18"> <!-- Scripts depend on this format -->361 <!ENTITY lfs-bootscripts-version "20170325"> <!-- Scripts depend on this format --> 362 362 <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB"> 363 363 <!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
Note:
See TracChangeset
for help on using the changeset viewer.