Changeset 8520e58 in clfs-embedded for BOOK/beyond-clfs3
- Timestamp:
- Nov 22, 2006, 9:44:58 PM (18 years ago)
- Branches:
- master
- Children:
- 83ea4ad
- Parents:
- 3466794
- Location:
- BOOK/beyond-clfs3/common
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/beyond-clfs3/common/dropbear.xml
r3466794 r8520e58 31 31 <para os="a">Configure dropbear:</para> 32 32 33 <screen os="b"><userinput>./configure --prefix=/usr 34 cp -v options.h options.h.backup 35 sed -e "s@/dev/random@/dev/urandom@" options.h.backup > options.h 36 </userinput></screen> 33 <screen os="b"><userinput>CC="${CC} ${BUILD}" ./configure --prefix=/usr</userinput></screen> 37 34 38 <note os="c"> 35 <para os="c">Now we will utilize /dev/urandom instead of /dev/random. To allow 36 this to be utilized we use the following ed:</para> 37 38 <screen os="d"><userinput>cp -v options.h options.h.backup 39 sed -e "s@/dev/random@/dev/urandom@" options.h.backup > options.h</userinput></screen> 40 41 <note os="e"> 39 42 <para>We are just telling dropbear to use the default configuration. 40 43 For those for more adventureous, edit options.h to further configure dropbear.</para> 41 44 </note> 42 45 43 <para os=" d">Compile the package:</para>46 <para os="f">Compile the package:</para> 44 47 45 <screen os=" e"><userinput>make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp"</userinput></screen>48 <screen os="g"><userinput>make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp"</userinput></screen> 46 49 47 <para os=" f">Install the package:</para>50 <para os="h">Install the package:</para> 48 51 49 <screen os=" g"><userinput>make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" install DESTDIR=${CLFS}52 <screen os="i"><userinput>make MULTI=1 PROGRAMS="dropbear dbclient dropbearkey dropbearconvert scp" install DESTDIR=${CLFS} 50 53 ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/sbin/dropbear 51 54 ln -svf ../../usr/bin/dropbearmulti ${CLFS}/usr/sbin/dbclient -
BOOK/beyond-clfs3/common/iptables.xml
r3466794 r8520e58 28 28 <para os="a">Compile the package:</para> 29 29 30 <screen os="b"><userinput>make CC="${CC} -Os" LD=${LD} DO_MULTI=1 PREFIX=/usr \30 <screen os="b"><userinput>make CC="${CC} ${BUILD} -Os" LD=${LD} DO_MULTI=1 PREFIX=/usr \ 31 31 LIBDIR=/lib BINDIR=/sbin</userinput></screen> 32 32 33 33 <para os="c">Install the package:</para> 34 34 35 <screen os="d"><userinput>make CC="${CC} -Os" LD=${LD}DO_MULTI=1 PREFIX=/usr \35 <screen os="d"><userinput>make DO_MULTI=1 PREFIX=/usr \ 36 36 LIBDIR=/lib BINDIR=/sbin install DESTDIR=${CLFS}</userinput></screen> 37 37
Note:
See TracChangeset
for help on using the changeset viewer.