Changeset d8efcad


Ignore:
Timestamp:
09/26/2011 04:40:50 PM (13 years ago)
Author:
Bruce Dubbs <bdubbs@…>
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, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
6d8e177
Parents:
240ff15
Message:

Correct syntax in modules boot script

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9603 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Files:
4 edited

Legend:

Unmodified
Added
Removed
  • bootscripts/lfs/init.d/modules

    r240ff15 rd8efcad  
    3535      # Exit if there's no modules file or there are no
    3636      # valid entries
    37       [ -r /etc/sysconfig/modules ]                    || exit 0
    38       [ $(egrep -qv '^($|#)' /etc/sysconfig/modules) ] || exit 0
     37      [ -r /etc/sysconfig/modules ]                || exit 0
     38      $(egrep -qv '^($|#)' /etc/sysconfig/modules) || exit 0
    3939
    4040      log_info_msg "Loading modules:"
  • chapter01/changelog.xml

    r240ff15 rd8efcad  
    3737
    3838-->
     39    <listitem>
     40      <para>2011-09-26</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[bdubbs] - Correct syntax in modules boot script.</para>
     44        </listitem>
     45      </itemizedlist>
     46    </listitem>
     47
    3948    <listitem>
    4049      <para>2011-09-23</para>
  • general.ent

    r240ff15 rd8efcad  
    1 <!ENTITY version "SVN-20110923">
    2 <!ENTITY releasedate "Sep 23, 2011">
     1<!ENTITY version "SVN-20110926">
     2<!ENTITY releasedate "Sep 26, 2011">
    33<!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not &ndash; -->
    44<!ENTITY milestone "7.0">
  • packages.ent

    r240ff15 rd8efcad  
    299299<!ENTITY less-ch6-sbu "less than 0.1 SBU">
    300300
    301 <!ENTITY lfs-bootscripts-version "20110923">                 <!-- Scripts depend on this format -->
     301<!ENTITY lfs-bootscripts-version "20110926">                 <!-- Scripts depend on this format -->
    302302<!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">         <!-- Updated in Makefile -->
    303303<!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
Note: See TracChangeset for help on using the changeset viewer.