Changeset 64e8131 for chapter10/grub.xml


Ignore:
Timestamp:
08/27/2023 03:06:02 AM (11 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
xry111/arm64, xry111/arm64-12.0
Children:
e08ba0a
Parents:
9a5dab1 (diff), 11cfb5b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge remote-tracking branch 'origin/trunk' into xry111/arm64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter10/grub.xml

    r9a5dab1 r64e8131  
    2424    <para>
    2525      If you've installed GRUB for UEFI with optional dependencies following
    26       BLFS, you should skip this page, and configure GRUB with UEFI support
     26      BLFS, you should skip the instructions in this page but still learn the
     27      syntax of <filename>grub.cfg</filename> and the method to specify
     28      a partition in the file from this page, and configure GRUB with UEFI
    2729      using the instructions provided in
    2830      <ulink url="&blfs-book;postlfs/grub-setup.html">the BLFS page</ulink>,
     
    212214set timeout=5
    213215
     216insmod part_gpt
    214217insmod ext2
    215218set root=(hd0,2)
     
    221224}</literal>
    222225EOF</userinput></screen>
     226
     227    <para>
     228      The <command>insmod</command> commands load the
     229      <application>GRUB</application> modules named
     230      <filename>part_gpt</filename> and <filename>ext2</filename>.
     231      Despite the naming, <filename>ext2</filename> actually supports
     232      <systemitem class='filesystem'>ext2</systemitem>,
     233      <systemitem class='filesystem'>ext3</systemitem>, and
     234      <systemitem class='filesystem'>ext4</systemitem> filesystems.
     235      The <command>grub-install</command> command has embedded some modules
     236      into the main <application>GRUB</application> image (installed into
     237      the MBR or the GRUB BIOS partition) to access the other modules
     238      (in <filename class='directory'>/boot/grub/i386-pc</filename>) without
     239      a chicken-or-egg issue, so with a typical configuration these two
     240      modules are already embedded and those two <command>insmod</command>
     241      commands will do nothing.  But they do no harm anyway, and they may
     242      be needed with some rare configurations.
     243    </para>
    223244
    224245    <note><para>From <application>GRUB</application>'s perspective, the
Note: See TracChangeset for help on using the changeset viewer.