diff options
author | Chris Staub <chris@linuxfromscratch.org> | 2015-01-18 22:40:35 +0000 |
---|---|---|
committer | Chris Staub <chris@linuxfromscratch.org> | 2015-01-18 22:40:35 +0000 |
commit | cff604f66156a8e1b4ec45acc3562f4aef67b6f9 (patch) | |
tree | b0492670e486bb96bf959718b2c209bbeeb04677 | |
parent | ea3c5b503b224a30221278e67461f7345db58f68 (diff) |
Changed GRUB commands explanations to a format consistent with the rest of the book
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@10815 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
-rw-r--r-- | chapter06/grub.xml | 24 |
1 files changed, 20 insertions, 4 deletions
diff --git a/chapter06/grub.xml b/chapter06/grub.xml index 545508dcb..cd730a3d5 100644 --- a/chapter06/grub.xml +++ b/chapter06/grub.xml @@ -49,10 +49,26 @@ --disable-efiemu \ --disable-werror</userinput></screen> - <para>The --disable-werror option allows the build to complete with - warnings introduced by more recent flex versions. The other --disable - switches minimize what is built by disabling features and testing programs - not needed for LFS.</para> + <variablelist> + <title>The meaning of the new configure options:</title> + + <varlistentry> + <term><parameter>--disable-werror</parameter></term> + <listitem> + <para>This allows the build to complete with warnings introduced + by more recent Flex versions.</para> + </listitem> + </varlistentry> + + <varlistentry> + <term><parameter>--disable-grub-emu-usb --disable-efiemu</parameter></term> + <listitem> + <para>These options minimize what is built by disabling features and + testing programs not needed for LFS.</para> + </listitem> + </varlistentry> + + </variablelist> <para>Compile the package:</para> |