README.eltorito
上传用户:xiejiait
上传日期:2007-01-06
资源大小:881k
文件大小:4k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. # $Id: README.eltorito,v 1.2 1997/02/23 15:44:59 eric Rel $
  2. What is El Torito?
  3. ------------------
  4. Simply put, El Torito is a specification that says how a cdrom should
  5. be formatted such that you can directly boot from it.
  6. The "El Torito" spec says that ANY cdrom drive should work (scsi/eide)
  7. as long as the BIOS supports El Torito. So far this has only been
  8. tested with EIDE drives because none of the scsi controllers that has
  9. been tested so far appears to support El Torito. The motherboard
  10. definately has to support El Torito. The ones that do let you choose
  11. booting from HD, Floppy, Network or CDROM.
  12. How To Make Bootable CDs
  13. ------------------------
  14. For the x86 platform, many BIOS's have begun to support bootable CDs.
  15. The standard my patches for mkisofs is based on is called "El Torito".
  16. The "El Torito" standard works by making the CD drive appear, through BIOS
  17. calls, to be a normal floppy drive. This way you simply put an floppy
  18. size image (exactly 1440k for a 1.44 meg floppy) somewhere in the
  19. iso fs. In the headers of the iso fs you place a pointer to this image.
  20. The BIOS will then grab this image from the CD and for all purposes it
  21. acts as if it were booting from the floppy drive. This allows a working
  22. LILO boot disk, for example, to simply be used as is.
  23. It is simple then to make a bootable CD. First create a file, say "boot.img"
  24. which is an exact image of the boot floppu currently in use. There is
  25. at least one HOWTO on making bootable floppies. If you have a bootable
  26. floppy handy, you can make a boot image with the command
  27. dd if=/dev/fd0 of=boot.img bs=10k count=144
  28. assuming the floppy is in the A: drive.
  29. Place this image somewhere in the hierarchy which will be the source
  30. for the iso9660 filesystem. It is a good idea to put all boot related
  31. files in their own directory ("boot/" under the root of the iso9660 fs,
  32. for example), but this is not necessary.
  33. One caveat - Your boot floppy MUST load any initial ramdisk via LILO,
  34. not the kernel ramdisk driver! This is because once the linux kernel
  35. starts up, the BIOS emulation of the CD as a floppy disk is circumvented
  36. and will fail miserably. LILO will load the initial ramdisk using BIOS
  37. disk calls, so the emulation works as designed.
  38. The "El Torito" specification requires a "boot catalog" to be created as 
  39. ll.
  40. This is a 2048 byte file which is of no interest except it is required.
  41. My patches to mkisofs will cause it to automatically create the
  42. boot catalog. You must specify where the boot catalog will go in the
  43. iso9660 filesystem. Usually it is a good idea to put it the same place
  44. as the boot image, and a name like "boot.catalog" seems appropriate.
  45. So we have our boot image in the file "boot.image", and we are going to
  46. put it in the directory "boot/" under the root of the iso9660 filesystem.
  47. We will have the boot catalog go in the same directory with the name
  48. "boot.catalog". The command to create the iso9660 fs in the file
  49. bootcd.iso is then
  50. mkisofs -b boot/boot.imh -c boot/boot.catalog -o bootcd.iso .
  51. The -b option specifies the boot image to be used (note the path is
  52. relative to the root of the iso9660 disc), and the -c option is
  53. for the boot catalog file.
  54. Now burn the CD and its ready to boot!
  55. CAVEATS
  56. -------
  57. I don't think this will work with multisession CDs.
  58. If your bootable floppy image needs to access the boot floppy, it has
  59. to do so through BIOS calls. This is because if your O/S tries to talk to
  60. the floppy directly it will bypass the "floppy emulation" the El Torito spec
  61. creates through BIOS. For example, under Linux it is possible to
  62. have an initial RAM disk loaded when the kernel starts up. If you let the
  63. kernel try to read in the initial RAM disk from floppy, it will fail
  64. miserably because Linux is not using BIOS calls to access the floppy drive.
  65. Instead of seeing the floppy image on the CD, Linux will be looking at
  66. the actually floppy drive.
  67. The solution is to have the initial boot loader, called LILO, load your
  68. initial RAM disk for you.  LILO uses BIOS calls entirely for these
  69. operations, so it can grab it from the emulated floppy image.
  70. I don't think making a CD bootable renders it unreadable by non-El Torito
  71. machines. The El Torito spec uses parts of the iso9660 filesystem which
  72. were reserved for future use, so no existing code should care what it does.
  73. Mkisofs currently stores identification records in the iso9660 filesystem
  74. saying that the system is a x86 system. The El Torito spec also allows
  75. one to write PowerPC or Mac id's instead. If you look at the code in write.c
  76. you could figure out how to change what is written.