aboutsummaryrefslogtreecommitdiffstats
path: root/chapter06
diff options
context:
space:
mode:
authorMatthew Burgess <matthew@linuxfromscratch.org>2005-08-14 15:09:25 +0000
committerMatthew Burgess <matthew@linuxfromscratch.org>2005-08-14 15:09:25 +0000
commit4fa614477d8dd140be5e9957c9a1cd4fdd732416 (patch)
tree3846561bea141d0a52d39542125160adf2c4fa5b /chapter06
parent64fc68abb92ef3a69efad0c8c411dd6862d048c5 (diff)
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
Diffstat (limited to 'chapter06')
-rw-r--r--chapter06/grub.xml15
1 files changed, 8 insertions, 7 deletions
diff --git a/chapter06/grub.xml b/chapter06/grub.xml
index 2e4c9a2d2..1e852896a 100644
--- a/chapter06/grub.xml
+++ b/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>