Changeset e9ba8aa8 for chapter08


Ignore:
Timestamp:
01/16/2012 06:34:31 PM (12 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, 7.1, 7.2, 7.3, 7.4, 7.5, 7.5-systemd, 7.6, 7.6-systemd, 7.7, 7.7-systemd, 7.8, 7.8-systemd, 7.9, 7.9-systemd, 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:
f70b664
Parents:
6c3ab2e
Message:

Change bootscripts to use devtmpfs for /dev.
Move mounting of /dev to mountvirtfs and ensure /dev gets placed in /etc/mtab.
Change fstab and kernel configuration sections to reflect these changes.

git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9710 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689

Location:
chapter08
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • chapter08/fstab.xml

    r6c3ab2e re9ba8aa8  
    2323<literal># Begin /etc/fstab
    2424
    25 # file system  mount-point  type   options         dump  fsck
    26 #                                                        order
     25# file system  mount-point  type     options             dump  fsck
     26#                                                              order
    2727
    28 /dev/<replaceable>&lt;xxx&gt;</replaceable>     /            <replaceable>&lt;fff&gt;</replaceable>  defaults        1     1
    29 /dev/<replaceable>&lt;yyy&gt;</replaceable>     swap         swap   pri=1           0     0
    30 proc           /proc        proc   defaults        0     0
    31 sysfs          /sys         sysfs  defaults        0     0
    32 devpts         /dev/pts     devpts gid=4,mode=620  0     0
    33 tmpfs          /run         tmpfs  defaults        0     0
     28/dev/<replaceable>&lt;xxx&gt;</replaceable>     /            <replaceable>&lt;fff&gt;</replaceable>    defaults            1     1
     29/dev/<replaceable>&lt;yyy&gt;</replaceable>     swap         swap     pri=1               0     0
     30proc           /proc        proc     nosuid,noexec,nodev 0     0
     31sysfs          /sys         sysfs    nosuid,noexec,nodev 0     0
     32devpts         /dev/pts     devpts   gid=4,mode=620      0     0
     33tmpfs          /run         tmpfs    defaults            0     0
     34devtmpfs       /dev         devtmpfs mode=0755,nosuid    0     0
     35
    3436# End /etc/fstab</literal>
    3537EOF</userinput></screen>
  • chapter08/kernel.xml

    r6c3ab2e re9ba8aa8  
    5959    <para>Configure the kernel via a menu-driven interface. For general
    6060    information on kernel configuration see <ulink
    61     url="&hints-root;kernel-configuration.txt"/>.  BLFS has some   information
     61    url="&hints-root;kernel-configuration.txt"/>.  BLFS has some information
    6262    regarding particular kernel configuration requirements of packages outside
    6363    of LFS at <ulink
    64     url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>:</para>
     64    url="&blfs-root;view/svn/longindex.html#kernel-config-index"/>.  </para>
     65
     66    <note><para>Due to recent changes in <application>udev</application>, be sure to
     67    select:</para>
     68   
     69    <screen role="nodump">Device Drivers  ---&gt;
     70  Generic Driver Options  ---&gt;
     71     Maintain a devtmpfs filesystem to mount at /dev</screen></note>
    6572
    6673<screen role="nodump"><userinput>make LANG=<replaceable>&lt;host_LANG_value&gt;</replaceable> LC_ALL= menuconfig</userinput></screen>
Note: See TracChangeset for help on using the changeset viewer.