Below is a copy of the Makefile I use to create an Oralux CD that starts up
speaking with my external synth . I believe you can just type
# make start
<modify the syslinux.cfg on the diskette>
# make finish
and you will end up with an ISO that you can burn to a CD. If not, you can
do the parts individually:
# make get (gets the Oralux 0.6 iso from Oregon State's FTP server_
# make mount (mounts the iso on a loopback device
# make copy (copies the files from the loopback to a dir on the hard disk)
# make umount (unmounts the loopback)
# floppy (copies the diskette image to a diskette)
Here you must modify the syslinux.cfg file on the diskette. I changed mine
to use my doubletalk LT synth. How to do that is beyond the scope of this
message. Once you're sure you have a diskette that boots into Oralux the
way you want it to.type:
# make image (creates an image of the diskette)
# make iso (builds a file named myOralux.iso
You can then burn myOralux.iso to a CD.
-- Begin Makefile ---
ISONAME=Oralux_0.6-alpha.iso
MYISO = myOralux.iso
start : get mount copy umount floppy
finish : image iso
get :
wget ftp://ftp.oregonstate.edu/pub/oralux/${ISONAME}
mount :
mount -t iso9660 -o loop ${ISONAME} ./mnt
copy :
cp -r ./mnt ./media
umount :
umount ./mnt
floppy :
dd if=media/KNOPPIX/boot.img of=/dev/fd0 bs=1024
image :
dd if=/dev/fd0 of=media/KNOPPIX/boot.img bs=1024
iso :
mkisofs -l -r -J -V "Oralux" -hide-rr-moved -v -b KNOPPIX/boot.img -c
KNOPPIX/boot.cat -o ${MYISO} ./media
_______________________________________________
Oralux mailing list
[email protected]
http://lists.freearchive.org/mailman/listinfo/oralux