Browse Source

Fixes to console script

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9601 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Bruce Dubbs 14 years ago
parent
commit
620c6d09e7
4 changed files with 15 additions and 6 deletions
  1. 3 3
      bootscripts/lfs/init.d/console
  2. 9 0
      chapter01/changelog.xml
  3. 2 2
      general.ent
  4. 1 1
      packages.ent

+ 3 - 3
bootscripts/lfs/init.d/console

@@ -39,8 +39,8 @@ function is_true()
 
 # See if we need to do anything
 if [ -z "${KEYMAP}"         ] && [ -z "${KEYMAP_CORRECTIONS}" ] &&
-   [ -z "${FONT}"           ] && [ is_true "${UNICODE}"       ] &&
-   [ -z "${LEGACY_CHARSET}" ]; then 
+   [ -z "${FONT}"           ] && [ -z "${LEGACY_CHARSET}"     ] &&     
+    is_true "${UNICODE}"; then 
    exit 0
 fi
 
@@ -80,7 +80,7 @@ case "${1}" in
       done
 
       # Set the font (if not already set above) and the keymap
-      [ "${use_fb}" == "1" || [ -z "${FONT}" ] || setfont $FONT || failed=1
+      [ "${use_fb}" == "1" ] || [ -z "${FONT}" ] || setfont $FONT || failed=1
 
       [ -z "${KEYMAP}" ] ||
          loadkeys ${KEYMAP} >/dev/null 2>&1 ||

+ 9 - 0
chapter01/changelog.xml

@@ -36,6 +36,15 @@
     </listitem>
 
 -->
+    <listitem>
+      <para>2011-09-21</para>
+      <itemizedlist>
+        <listitem>
+          <para>[bdubbs] - Updates to lfs-bootscripts console script.</para>
+        </listitem>
+      </itemizedlist>
+    </listitem>
+
     <listitem>
       <para>2011-09-21</para>
       <itemizedlist>

+ 2 - 2
general.ent

@@ -1,5 +1,5 @@
-<!ENTITY version "SVN-20110921">
-<!ENTITY releasedate "Sep 21, 2011">
+<!ENTITY version "SVN-20110922">
+<!ENTITY releasedate "Sep 22, 2011">
 <!ENTITY copyrightdate "1999-2011"><!-- jhalfs needs a literal dash, not &ndash; -->
 <!ENTITY milestone "7.0">
 <!ENTITY generic-version "development"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->

+ 1 - 1
packages.ent

@@ -298,7 +298,7 @@
 <!ENTITY less-ch6-du "3.5 MB">
 <!ENTITY less-ch6-sbu "less than 0.1 SBU">
 
-<!ENTITY lfs-bootscripts-version "20110921">                 <!-- Scripts depend on this format -->
+<!ENTITY lfs-bootscripts-version "20110922">                 <!-- Scripts depend on this format -->
 <!ENTITY lfs-bootscripts-size "BOOTSCRIPTS-SIZE KB">         <!-- Updated in Makefile -->
 <!ENTITY lfs-bootscripts-url "&downloads-root;lfs-bootscripts-&lfs-bootscripts-version;.tar.bz2">
 <!ENTITY lfs-bootscripts-md5 "BOOTSCRIPTS-MD5SUM">           <!-- Updated in Makefile -->