Code cleanup: get rid of hard-coded descriptor numbers
[syslinux.git] / syslinux.doc
blob173707396a51b403fd26d7aac9050ce75733fed5
1                                SYSLINUX
3                    A suite of bootloaders for Linux
5                 Copyright (C) 1994-2007 H. Peter Anvin
7 This program is provided under the terms of the GNU General Public
8 License, version 2 or, at your option, any later version.  There is no
9 warranty, neither expressed nor implied, to the function of this
10 program.  Please see the included file COPYING for details.
12 ----------------------------------------------------------------------
14       SYSLINUX now has a home page at http://syslinux.zytor.com/
16 ----------------------------------------------------------------------
18 The SYSLINUX suite contains the following boot loaders
19 ("derivatives"), for their respective boot media:
21         SYSLINUX - MS-DOS/Windows FAT filesystem
22         PXELINUX - PXE network booting
23         ISOLINUX - ISO9660 CD-ROM
24         EXTLINUX - Linux ext2/ext3 filesystem
26 For historical reasons, some of the sections in this document applies
27 to the FAT loader only; see pxelinux.doc, isolinux.doc and
28 extlinux.doc for what differs in these versions.
30 Help with cleaning up the docs would be greatly appreciated.
33    ++++ CREATING A BOOTABLE LINUX FLOPPY +++
35 In order to create a bootable Linux floppy using SYSLINUX, prepare a
36 normal MS-DOS formatted floppy.  Copy one or more Linux kernel files to
37 it, then execute the DOS command:
39         syslinux [-sfma][-d directory] a:
41 (or whichever drive letter is appropriate; the [] meaning optional.)
43 Use "syslinux.com" (in the dos subdirectory of the distribution) for
44 plain DOS (MS-DOS, DR-DOS, PC-DOS, FreeDOS...) or Win9x/ME.
46 Use "syslinux.exe" (in the win32 subdirectory of the distribution) for
47 WinNT/2000/XP.
49 Under Linux, execute the command:
51         syslinux [-sf][-d directory][-o offset] /dev/fd0
53 (or, again, whichever device is the correct one.)
55 This will alter the boot sector on the disk and copy a file named
56 LDLINUX.SYS into its root directory (or a subdirectory, if the -d
57 option is specified.)
59 The -s option, if given, will install a "safe, slow and stupid"
60 version of SYSLINUX.  This version may work on some very buggy BIOSes
61 on which SYSLINUX would otherwise fail.  If you find a machine on
62 which the -s option is required to make it boot reliably, please send
63 as much info about your machine as you can, and include the failure
64 mode.
66 The -o option is used with a disk image file and specifies the byte
67 offset of the filesystem image in the file.
69 For the DOS and Windows installers, the -m and -a options can be used
70 on hard drives to write a Master Boot Record (MBR), and to mark the
71 specific partition active.
73 On boot time, by default, the kernel will be loaded from the image named
74 LINUX on the boot floppy.  This default can be changed, see the section
75 on the SYSLINUX config file.
77 If the Shift or Alt keys are held down during boot, or the Caps or Scroll
78 locks are set, SYSLINUX will display a LILO-style "boot:" prompt.  The
79 user can then type a kernel file name followed by any kernel parameters.
80 The SYSLINUX loader does not need to know about the kernel file in
81 advance; all that is required is that it is a file located in the root
82 directory on the disk.
84 There are two versions of the Linux installer; one in the "mtools"
85 directory which requires no special privilege (other than write
86 permission to the device where you are installing) but requires the
87 mtools program suite to be available, and one in the "unix" directory
88 which requires root privilege.
91    ++++ CONFIGURATION FILE ++++
93 All the configurable defaults in SYSLINUX can be changed by putting a
94 file called "syslinux.cfg" in the root directory of the boot disk.
96 This is a text file in either UNIX or DOS format, containing one or
97 more of the following items (case is insensitive for keywords; upper
98 case is used here to indicate that a word should be typed verbatim):
100 Starting with version 3.35, the configuration file can also be in
101 either the /boot/syslinux or /syslinux directories (searched in that
102 order.)  If that is the case, then all filenames are assumed to be
103 relative to that same directory, unless preceded with a slash or
104 backslash.
106 All options here applies to PXELINUX, ISOLINUX and EXTLINUX as well as
107 SYSLINUX unless otherwise noted.  See the respective .doc files.
109 # comment
110         A comment line.  The whitespace after the hash mark is mandatory.
112 INCLUDE filename
113         Inserts the contents of another file at this point in the
114         configuration file. Files can currently be nested up to 16
115         levels deep, but it is not guaranteed that more than 8 levels
116         will be supported in the future.
118 DEFAULT kernel options...
119         Sets the default command line.  If SYSLINUX boots automatically,
120         it will act just as if the entries after DEFAULT had been typed
121         in at the "boot:" prompt.
123         If no configuration file is present, or no DEFAULT entry is
124         present in the config file, the default is "linux auto".
126         NOTE: Earlier versions of SYSLINUX used to automatically
127         append the string "auto" to whatever the user specified using
128         the DEFAULT command.  As of version 1.54, this is no longer
129         true, as it caused problems when using a shell as a substitute
130         for "init."  You may want to include this option manually.
132 APPEND options...
133         Add one or more options to the kernel command line.  These are
134         added both for automatic and manual boots.  The options are
135         added at the very beginning of the kernel command line,
136         usually permitting explicitly entered kernel options to override
137         them.  This is the equivalent of the LILO "append" option.
139 IPAPPEND flag_val                       [PXELINUX only]
140         The IPAPPEND option is available only on PXELINUX.  The
141         flag_val is an OR of the following options:
143         1: indicates that an option of the following format
144         should be generated and added to the kernel command line:
146                 ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask>
148         ... based on the input from the DHCP/BOOTP or PXE boot server.
150         THE USE OF THIS OPTION IS NOT RECOMMENDED.  If you have to use
151         it, it is probably an indication that your network configuration
152         is broken.  Using just "ip=dhcp" on the kernel command line
153         is a preferrable option, or, better yet, run dhcpcd/dhclient,
154         from an initrd if necessary.
156         2: indicates that an option of the following format
157         should be generated and added to the kernel command line:
159                 BOOTIF=<hardware-address-of-boot-interface>
161         ... in dash-separated hexadecimal with leading hardware type
162         (same as for the configuration file; see pxelinux.doc.)
164         This allows an initrd program to determine from which
165         interface the system booted.
167 LABEL label
168   KERNEL image
169   APPEND options...
170   IPAPPEND flag_val                     [PXELINUX only]
171         Indicates that if "label" is entered as the kernel to boot,
172         SYSLINUX should instead boot "image", and the specified APPEND
173         and IPAPPEND options should be used instead of the ones
174         specified in the global section of the file (before the first
175         LABEL command.)  The default for "image" is the same as
176         "label", and if no APPEND is given the default is to use the
177         global entry (if any).
179         Starting with version 2.20, LABEL statements are compressed
180         internally, therefore the maximum number of LABEL statements
181         depends on their complexity.  Typical is around 600.  SYSLINUX
182         will print an error message if the internal memory for labels
183         is overrun.
185         Note that LILO uses the syntax:
186         image = mykernel
187           label = mylabel
188           append = "myoptions"
190         ... whereas SYSLINUX uses the syntax:
191         label mylabel
192           kernel mykernel
193           append myoptions
195         Note: The "kernel" doesn't have to be a Linux kernel; it can
196               be a boot sector or a COMBOOT file (see below.)
198         Since version 3.32 label names are no longer mangled into DOS
199         format (for SYSLINUX.)
201   LINUX image                   - Linux kernel image (default)
202   BOOT image                    - Bootstrap program (.bs, .bin)
203   BSS image                     - BSS image (.bss)
204   PXE image                     - PXE Network Bootstrap Program (.0)
205   FDIMAGE image                 - Floppy disk image (.img)
206   COMBOOT image                 - COMBOOT program (.com, .cbt)
207   COM32 image                   - COM32 program (.c32)
208   CONFIG image                  - New configuration file
209         Using one of these keywords instead of KERNEL forces the
210         filetype, regardless of the filename.
212         CONFIG means restart the boot loader using a different
213         configuration file.
215   APPEND -
216         Append nothing.  APPEND with a single hyphen as argument in a
217         LABEL section can be used to override a global APPEND.
219   LOCALBOOT type                        [ISOLINUX, PXELINUX]
220         On PXELINUX, specifying "LOCALBOOT 0" instead of a "KERNEL"
221         option means invoking this particular label will cause a local
222         disk boot instead of booting a kernel.
224         The argument 0 means perform a normal boot.  The argument 4
225         will perform a local boot with the Universal Network Driver
226         Interface (UNDI) driver still resident in memory.  Finally,
227         the argument 5 will perform a local boot with the entire PXE
228         stack, including the UNDI driver, still resident in memory.
229         All other values are undefined.  If you don't know what the
230         UNDI or PXE stacks are, don't worry -- you don't want them,
231         just specify 0.
233         On ISOLINUX, the "type" specifies the local drive number to
234         boot from; 0x00 is the primary floppy drive and 0x80 is the
235         primary hard drive.  The special value -1 causes ISOLINUX to
236         report failure to the BIOS, which, on recent BIOSes, should
237         mean that the next boot device in the boot sequence should be
238         activated.
240 IMPLICIT flag_val
241         If flag_val is 0, do not load a kernel image unless it has been
242         explicitly named in a LABEL statement.  The default is 1.
244 ALLOWOPTIONS flag_val
245         If flag_val is 0, the user is not allowed to specify any
246         arguments on the kernel command line.  The only options
247         recognized are those specified in an APPEND statement.  The
248         default is 1.
250 TIMEOUT timeout
251         Indicates how long to wait at the boot: prompt until booting
252         automatically, in units of 1/10 s.  The timeout is cancelled as
253         soon as the user types anything on the keyboard, the assumption
254         being that the user will complete the command line already
255         begun.  A timeout of zero will disable the timeout completely,
256         this is also the default.
258 TOTALTIMEOUT timeout
259         Indicates how long to wait until booting automatically, in
260         units of 1/10 s.  This timeout is *not* cancelled by user
261         input, and can thus be used to deal with serial port glitches
262         or "the user walked away" type situations.  A timeout of zero
263         will disable the timeout completely, this is also the default.
265         Both TIMEOUT and TOTALTIMEOUT can be used together, for
266         example:
268                 # Wait 5 seconds unless the user types something, but
269                 # always boot after 15 minutes.
270                 TIMEOUT 50
271                 TOTALTIMEOUT 9000
273 ONTIMEOUT kernel options...
274         Sets the command line invoked on a timeout.  Normally this is
275         the same thing as invoked by "DEFAULT".  If this is specified,
276         then "DEFAULT" is used only if the user presses <Enter> to
277         boot.
279 ONERROR kernel options...
280         If a kernel image is not found (either due to it not existing,
281         or because IMPLICIT is set), run the specified command.  The
282         faulty command line is appended to the specified options, so
283         if the ONERROR directive reads as:
285                 ONERROR xyzzy plugh
287         ... and the command line as entered by the user is:
289                 foo bar baz
291         ... SYSLINUX will execute the following as if entered by the
292         user:
294                 xyzzy plugh foo bar baz
296 SERIAL port [[baudrate] flowcontrol]
297         Enables a serial port to act as the console.  "port" is a
298         number (0 = /dev/ttyS0 = COM1, etc.) or an I/O port address
299         (e.g. 0x3F8); if "baudrate" is omitted, the baud rate defaults
300         to 9600 bps.  The serial parameters are hardcoded to be 8
301         bits, no parity, 1 stop bit.
303         "flowcontrol" is a combination of the following bits:
304         0x001 - Assert DTR
305         0x002 - Assert RTS
306         0x010 - Wait for CTS assertion
307         0x020 - Wait for DSR assertion
308         0x040 - Wait for RI assertion
309         0x080 - Wait for DCD assertion
310         0x100 - Ignore input unless CTS asserted
311         0x200 - Ignore input unless DSR asserted
312         0x400 - Ignore input unless RI asserted
313         0x800 - Ignore input unless DCD asserted
315         All other bits are reserved.
317         Typical values are:
319             0 - No flow control (default)
320         0x303 - Null modem cable detect
321         0x013 - RTS/CTS flow control
322         0x813 - RTS/CTS flow control, modem input
323         0x023 - DTR/DSR flow control
324         0x083 - DTR/DCD flow control
326         For the SERIAL directive to be guaranteed to work properly, it
327         should be the first directive in the configuration file.
329         NOTE: "port" values from 0 to 3 means the first four serial
330         ports detected by the BIOS.  They may or may not correspond to
331         the legacy port values 0x3F8, 0x2F8, 0x3E8, 0x2E8.
333 CONSOLE flag_val
334         If flag_val is 0, disable output to the normal video console.
335         If flag_val is 1, enable output to the video console (this is
336         the default.)
338         Some BIOSes try to forward this to the serial console and
339         sometimes make a total mess thereof, so this option lets you
340         disable the video console on these systems.
342 FONT filename
343         Load a font in .psf format before displaying any output
344         (except the copyright line, which is output as ldlinux.sys
345         itself is loaded.)  SYSLINUX only loads the font onto the
346         video card; if the .psf file contains a Unicode table it is
347         ignored.  This only works on EGA and VGA cards; hopefully it
348         should do nothing on others.
350 KBDMAP keymap
351         Install a simple keyboard map.  The keyboard remapper used is
352         *very* simplistic (it simply remaps the keycodes received from
353         the BIOS, which means that only the key combinations relevant
354         in the default layout -- usually U.S. English -- can be
355         mapped) but should at least help people with AZERTY keyboard
356         layout and the locations of = and , (two special characters
357         used heavily on the Linux kernel command line.)
359         The included program keytab-lilo.pl from the LILO distribution
360         can be used to create such keymaps.  The file keytab-lilo.doc
361         contains the documentation for this program.
363 DISPLAY filename
364         Displays the indicated file on the screen at boot time (before
365         the boot: prompt, if displayed).  Please see the section below
366         on DISPLAY files.
368         NOTE: If the file is missing, this option is simply ignored.
370 SAY message
371         Prints the message on the screen.
373 PROMPT flag_val
374         If flag_val is 0, display the boot: prompt only if the Shift or Alt
375         key is pressed, or Caps Lock or Scroll lock is set (this is the
376         default).  If flag_val is 1, always display the boot: prompt.
378 NOESCAPE flag_val
379         If flag_val is set to 1, ignore the Shift/Alt/Caps Lock/Scroll
380         Lock escapes.  Use this (together with PROMPT 0) to force the
381         default boot alternative.
383 F1 filename
384 F2 filename
385    ...etc...
386 F9 filename
387 F10 filename
388 F11 filename
389 F11 filename
390         Displays the indicated file on the screen when a function key is
391         pressed at the boot: prompt.  This can be used to implement
392         pre-boot online help (presumably for the kernel command line
393         options.)  Please see the section below on DISPLAY files.
395         When using the serial console, press <Ctrl-F><digit> to get to
396         the help screens, e.g. <Ctrl-F><2> to get to the F2 screen.
397         For F10-F12, hit <Ctrl-F><A>, <Ctrl-F>B, <Ctrl-F>C.  For
398         compatiblity with earlier versions, F10 can also be entered as
399         <Ctrl-F>0.
401 Blank lines are ignored.
403 Note that the configuration file is not completely decoded.  Syntax
404 different from the one described above may still work correctly in this
405 version of SYSLINUX, but may break in a future one.
408    ++++ DISPLAY FILE FORMAT ++++
410 DISPLAY and function-key help files are text files in either DOS or UNIX
411 format (with or without <CR>).  In addition, the following special codes
412 are interpreted:
414 <FF>                                    <FF> = <Ctrl-L> = ASCII 12
415         Clear the screen, home the cursor.  Note that the screen is
416         filled with the current display color.
418 <SI><bg><fg>                            <SI> = <Ctrl-O> = ASCII 15
419         Set the display colors to the specified background and
420         foreground colors, where <bg> and <fg> are hex digits,
421         corresponding to the standard PC display attributes:
423         0 = black               8 = dark grey
424         1 = dark blue           9 = bright blue
425         2 = dark green          a = bright green
426         3 = dark cyan           b = bright cyan
427         4 = dark red            c = bright red
428         5 = dark purple         d = bright purple
429         6 = brown               e = yellow
430         7 = light grey          f = white
432         Picking a bright color (8-f) for the background results in the
433         corresponding dark color (0-7), with the foreground flashing.
435         Colors are not visible over the serial console.
437 <CAN>filename<newline>                  <CAN> = <Ctrl-X> = ASCII 24
438         If a VGA display is present, enter graphics mode and display
439         the graphic included in the specified file.  The file format
440         is an ad hoc format called LSS16; the included Perl program
441         "ppmtolss16" can be used to produce these images.  This Perl
442         program also includes the file format specification.
444         The image is displayed in 640x480 16-color mode.  Once in
445         graphics mode, the display attributes (set by <SI> code
446         sequences) work slightly differently: the background color is
447         ignored, and the foreground colors are the 16 colors specified
448         in the image file.  For that reason, ppmtolss16 allows you to
449         specify that certain colors should be assigned to specific
450         color indicies.
452         Color indicies 0 and 7, in particular, should be chosen with
453         care: 0 is the background color, and 7 is the color used for
454         the text printed by SYSLINUX itself.
456 <EM>                                    <EM> = <Ctrl-Y> = ASCII 25
457         If we are currently in graphics mode, return to text mode.
459 <DLE>..<ETB>                            <Ctrl-P>..<Ctrl-W> = ASCII 16-23
460         These codes can be used to select which modes to print a
461         certain part of the message file in.  Each of these control
462         characters select a specific set of modes (text screen,
463         graphics screen, serial port) for which the output is actually
464         displayed:
466         Character                       Text    Graph   Serial
467         ------------------------------------------------------
468         <DLE> = <Ctrl-P> = ASCII 16     No      No      No
469         <DC1> = <Ctrl-Q> = ASCII 17     Yes     No      No
470         <DC2> = <Ctrl-R> = ASCII 18     No      Yes     No
471         <DC3> = <Ctrl-S> = ASCII 19     Yes     Yes     No
472         <DC4> = <Ctrl-T> = ASCII 20     No      No      Yes
473         <NAK> = <Ctrl-U> = ASCII 21     Yes     No      Yes
474         <SYN> = <Ctrl-V> = ASCII 22     No      Yes     Yes
475         <ETB> = <Ctrl-W> = ASCII 23     Yes     Yes     Yes
477         For example:
479         <DC1>Text mode<DC2>Graphics mode<DC4>Serial port<ETB>
481         ... will actually print out which mode the console is in!
483 <SUB>                                   <SUB> = <Ctrl-Z> = ASCII 26
484         End of file (DOS convention).
486 <BEL>                                   <BEL> = <Ctrl-G> = ASCII 7
487         Beep the speaker.
490    ++++ COMMAND LINE KEYSTROKES ++++
492 The command line prompt supports the following keystrokes:
494 <Enter>         boot specified command line
495 <BackSpace>     erase one character
496 <Ctrl-U>        erase the whole line
497 <Ctrl-V>        display the current SYSLINUX version
498 <Ctrl-W>        erase one word
499 <Ctrl-X>        force text mode
500 <F1>..<F10>     help screens (if configured)
501 <Ctrl-F><digit> equivalent to F1..F10
502 <Ctrl-C>        interrupt boot in progress
503 <Esc>           interrupt boot in progress
506    ++++ COMBOOT IMAGES AND OTHER OPERATING SYSTEMS ++++
508 This version of SYSLINUX supports chain loading of other operating
509 systems (such as MS-DOS and its derivatives, including Windows 95/98),
510 as well as COMBOOT-style standalone executables (a subset of DOS .COM
511 files; see separate section below.)
513 Chain loading requires the boot sector of the foreign operating system
514 to be stored in a file in the root directory of the filesystem.
515 Because neither Linux kernels, boot sector images, nor COMBOOT files
516 have reliable magic numbers, SYSLINUX will look at the file extension.
517 The following extensions are recognized (case insensitive):
519   none or other Linux kernel image
520   .0            PXE bootstrap program (NBP) [PXELINUX only]
521   .bin          "CD boot sector" [ISOLINUX only]
522   .bs           Boot sector [SYSLINUX only]
523   .bss          Boot sector, DOS superblock will be patched in [SYSLINUX only]
524   .c32          COM32 image (32-bit COMBOOT)
525   .cbt          COMBOOT image (not runnable from DOS)
526   .com          COMBOOT image (runnable from DOS)
527   .img          Disk image [ISOLINUX only]
529 For filenames given on the command line, SYSLINUX will search for the
530 file by adding extensions in the order listed above if the plain
531 filename is not found.  Filenames in KERNEL statements must be fully
532 qualified.
534 If this is specified with one of the keywords LINUX, BOOT, BSS,
535 FDIMAGE, COMBOOT, COM32, or CONFIG instead of KERNEL, the filetype is
536 considered to be the one specified regardless of the filename.
539       ++++ BOOTING DOS (OR OTHER SIMILAR OPERATING SYSTEMS) ++++
541 This section applies to SYSLINUX only, not to PXELINUX or ISOLINUX.
542 See isolinux.doc for an equivalent procedure for ISOLINUX.
544 This is the recommended procedure for creating a SYSLINUX disk that
545 can boot either DOS or Linux.  This example assumes the drive is A: in
546 DOS and /dev/fd0 in Linux; for other drives, substitute the
547 appropriate drive designator.
549    ---- Linux procedure ----
551 1. Make a DOS bootable disk.  This can be done either by specifying
552    the /s option when formatting the disk in DOS, or by running the
553    DOS command SYS (this can be done under DOSEMU if DOSEMU has
554    direct device access to the relevant drive):
556         format a: /s
557    or
558         sys a:
560 2. Boot Linux.  Copy the DOS boot sector from the disk into a file:
562         dd if=/dev/fd0 of=dos.bss bs=512 count=1
564 3. Run SYSLINUX on the disk:
566         syslinux /dev/fd0
568 4. Mount the disk and copy the DOS boot sector file to it.  The file
569    *must* have extension .bss:
571         mount -t msdos /dev/fd0 /mnt
572         cp dos.bss /mnt
574 5. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
575    create/edit syslinux.cfg and help files if desired:
577         cp vmlinux /mnt
578         cp initrd.gz /mnt
580 6. Unmount the disk (if applicable.)
582         umount /mnt
584    ---- DOS/Windows procedure ----
586 To make this installation in DOS only, you need the utility copybs.com
587 (included with SYSLINUX) as well as the syslinux.com installer.  If
588 you are on an WinNT-based system (WinNT, Win2k, WinXP or later), use
589 syslinux.exe instead.
591 1. Make a DOS bootable disk.  This can be done either by specifying
592    the /s option when formatting the disk in DOS, or by running the
593    DOS command SYS:
595         format a: /s
596    or
597         sys a:
599 2. Copy the DOS boot sector from the disk into a file.  The file
600    *must* have extension .bss:
602         copybs a: a:dos.bss
604 3. Run SYSLINUX on the disk:
606         syslinux a:
608 4. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
609    create/edit syslinux.cfg and help files if desired:
611         copy vmlinux a:
612         copy initrd.gz a:
615    ++++ COMBOOT EXECUTABLES ++++
617 SYSLINUX supports simple standalone programs, using a file format
618 similar to DOS ".com" files.  A 32-bit version, called COM32, is also
619 provided.  A simple API provides access to a limited set of filesystem
620 and console functions.
622 See the file comboot.doc for more information on COMBOOT and COM32
623 programs.
626    ++++ NOVICE PROTECTION ++++
628 SYSLINUX will attempt to detect booting on a machine with too little
629 memory, which means the Linux boot sequence cannot complete.  If so, a
630 message is displayed and the boot sequence aborted.  Holding down the
631 Ctrl key while booting disables this feature.
633 Any file that SYSLINUX uses can be marked hidden, system or readonly
634 if so is convenient; SYSLINUX ignores all file attributes.  The
635 SYSLINUX installed automatically sets the readonly/hidden/system
636 attributes on LDLINUX.SYS.
639    ++++ NOTES ON BOOTABLE CD-ROMS ++++
641 SYSLINUX can be used to create bootdisk images for El
642 Torito-compatible bootable CD-ROMs.  However, it appears that many
643 BIOSes are very buggy when it comes to booting CD-ROMs.  Some users
644 have reported that the following steps are helpful in making a CD-ROM
645 that is bootable on the largest possible number of machines:
647         a) Use the -s (safe, slow and stupid) option to SYSLINUX;
648         b) Put the boot image as close to the beginning of the
649            ISO 9660 filesystem as possible.
651 A CD-ROM is so much faster than a floppy that the -s option shouldn't
652 matter from a speed perspective.
654 Of course, you probably want to use ISOLINUX instead.  See isolinux.doc.
657    ++++ BOOTING FROM A FAT FILESYSTEM PARTITION ON A HARD DISK ++++
659 SYSLINUX can boot from a FAT filesystem partition on a hard disk
660 (including FAT32).  The installation procedure is identical to the
661 procedure for installing it on a floppy, and should work under either
662 DOS or Linux.  To boot from a partition, SYSLINUX needs to be launched
663 from a Master Boot Record or another boot loader, just like DOS itself
664 would.
666 Under DOS, you can install a standard simple MBR on the primary hard
667 disk by running the command:
669         FDISK /MBR
671 Then use the FDISK command to mark the appropriate partition active.
673 A simple MBR, roughly on par with the one installed by DOS (but
674 unencumbered), is included in the SYSLINUX distribution.  To install
675 it under Linux, simply type:
677         cat mbr.bin > /dev/XXX
679 ... where /dev/XXX is the device you wish to install it on.
681 Under DOS or Win32, you can install the SYSLINUX MBR with the -m
682 option to the SYSLINUX installer, and use the -a option to mark the
683 current partition active:
685         syslinux -ma c:
687 Note that this will also install SYSLINUX on the specified partition.
690    ++++ HARDWARE INFORMATION +++
692 I have started to maintain a web page of hardware with known
693 problems.  There are, unfortunately, lots of broken hardware out
694 there; especially early PXE stacks (for PXELINUX) have lots of
695 problems.
697 A list of problems, and workarounds (if known), is maintained at:
699         http://syslinux.zytor.com/hardware.php
702    ++++ BOOT LOADER IDS USED ++++
704 The Linux boot protocol supports a "boot loader ID", a single byte
705 where the upper nybble specifies a boot loader family (3 = SYSLINUX)
706 and the lower nybble is version or, in the case of SYSLINUX, media:
708         0x31 (49) = SYSLINUX
709         0x32 (50) = PXELINUX
710         0x33 (51) = ISOLINUX
711         0x34 (52) = EXTLINUX
713 In recent versions of Linux, this ID is available as
714 /proc/sys/kernel/bootloader_type.
717    ++++ BUG REPORTS ++++
719 I would appreciate hearing of any problems you have with SYSLINUX.  I
720 would also like to hear from you if you have successfully used SYSLINUX,
721 *especially* if you are using it for a distribution.
723 If you are reporting problems, please include all possible information
724 about your system and your BIOS; the vast majority of all problems
725 reported turn out to be BIOS or hardware bugs, and I need as much
726 information as possible in order to diagnose the problems.
728 There is a mailing list for discussion among SYSLINUX users and for
729 announcements of new and test versions.  To join, or to browse the
730 archive, go to:
732    http://www.zytor.com/mailman/listinfo/syslinux
734 Please DO NOT send HTML messages or attachments to the mailing list
735 (including multipart/alternative or similar.)  All such messages will
736 be bounced.