diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-04-02 23:06:17 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-04-02 23:06:17 +0000 |
commit | 683076e12a39a2ef0ffb742c17e92deec67937e1 (patch) | |
tree | cd6f391a067df9b80749ed5c1ccf2e17c1bb7e0e /chapter05 | |
parent | eeeea351dc34b7d364e3813bde2c6b4f0ff2ba53 (diff) |
Removed makedev
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@402 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/makedev-exp.xml | 18 | ||||
-rw-r--r-- | chapter05/makedev-inst.xml | 26 | ||||
-rw-r--r-- | chapter05/makedev.xml | 9 |
3 files changed, 0 insertions, 53 deletions
diff --git a/chapter05/makedev-exp.xml b/chapter05/makedev-exp.xml deleted file mode 100644 index f3d4ff980..000000000 --- a/chapter05/makedev-exp.xml +++ /dev/null @@ -1,18 +0,0 @@ -<sect2> -<title>Command explanations</title> - -<para> -<userinput>sed "s/# 9/9/" MAKEDEV >/dev/MAKEDEV:</userinput> By -default the Makedev script only creates the hda1-hda8 and hdb1-hdb8 -devices. By replacing "# 9" by "9"'s in the MAKEDEV script, it will -create hda1-hda20, hdb1-hdb20 and possible others (like hdc and hdd) -</para> - -<para> -<userinput>chmod 754 /dev/MAKEDEV:</userinput> This sets the permissions -of the MAKEDEV script to mode 754 which makes it executable only for -owner and group and readable by everybody. -</para> - -</sect2> - diff --git a/chapter05/makedev-inst.xml b/chapter05/makedev-inst.xml deleted file mode 100644 index c6d2e8ec1..000000000 --- a/chapter05/makedev-inst.xml +++ /dev/null @@ -1,26 +0,0 @@ -<sect2> -<title>Installation of MAKEDEV</title> - -<para> -Install MAKEDEV by running the following commands: -</para> - -<blockquote><literallayout> - - <userinput>sed s/"# 9"/9/ MAKEDEV >$LFS/dev/MAKEDEV - &&</userinput> - <userinput>cd $LFS/dev &&</userinput> - <userinput>chmod 754 MAKEDEV &&</userinput> - <userinput>cp MAKEDEV MAKEDEV-temp &&</userinput> - <userinput>patch -Ni $LFS/usr/src/MAKEDEV-2.5.patch</userinput> - - -</literallayout></blockquote> - -<para> -The actual creation of the device files in $LFS/dev will be taken care -of in chapter 6. -</para> - -</sect2> - diff --git a/chapter05/makedev.xml b/chapter05/makedev.xml deleted file mode 100644 index 81e49a3b7..000000000 --- a/chapter05/makedev.xml +++ /dev/null @@ -1,9 +0,0 @@ -<sect1 id="ch05-makedev"> -<title>Installing Makedev</title> - -&c5-makedev-inst; -&c5-makedev-exp; -&aa-makedev-desc; - -</sect1> - |