diff options
author | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-08 03:00:54 +0000 |
---|---|---|
committer | Gerard Beekmans <gerard@linuxfromscratch.org> | 2001-02-08 03:00:54 +0000 |
commit | c93a7a65cbd2d9fa836591210daac9e7baced20d (patch) | |
tree | c83794a874c9ae326e766deaa5ad57892dcd1acb /chapter05 | |
parent | 07a1fe7bc5f4ccdc670ff07c636768432d3d9675 (diff) |
Added Makedev to chapter 5
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@121 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'chapter05')
-rw-r--r-- | chapter05/makedev-inst.sgml | 27 | ||||
-rw-r--r-- | chapter05/makedev.sgml | 8 |
2 files changed, 35 insertions, 0 deletions
diff --git a/chapter05/makedev-inst.sgml b/chapter05/makedev-inst.sgml new file mode 100644 index 000000000..6555d3db2 --- /dev/null +++ b/chapter05/makedev-inst.sgml @@ -0,0 +1,27 @@ +<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>chmod 754 $LFS/dev/MAKEDEV &&</userinput> + <userinput>cp $LFS/dev/MAKEDEV $LFS/dev/MAKEDEV-temp + &&</userinput> + <userinput>cd $LFS/dev &&</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.sgml b/chapter05/makedev.sgml new file mode 100644 index 000000000..c567fe4c9 --- /dev/null +++ b/chapter05/makedev.sgml @@ -0,0 +1,8 @@ +<sect1 id="ch05-makedev"> +<title>Installing Makedev</title> + +&c5-pp-makedev-inst; +&aa-makedev-desc; + +</sect1> + |