> Now I need a way to recreate tomsrtbt. I can use build.s to create the
> customized floppy, but I need to create the tomsrtbt.dos.zip file. How do you
> make the customized initrd.img file?
You are actually the first to ask. Why do you need a customized DOS
distribution? The DOS distribution is really an afterthought, it is
not supported or documented. Anyway, the initrd.img is just a gzip
compressed minix filesystem, you can replace the tomsrtbt.raw file in
it with the one you built in buildit.s by un-gzipping it to a block
device, mounting it, replace tomsrtbt.raw, and re-gzip initrd.img.
Let me know what the scenario is for which you want this, there may
be a better way. Also let me know if you get stuck.
> Secondly, would you know which module to use with a Matshita SCSI CDRom?
> it identifies as follows:
> Vendor: MATSHITA Model: KME UJDCD850 Rev: 1.07
> Type: CD-ROM ANSI SCSI revision:02
> Detected scsi CD-ROM sr0 at scsi0, channel 0, id 3, lun 0
SCSI cdroms do not need a module.
> Omnibook800. It keeps coming back with a "aborting command due to timeout"
> when I try to mount it, or when i do a dd if=/dev/st0 if=... .
That sounds like a termination problem or something. Um, st0 is a tape
device, sr0 is the cdrom. If you see the above message, all the pieces
are in place. You may have a hardware problem. Was there a good CDROM in
the drive? Try a different CDROM. The syntax for mounting should be,
roughly,
mount -t iso9660 -o ro /dev/sr0 /cdrom
Also, send me the output of "cat /proc/scsi/scsi" and "cat /proc/modules".
What scsi adapter are you using?
-Tom