diff --git a/docs/emile-mkisofs.sgml b/docs/emile-mkisofs.sgml
index 4665454..0f052fc 100644
--- a/docs/emile-mkisofs.sgml
+++ b/docs/emile-mkisofs.sgml
@@ -130,27 +130,80 @@ manpage.1: manpage.sgml
-
+
Apple Driver to copy to CD-ROM.
+
+
+
+
+ Use the Apple Driver provided by EMILE to copy to CD-ROM.
+ EMILE Apple Driver doesn't contain any copyrighted
+ Apple Material.
+
+
+
+
+
+
+
+ Specify the path to the configuration file.
+
+
+
EXAMPLES
+ A bootable CD-ROM with an Apple Driver
- &dhprogram; -k "/install/kernels/vmlinuz-2.2.25-mac" -r "/install/cdrom/initrd22.gz" -d Apple_Driver43 -a "root =/dev/ramdisk ramdisk_size=13000" boot.img /mnt/cdrom
+ &dhprogram; -k "/install/kernels/vmlinuz-2.2.25-mac"
+ -r "/install/cdrom/initrd22.gz" -d Apple_Driver43
+ -a "root =/dev/ramdisk ramdisk_size=13000" boot.img /mnt/cdrom
This command generates a bootable CD-ROM image in boot.img.
The pathes of the kernel, ramdisk in the CD-ROM filesystem are repectively "/install/kernels/vmlinuz-2.2.25-mac" and "/install/cdrom/initrd22.gz".
The Apple Driver is provided by the file Apple_Driver43.
The kernel command line is "root =/dev/ramdisk ramdisk_size=13000".
The ISO9660 filesystem of the CD-ROM poppulated with the files
- found in /mnt/cdrom. This filesystem must provide "/install/kernels/vmlinuz-2.2.25-mac" and "/install/cdrom/initrd22.gz".
+ found in /mnt/cdrom. This filesystem must provide "/install/kernels/vmlinuz-2.2.25-mac" and "/install/cdrom/initrd22.gz". See emile-map-set(8) to
+ know how to extract Apple_Driver43.
+ A bootable CD-ROM with an EMILE Apple Driver and a configuration
+ file
+ before all write the configuration file, cdrom.conf:
+
+ timeout 5
+ default 0
+ vga default
+
+ title Sarge Install
+ kernel /install/kernels/vmlinuz-2.2.25-mac
+ args root=/dev/ramdisk ramdisk_size=13000
+ initrd /install/cdrom/initrd22.gz
+
+ title Sarge Install (Expert Mode)
+ kernel /install/kernels/vmlinuz-2.2.25-mac
+ args priority=low root=/dev/ramdisk ramdisk_size=13000
+ initrd /install/cdrom/initrd22.gz
+
+ title Rescue Mode
+ kernel /install/kernels/vmlinuz-2.2.25-mac
+ args root=/dev/ramdisk ramdisk_size=13000 rescue/enable=true
+ initrd /install/cdrom/initrd22.gz
+
+ and copy it into the CD-ROM filesystem, for instance
+ Debian_3.1_r0a_m68k_Bin-1/install/cdrom.conf
+ then, you can generate your CD-ROM image:
+
+ &dhprogram; -c /install/cdrom.conf \
+ Debian_3.1_r0a_m68k_Bin-1.iso Debian_3.1_r0a_m68k_Bin-1
+
+