瀏覽代碼

Add sed to prevent grub's UFS size test being run

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@6685 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Matthew Burgess 20 年之前
父節點
當前提交
4fa614477d
共有 2 個文件被更改,包括 11 次插入7 次删除
  1. 3 0
      chapter01/changelog.xml
  2. 8 7
      chapter06/grub.xml

+ 3 - 0
chapter01/changelog.xml

@@ -113,6 +113,9 @@ First a summary, then a detailed log.</para>
 </itemizedlist>
 </listitem>
 
+<listitem><para>August 14th, 2005 [matt]: Add a sed to prevent the UFS test
+from being run (fixes bug 1595).</para></listitem>
+
 <listitem><para>August 14th, 2005 [matt]: Added patch to install documentation
 for bzip2 (fixes bug 1603).</para>
 </listitem>

+ 8 - 7
chapter06/grub.xml

@@ -46,13 +46,14 @@ unset them when building GRUB.</para>
 <screen><userinput>make</userinput></screen>
 
 <para>To test the results, issue:
-<userinput>make check</userinput>.</para>
-
-<para>Note that the test results will always show the error
-<quote>ufs2_stage1_5 is too big.</quote> This is due to a compiler
-issue, but can be ignored unless you plan to boot from an UFS
-partition. The partitions are normally only used by Sun
-workstations.</para>
+<userinput>sed -i '/ufs2/d' stage2/size_test &amp;&amp;
+make check</userinput>.</para>
+
+<para>The UFS test is known to fail due to a compiler issue.  The failure
+prevents the rest of the tests from being run, so the <command>sed</command>
+command is used to avoid the failure.  The UFS test failure can be ignored
+unless you plan to boot from a UFS partition.  The partitions are normally only
+used by Sun workstations.</para>
 
 <para>Install the package:</para>