Changeset e324066


Ignore:
Timestamp:
03/31/2006 04:51:06 PM (18 years ago)
Author:
Ken Moffat <ken@…>
Children:
0b528e48
Parents:
10c176b
Message:

Populate /dev/ sufficiently for grub.

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

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • chapter01/changelog.xml

    r10c176b re324066  
    3636    </listitem>
    3737-->
     38
     39    <listitem>
     40      <para>March 31, 2006</para>
     41      <itemizedlist>
     42        <listitem>
     43          <para>[ken] - Add Alexander's command to sufficiently populate 
     44          /dev now that udevstart has gone.</para>
     45        </listitem>
     46      </itemizedlist>
     47    </listitem>
    3848
    3949    <listitem>
  • chapter08/grub.xml

    r10c176b re324066  
    2222  other architectures should be available in the usual resource-specific
    2323  locations for those architectures.</para>
     24
     25  <para>Normally, we can rely on Udev to create all the necessary devices,
     26  but in chroot that is not true.  Grub will need to access the disk
     27  devices, the following command will create them.</para>
     28
     29<screen><userinput>for DEVICE in /sys/block/*/dev /sys/block/*/*/dev ; do
     30     IFS=: read MAJOR MINOR &lt;$DEVICE
     31     mknod /dev/`basename ${DEVICE%/dev}` b $MAJOR $MINOR
     32done</userinput></screen>
    2433
    2534  <para>Boot loading can be a complex area, so a few cautionary
  • general.ent

    r10c176b re324066  
    11<?xml version="1.0" encoding="ISO-8859-1"?>
    2 <!ENTITY version "udev_update-20060330">
    3 <!ENTITY releasedate "March 30, 2006">
     2<!ENTITY version "udev_update-20060331">
     3<!ENTITY releasedate "March 31, 2006">
    44<!ENTITY milestone "6.2">
    55<!ENTITY generic-version "udev_update"> <!-- Use "development", "testing", or "x.y[-pre{x}]" -->
Note: See TracChangeset for help on using the changeset viewer.