Changeset 586feb7 in clfs-sysroot for BOOK/bootscripts/common
- Timestamp:
- Jul 2, 2006, 12:45:15 PM (18 years ago)
- Branches:
- master
- Children:
- 940e6b3
- Parents:
- 89c10a9
- Location:
- BOOK/bootscripts/common
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/bootscripts/common/bootscripts.xml
r89c10a9 r586feb7 28 28 <para>Install the package:</para> 29 29 30 <screen><userinput>make DESTDIR=${ LFS} install</userinput></screen>30 <screen><userinput>make DESTDIR=${CLFS} install</userinput></screen> 31 31 32 32 </sect2> -
BOOK/bootscripts/common/console.xml
r89c10a9 r586feb7 35 35 the configuration file with the following command:</para> 36 36 37 <screen><userinput>cat >${ LFS}/etc/sysconfig/console <<"EOF"37 <screen><userinput>cat >${CLFS}/etc/sysconfig/console <<"EOF" 38 38 <literal>KEYMAP="<replaceable>[arguments for loadkeys]</replaceable>" 39 39 FONT="<replaceable>[arguments for setfont]</replaceable>"</literal> … … 44 44 correct:</para> 45 45 46 <screen><userinput>cat >${ LFS}/etc/sysconfig/console <<"EOF"46 <screen><userinput>cat >${CLFS}/etc/sysconfig/console <<"EOF" 47 47 <literal>KEYMAP="es euro2" 48 48 FONT="lat9-16 -u iso01"</literal> … … 74 74 following keymap snippet to fix this issue:</para> 75 75 76 <screen><userinput>mkdir -p ${ LFS}/etc/kbd && cat > ${LFS}/etc/kbd/bs-sends-del <<"EOF"76 <screen><userinput>mkdir -p ${CLFS}/etc/kbd && cat > ${CLFS}/etc/kbd/bs-sends-del <<"EOF" 77 77 <literal> keycode 14 = Delete Delete Delete Delete 78 78 alt keycode 14 = Meta_Delete … … 87 87 snippet after the main keymap:</para> 88 88 89 <screen><userinput>cat >> ${ LFS}/etc/sysconfig/console <<"EOF"89 <screen><userinput>cat >> ${CLFS}/etc/sysconfig/console <<"EOF" 90 90 <literal>KEYMAP_CORRECTIONS="/etc/kbd/bs-sends-del"</literal> 91 91 EOF</userinput></screen> -
BOOK/bootscripts/common/hostname.xml
r89c10a9 r586feb7 22 22 and enter a hostname by running:</para> 23 23 24 <screen><userinput>echo "HOSTNAME=<replaceable>[lfs]</replaceable>" > ${ LFS}/etc/sysconfig/network</userinput></screen>24 <screen><userinput>echo "HOSTNAME=<replaceable>[lfs]</replaceable>" > ${CLFS}/etc/sysconfig/network</userinput></screen> 25 25 26 26 <para><replaceable>[lfs]</replaceable> needs to be replaced with the -
BOOK/bootscripts/common/hosts.xml
r89c10a9 r586feb7 50 50 <para>Create the <filename>/etc/hosts</filename> file by running:</para> 51 51 52 <screen><userinput>cat > ${ LFS}/etc/hosts << "EOF"52 <screen><userinput>cat > ${CLFS}/etc/hosts << "EOF" 53 53 <literal># Begin /etc/hosts (network card version) 54 54 … … 69 69 <filename>/etc/hosts</filename> file by running:</para> 70 70 71 <screen><userinput>cat > ${ LFS}/etc/hosts << "EOF"71 <screen><userinput>cat > ${CLFS}/etc/hosts << "EOF" 72 72 <literal># Begin /etc/hosts (no network card version) 73 73 -
BOOK/bootscripts/common/inputrc.xml
r89c10a9 r586feb7 37 37 using the following command:</para> 38 38 39 <screen><userinput>cat > ${ LFS}/etc/inputrc << "EOF"39 <screen><userinput>cat > ${CLFS}/etc/inputrc << "EOF" 40 40 <literal># Begin /etc/inputrc 41 41 # Modified by Chris Lynn <roryo@roryo.dynup.net> -
BOOK/bootscripts/common/network.xml
r89c10a9 r586feb7 39 39 file for the <filename class="devicefile">eth0</filename> device:</para> 40 40 41 <screen><userinput>cd ${ LFS}/etc/sysconfig/network-devices &&41 <screen><userinput>cd ${CLFS}/etc/sysconfig/network-devices && 42 42 mkdir ifconfig.eth0 && 43 43 cat > ifconfig.eth0/ipv4 << "EOF" … … 95 95 Create the file by running the following:</para> 96 96 97 <screen><userinput>cat > ${ LFS}/etc/resolv.conf << "EOF"97 <screen><userinput>cat > ${CLFS}/etc/resolv.conf << "EOF" 98 98 <literal># Begin /etc/resolv.conf 99 99 -
BOOK/bootscripts/common/profile.xml
r89c10a9 r586feb7 140 140 <filename>/etc/profile</filename> file:</para> 141 141 142 <screen><userinput>cat > ${ LFS}/etc/profile << "EOF"142 <screen><userinput>cat > ${CLFS}/etc/profile << "EOF" 143 143 <literal># Begin /etc/profile 144 144 -
BOOK/bootscripts/common/setclock.xml
r89c10a9 r586feb7 42 42 the following:</para> 43 43 44 <screen><userinput>cat > ${ LFS}/etc/sysconfig/clock << "EOF"44 <screen><userinput>cat > ${CLFS}/etc/sysconfig/clock << "EOF" 45 45 <literal># Begin /etc/sysconfig/clock 46 46 -
BOOK/bootscripts/common/udev-rules.xml
r89c10a9 r586feb7 30 30 sets:</para> 31 31 32 <screen os="b"><userinput>rm -vf ${ LFS}/etc/udev/rules.d/*</userinput></screen>32 <screen os="b"><userinput>rm -vf ${CLFS}/etc/udev/rules.d/*</userinput></screen> 33 33 34 34 <para os="c">Install the package:</para> 35 35 36 <screen os="d"><userinput>make DESTDIR=${ LFS} install</userinput></screen>36 <screen os="d"><userinput>make DESTDIR=${CLFS} install</userinput></screen> 37 37 38 38 </sect2>
Note:
See TracChangeset
for help on using the changeset viewer.