Changeset e787b1f for chapter08/grub.xml


Ignore:
Timestamp:
05/27/2016 07:55:47 PM (8 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 12.0, 12.0-rc1, 12.1, 12.1-rc1, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, arm, bdubbs/gcc13, ml-11.0, multilib, renodr/libudev-from-systemd, s6-init, trunk, xry111/arm64, xry111/arm64-12.0, xry111/clfs-ng, xry111/lfs-next, xry111/loongarch, xry111/loongarch-12.0, xry111/loongarch-12.1, xry111/mips64el, xry111/pip3, xry111/rust-wip-20221008, xry111/update-glibc
Children:
1aff37f
Parents:
cbd8bf0f
Message:

Update to dbus-1.10.8.
Update to e2fsprogs-1.43.
Update to gdbm-1.12.
Update to iproute2-4.6.0.
Update to make-4.2.
Update to systemd-230.

Add additional explanatory text for sytemctl and journalctl commands.
[chapter07/systemd-custom.xml]

git-svn-id: http://svn.linuxfromscratch.org/LFS/branches/merge@11078 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

File:
1 edited

Legend:

Unmodified
Added
Removed
  • chapter08/grub.xml

    rcbd8bf0f re787b1f  
    129129    <para>Generate <filename>/boot/grub/grub.cfg</filename>:</para>
    130130
    131     <screen><userinput>cat &gt; /boot/grub/grub.cfg &lt;&lt; "EOF"
     131    <screen revision="sysv"><userinput>cat &gt; /boot/grub/grub.cfg &lt;&lt; "EOF"
    132132<literal># Begin /boot/grub/grub.cfg
    133133set default=0
     
    141141}</literal>
    142142EOF</userinput></screen>
     143
     144    <screen revision="systemd"><userinput>cat &gt; /boot/grub/grub.cfg &lt;&lt; "EOF"
     145<literal># Begin /boot/grub/grub.cfg
     146set default=0
     147set timeout=5
     148
     149insmod ext2
     150set root=(hd0,2)
     151
     152menuentry "GNU/Linux, Linux &linux-version;-lfs-&versiond;" {
     153        linux   /boot/vmlinuz-&linux-version;-lfs-&versiond; root=/dev/sda2 ro
     154}</literal>
     155EOF</userinput></screen>
     156
    143157
    144158    <note><para>From <application>GRUB</application>'s perspective, the
Note: See TracChangeset for help on using the changeset viewer.