Changeset 76b06f6 for BOOK/chroot
- Timestamp:
- Sep 24, 2013, 11:53:17 AM (11 years ago)
- Children:
- 2e9ccbe
- Parents:
- 111b12a
- Location:
- BOOK/chroot
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/chroot/common/devices.xml
r111b12a r76b06f6 30 30 31 31 <para>This file—<filename>/etc/fstab</filename>—has not 32 been created yet (unless using the boot method), but is also not required 33 for the file systems to be properly mounted. The warning can be safely 34 ignored.</para> 32 been created yet but is also not required for the file systems to be 33 properly mounted. As such, the warning can be safely ignored.</para> 35 34 36 35 </sect2> -
BOOK/chroot/common/kernfs.xml
r111b12a r76b06f6 36 36 <para>Two device nodes, /dev/console and /dev/null, are required to be 37 37 present on the filesystem. These are needed by the kernel even before 38 starting Eudev early in the boot process, so we create them here:</para>38 starting Udev early in the boot process, so we create them here:</para> 39 39 40 40 <screen><userinput>mknod -m 600 ${CLFS}/dev/console c 5 1 … … 42 42 43 43 <para>Once the system is complete and booting, the rest of our device 44 nodes are created by the Eudev package. Since this package is not44 nodes are created by the Udev package. Since this package is not 45 45 available to us right now, we must take other steps to provide device 46 46 nodes under on the CLFS filesystem. We will use the <quote>bind</quote> … … 54 54 for each of these now:</para> 55 55 56 <screen><userinput>if [ -h ${CLFS}/dev/shm ]; then 57 link=$(readlink ${CLFS}/dev/shm) 58 mkdir -p ${CLFS}/$link 59 mount -f -vt tmpfs shm ${CLFS}/$link 60 unset link 61 else 62 mount -f -vt tmpfs shm ${CLFS}/dev/shm 63 fi 56 <screen><userinput>mount -f -vt tmpfs tmpfs ${CLFS}/dev/shm 64 57 mount -f -vt devpts -o gid=&gid-tty;,mode=620 devpts ${CLFS}/dev/pts</userinput></screen> 65 58 -
BOOK/chroot/common/util-linux.xml
r111b12a r76b06f6 29 29 <screen os="b"><userinput>./configure --prefix=/tools \ 30 30 --build=${CLFS_HOST} --host=${CLFS_TARGET} \ 31 --disable-makeinstall-chown --disable-su --disable-login</userinput></screen> 31 --disable-makeinstall-chown --disable-su --disable-login \ 32 --config-cache</userinput></screen> 32 33 33 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" -
BOOK/chroot/multilib/util-linux.xml
r111b12a r76b06f6 29 29 <screen os="be"><userinput>CC="${CC} ${BUILD64}" ./configure --prefix=/tools \ 30 30 --build=${CLFS_HOST} --host=${CLFS_TARGET} \ 31 --disable-makeinstall-chown --disable-login --disable-su</userinput></screen> 31 --disable-makeinstall-chown --disable-login --disable-su \ 32 --config-cache</userinput></screen> 32 33 33 34 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" -
BOOK/chroot/x86/before-chroot.xml
r111b12a r76b06f6 35 35 <command>config.guess</command>:</para> 36 36 37 <screen><userinput> build-aux/config.guess</userinput></screen>37 <screen><userinput>lib/config.guess</userinput></screen> 38 38 39 39 <para>If the output of that command does not equal what is in … … 55 55 directory:</para> 56 56 57 <screen><userinput>setarch linux32 build-aux/config.guess</userinput></screen>57 <screen><userinput>setarch linux32 lib/config.guess</userinput></screen> 58 58 59 59 <para>If the output of the command above equals what is in … … 125 125 directory:</para> 126 126 127 <screen os="uui"><userinput> build-aux/config.guess</userinput></screen>127 <screen os="uui"><userinput>lib/config.guess</userinput></screen> 128 128 129 129 <para os="uuj">The output of the above command should be the same as the
Note:
See TracChangeset
for help on using the changeset viewer.