M Lu wrote:

Hi Victor,

It sounds very cool. Is that difficult to assemble the hardware stuff (I am not good at it at all)? How much in all you need to spend on the hardware thing? I have a compact flash card (32M I think) from Canon camera. Is that possible that I reuse it?

Thanks a lot.

M Lu

the WRAP board is assembled except for plugging in the CF. You have to take the shell off the 9 pin serial port to get it to plug into the box which is very small. 8 screws to install the board in the box and attach the cover.

I wrote a couple of simple scripts to prevent mounting the CF (simple write protect). It is used in cojunction with WINSCP3 to keep the modules needed for mounting the CF on another machine. The order you use in insmod or rmmod the modules is important.

********
#! /bin/ash
# by Victor McAllister
# rm-ide
# This script removes various modules to
# disable access to the CF ide disk
#
# cd /etc and type ./rm-ide to run
MODULES="ide-disk ide-detect ide-core"
BOOTDIR="/boot/lib/modules"
LIBDIR="/lib/modules"

for MODULE in ${MODULES}
do
   rmmod ${MODULE}
   rm ${BOOTDIR}/${MODULE}.o
   rm ${LIBDIR}/${MODULE}.o
done

*******
#! /bin/ash
# by Victor McAllister
# insmodide
# this script reinstalls ide modules moved in from the network
# to the /lib/modules directory.
# start the script by cd /etc and ./insmodide

MODULES="ide-core ide-detect ide-disk"

for MODULE in ${MODULES}
do
   insmod ${MODULE}
done

echo "CF should now be mountable . . ."




------------------------------------------------------- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click ------------------------------------------------------------------------ leaf-user mailing list: [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/leaf-user SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html

Reply via email to