From: <bob...@us...> - 2006-08-09 13:46:49
|
Revision: 541 Author: bobofdoom Date: 2006-08-09 06:46:40 -0700 (Wed, 09 Aug 2006) ViewCVS: http://svn.sourceforge.net/hackndev/?rev=541&view=rev Log Message: ----------- initramfs: fixed typos in init. Modified Paths: -------------- linux4palm/initramfs/Makefile linux4palm/initramfs/base/init Modified: linux4palm/initramfs/Makefile =================================================================== --- linux4palm/initramfs/Makefile 2006-08-09 12:57:21 UTC (rev 540) +++ linux4palm/initramfs/Makefile 2006-08-09 13:46:40 UTC (rev 541) @@ -24,7 +24,7 @@ tar -jxf ${BBTAR} touch ${BBSRC} -${OUTDIR}/: base/* base/*/* +${OUTDIR}/: base/* base/*/* base/init cp -R base ${OUTDIR} touch ${OUTDIR} @@ -36,7 +36,7 @@ ${OUTDIR}/dev/: ${OUTDIR}/ device-nodes.tar.gz ${SUDO} tar -zxpf device-nodes.tar.gz -C ${OUTDIR}/ -${OUTDIR}/bin/busybox: ${BBSRC}/ ${OURDIR}/ busybox.config +${OUTDIR}/bin/busybox: ${BBSRC}/ ${OUTDIR}/ busybox.config cp busybox.config ${BBSRC}/.config make -C ${BBSRC} ${SUDO} make -C ${BBSRC} install PREFIX=`pwd`/${OUTDIR} Modified: linux4palm/initramfs/base/init =================================================================== --- linux4palm/initramfs/base/init 2006-08-09 12:57:21 UTC (rev 540) +++ linux4palm/initramfs/base/init 2006-08-09 13:46:40 UTC (rev 541) @@ -42,7 +42,7 @@ #mount -n -t proc /proc mount -n -t proc none /proc >/dev/null 2>&1 || mount -t proc none /proc -if grep -q /proc/cpuinfo LifeDrive; thena +if grep -q LifeDrive /proc/cpuinfo; then echo Mounting LifeDrive data partition... losetup -o $HDD_OFFSET $LOOP_DEV $HDD_DEV FILES_DEV=$LOOP_DEV This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |