txt/Makefile: order-only prerequisite
[syslinux.git] / doc / syslinux.txt
bloba81cc649385aff819ec6aa88eb49515991f92d4a
1                          The Syslinux Project
3                    A suite of bootloaders for Linux
5          Copyright 1994-2011 H. Peter Anvin and contributors
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 (SYSLINUX) only; see pxelinux.txt, isolinux.txt and
28 extlinux.txt for what differs in these versions.  The all-caps term
29 "SYSLINUX" generally refers to the FAT loader, whereas "Syslinux"
30 refers to the project as a whole.
32 Help with cleaning up the docs would be greatly appreciated.
35    ++++ Options ++++
37 These are the options common to all versions of Syslinux:
39         -s      Safe, slow, stupid; uses simpler code that boots better
40         -f      Force installing
41         -r      Raid mode.  If boot fails, tell the BIOS to boot the next
42                 device in the boot sequence (usually the next hard disk)
43                 instead of stopping with an error message.
44                 This is useful for RAID-1 booting.
46 These are only in the Windows version:
48         -m      Mbr; install a bootable MBR sector to the beginning of the
49                 drive.
50         -a      Active; marks the partition used active (=bootable)
53    ++++ CREATING A BOOTABLE LINUX FLOPPY +++
55 In order to create a bootable Linux floppy using SYSLINUX, prepare a
56 normal MS-DOS formatted floppy.  Copy one or more Linux kernel files to
57 it, then execute the DOS command:
59         syslinux [-sfrma][-d directory] a: [bootsecfile]
61 (or whichever drive letter is appropriate; the [] meaning optional.)
63 Use "syslinux.com" (in the dos subdirectory of the distribution) for
64 plain DOS (MS-DOS, DR-DOS, PC-DOS, FreeDOS...) or Win9x/ME.
66 Use "syslinux.exe" (in the win32 subdirectory of the distribution) for
67 WinNT/2000/XP.
69 Under Linux, execute the command:
71         syslinux [-sfr][-d directory][-o offset] /dev/fd0
73 (or, again, whichever device is the correct one.)
75 This will alter the boot sector on the disk and copy a file named
76 LDLINUX.SYS into its root directory (or a subdirectory, if the -d
77 option is specified.)
79 The -s option, if given, will install a "safe, slow and stupid"
80 version of SYSLINUX.  This version may work on some very buggy BIOSes
81 on which SYSLINUX would otherwise fail.  If you find a machine on
82 which the -s option is required to make it boot reliably, please send
83 as much info about your machine as you can, and include the failure
84 mode.
86 The -o option is used with a disk image file and specifies the byte
87 offset of the filesystem image in the file.
89 For the DOS and Windows installers, the -m and -a options can be used
90 on hard drives to write a Master Boot Record (MBR), and to mark the
91 specific partition active.
93 If the Shift or Alt keys are held down during boot, or the Caps or Scroll
94 locks are set, Syslinux will display a LILO-style "boot:" prompt.  The
95 user can then type a kernel file name followed by any kernel parameters.
96 The Syslinux loader does not need to know about the kernel file in
97 advance; all that is required is that it is a file located in the root
98 directory on the disk.
100 There are two versions of the Linux installer; one in the "mtools"
101 directory which requires no special privilege (other than write
102 permission to the device where you are installing) but requires the
103 mtools program suite to be available, and one in the "linux" directory
104 which requires root privilege.
107    ++++ CONFIGURATION FILE ++++
109 All options here apply to PXELINUX, ISOLINUX and EXTLINUX as well as
110 SYSLINUX unless otherwise noted.  See the respective .txt files.
112 All the configurable defaults in SYSLINUX can be changed by putting a
113 file called "syslinux.cfg" in the root directory of the boot disk.
115 Starting with version 3.35, the configuration file can also be in
116 either the /boot/syslinux or /syslinux directories (searched in that
117 order.)  If that is the case, then all filenames are assumed to be
118 relative to that same directory, unless preceded with a slash or
119 backslash.
121 The configuration file is a text file in either UNIX or DOS format,
122 containing one or more of the following items, each on its own line with
123 optional leading whitespace.  Case is insensitive for keywords; upper
124 case is used here to indicate that a word should be typed verbatim.
126 #comment
127         A comment line.
129 INCLUDE filename
130         Inserts the contents of another file at this point in the
131         configuration file. Files can currently be nested up to 16
132         levels deep, but it is not guaranteed that more than 8 levels
133         will be supported in the future.
135 DEFAULT kernel options...
136         Sets the default command line.  If Syslinux boots automatically,
137         it will act just as if the entries after DEFAULT had been typed
138         in at the "boot:" prompt.
140         If no configuration file is present, or no DEFAULT entry is
141         present in the config file, an error message is displayed and
142         the boot: prompt is shown.
144 UI module options...
145         Selects a specific user interface module (typically menu.c32
146         or vesamenu.c32).  The command-line interface treats this as a
147         directive that overrides the DEFAULT and PROMPT directives.
149 APPEND options...
150         Add one or more options to the kernel command line.  These are
151         added both for automatic and manual boots.  The options are
152         added at the very beginning of the kernel command line,
153         usually permitting explicitly entered kernel options to override
154         them.  This is the equivalent of the LILO "append" option.
156 SYSAPPEND bitmask
157 IPAPPEND bitmask
159         The SYSAPPEND option was introduced in Syslinux 5.10; it is an
160         enhancement of a previous option IPAPPEND which was only
161         available on PXELINUX.
163         1: indicates that an option of the following format
164         should be generated and added to the kernel command line:
166                 ip=<client-ip>:<boot-server-ip>:<gw-ip>:<netmask>
168         ... based on the input from the DHCP/BOOTP or PXE boot server.
170         NOTE: The use of this option is no substitute for running a
171         DHCP client in the booted system.  Without regular renewals,
172         the lease acquired by the PXE BIOS will expire, making the
173         IP address available for reuse by the DHCP server.
175         This option is empty for non-PXELINUX.
177         2: indicates that an option of the following format
178         should be generated and added to the kernel command line:
180                 BOOTIF=<hardware-address-of-boot-interface>
182         ... in dash-separated hexadecimal with leading hardware type
183         (same as for the configuration file; see pxelinux.txt.)
185         This allows an initrd program to determine from which
186         interface the system booted.
188         This option is empty for non-PXELINUX.
190         4: indicates that an option of the following format
191         should be generated and added to the kernel command line:
193                 SYSUUID=<system uuid>
195         ... in lower case hexadecimal in the format normally used for
196         UUIDs (same as for the configuration file; see pxelinux.txt.)
197         This may not be available if no valid UUID is found on the
198         system.
200         8: indicate the CPU family and certain particularly
201         significant CPU feature bits:
203                 CPU=<family><features>
205         The <family> is a single digit from 3 (i386) to 6 (i686 or
206         higher.)  The following CPU feature are currently reported;
207         additional flags may be added in the future:
209                 P       Physical Address Extension (PAE)
210                 V       Intel Virtualization Technology (VT/VMX)
211                 T       Intel Trusted Exection Technology (TXT/SMX)
212                 X       Execution Disable (XD/NX)
213                 L       Long Mode (x86-64)
214                 S       AMD SMX virtualization
215         
216         This was added in 5.10.
218         The following strings are derived from DMI/SMBIOS information
219         if available; these are all new in version 5.10:
220         
221         Bit     String          Significance
222         -------------------------------------------------------------
223         0x00010 SYSVENDOR=      System vendor name
224         0x00020 SYSPRODUCT=     System product name
225         0x00040 SYSVERSION=     System version
226         0x00080 SYSSERIAL=      System serial number
227         0x00100 SYSSKU=         System SKU
228         0x00200 SYSFAMILY=      System family
229         0x00400 MBVENDOR=       Motherboard vendor name
230         0x00800 MBVERSION=      Motherboard version
231         0x01000 MBSERIAL=       Motherboard serial number
232         0x02000 MBASSET=        Motherboard asset tag
233         0x04000 BIOSVENDOR=     BIOS vendor name
234         0x08000 BIOSVERSION=    BIOS version
235         0x10000 SYSFF=          System form factor
237         If these strings contain whitespace they are replaced with
238         underscores (_).
240         The system form factor value is a number defined in the SMBIOS
241         specification, available at http://www.dmtf.org/.  As of
242         version 2.7.1 of the specification, the following values are
243         defined:
245           1     Other
246           2     Unknown
247           3     Desktop
248           4     Low profile desktop
249           5     Pizza box
250           6     Mini tower
251           7     Tower
252           8     Portble
253           9     Laptop
254          10     Notebook
255          11     Handheld
256          12     Docking station
257          13     All-in-one
258          14     Subnotebook
259          15     Space-saving
260          16     Lunch box
261          17     Main server chassis
262          18     Expansion chassis
263          19     Subchassis
264          20     Bus expansion chassis
265          21     Peripheral chassis
266          22     RAID chassis
267          23     Rack mount chasss
268          24     Sealed-case PC
269          25     Multi-system chassis
270          26     Compact PCI
271          27     Advanced TCI
272          28     Blade
273          29     Blade enclosure
275 SENDCOOKIES bitmask                     [PXELINUX only]
277         When downloading files over http, the SYSAPPEND strings are
278         prepended with _Syslinux_ and sent to the server as cookies.
279         The cookies are URL-encoded; whitespace is *not* replaced with
280         underscores.
282         This command limits the cookies send; 0 means no cookies.  The
283         default is -1, meaning send all cookies.
285         This option is "sticky" and is not automatically reset when
286         loading a new configuration file with the CONFIG command.
288 LABEL label
289     KERNEL image
290     APPEND options...
291     SYSAPPEND flag_val                  [5.10+]
292     IPAPPEND flag_val                   [5.10+ or PXELINUX only]
293         Indicates that if "label" is entered as the kernel to boot,
294         Syslinux should instead boot "image", and the specified APPEND
295         and SYSAPPEND options should be used instead of the ones
296         specified in the global section of the file (before the first
297         LABEL command.)  The default for "image" is the same as
298         "label", and if no APPEND is given the default is to use the
299         global entry (if any).
301         Starting with version 3.62, the number of LABEL statements is
302         virtually unlimited.
304         Note that LILO uses the syntax:
305         image = mykernel
306           label = mylabel
307           append = "myoptions"
309         ... whereas Syslinux uses the syntax:
310         label mylabel
311           kernel mykernel
312           append myoptions
314         Note: The "kernel" doesn't have to be a Linux kernel; it can
315               be a boot sector (see below.)
317         Since version 3.32 label names are no longer mangled into DOS
318         format (for SYSLINUX.)
320     The following commands are available after a LABEL statement:
322     LINUX image                 - Linux kernel image (default)
323     BOOT image                  - Bootstrap program (.bs, .bin)
324     BSS image                   - BSS image (.bss)
325     PXE image                   - PXE Network Bootstrap Program (.0)
326     FDIMAGE image               - Floppy disk image (.img)
327     COM32 image                 - COM32 program (.c32)
328     CONFIG image                - New configuration file
329         Using one of these keywords instead of KERNEL forces the
330         filetype, regardless of the filename.
332         CONFIG means restart the boot loader using a different
333         configuration file.  The configuration file is read, the
334         working directory is changed (if specified via an APPEND), then
335         the configuration file is parsed.
337     APPEND -
338         Append nothing.  APPEND with a single hyphen as argument in a
339         LABEL section can be used to override a global APPEND.
341     LOCALBOOT type
342         Attempt a different local boot method.  The special value -1
343         causes the boot loader to report failure to the BIOS, which, on
344         recent BIOSes, should mean that the next boot device in the
345         boot sequence should be activated.  Values other than those
346         documented may produce undesired results.
348         On PXELINUX, "type" 0 means perform a normal boot.  "type" 4
349         will perform a local boot with the Universal Network Driver
350         Interface (UNDI) driver still resident in memory.  Finally,
351         "type" 5 will perform a local boot with the entire PXE
352         stack, including the UNDI driver, still resident in memory.
353         All other values are undefined.  If you don't know what the
354         UNDI or PXE stacks are, don't worry -- you don't want them,
355         just specify 0.
357         On ISOLINUX, the "type" specifies the local drive number to
358         boot from; 0x00 is the primary floppy drive and 0x80 is the
359         primary hard drive.
361     INITRD initrd_file
362         Starting with version 3.71, an initrd can be specified in a
363         separate statement (INITRD) instead of as part of the APPEND
364         statement; this functionally appends "initrd=initrd_file" to
365         the kernel command line.
367         It supports multiple filenames separated by commas.
368         This is mostly useful for initramfs, which can be composed of
369         multiple separate cpio or cpio.gz archives.
370         Note: all files except the last one are zero-padded to a
371         4K page boundary.  This should not affect initramfs.
373 IMPLICIT flag_val
374         If flag_val is 0, do not load a kernel image unless it has been
375         explicitly named in a LABEL statement.  The default is 1.
377 ALLOWOPTIONS flag_val
378         If flag_val is 0, the user is not allowed to specify any
379         arguments on the kernel command line.  The only options
380         recognized are those specified in an APPEND statement.  The
381         default is 1.
383 TIMEOUT timeout
384         Indicates how long to wait at the boot: prompt until booting
385         automatically, in units of 1/10 s.  The timeout is cancelled as
386         soon as the user types anything on the keyboard, the assumption
387         being that the user will complete the command line already
388         begun.  A timeout of zero will disable the timeout completely,
389         this is also the default.
391 TOTALTIMEOUT timeout
392         Indicates how long to wait until booting automatically, in
393         units of 1/10 s.  This timeout is *not* cancelled by user
394         input, and can thus be used to deal with serial port glitches
395         or "the user walked away" type situations.  A timeout of zero
396         will disable the timeout completely, this is also the default.
398         Both TIMEOUT and TOTALTIMEOUT can be used together, for
399         example:
401                 # Wait 5 seconds unless the user types something, but
402                 # always boot after 15 minutes.
403                 TIMEOUT 50
404                 TOTALTIMEOUT 9000
406 ONTIMEOUT kernel options...
407         Sets the command line invoked on a timeout.  Normally this is
408         the same thing as invoked by "DEFAULT".  If this is specified,
409         then "DEFAULT" is used only if the user presses <Enter> to
410         boot.
412 ONERROR kernel options...
413         If a kernel image is not found (either due to it not existing,
414         or because IMPLICIT is set), run the specified command.  The
415         faulty command line is appended to the specified options, so
416         if the ONERROR directive reads as:
418                 ONERROR xyzzy plugh
420         ... and the command line as entered by the user is:
422                 foo bar baz
424         ... Syslinux will execute the following as if entered by the
425         user:
427                 xyzzy plugh foo bar baz
429 SERIAL port [baudrate [flowcontrol]]
430         Enables a serial port to act as the console.  "port" is a
431         number (0 = /dev/ttyS0 = COM1, etc.) or an I/O port address
432         (e.g. 0x3F8); if "baudrate" is omitted, the baud rate defaults
433         to 9600 bps.  The serial parameters are hardcoded to be 8
434         bits, no parity, 1 stop bit.
436         "flowcontrol" is a combination of the following bits:
437         0x001 - Assert DTR
438         0x002 - Assert RTS
439         0x008 - Enable interrupts
440         0x010 - Wait for CTS assertion
441         0x020 - Wait for DSR assertion
442         0x040 - Wait for RI assertion
443         0x080 - Wait for DCD assertion
444         0x100 - Ignore input unless CTS asserted
445         0x200 - Ignore input unless DSR asserted
446         0x400 - Ignore input unless RI asserted
447         0x800 - Ignore input unless DCD asserted
449         All other bits are reserved.
451         Typical values are:
453             0 - No flow control (default)
454         0x303 - Null modem cable detect
455         0x013 - RTS/CTS flow control
456         0x813 - RTS/CTS flow control, modem input
457         0x023 - DTR/DSR flow control
458         0x083 - DTR/DCD flow control
460         For the SERIAL directive to be guaranteed to work properly, it
461         should be the first directive in the configuration file.
463         NOTE: "port" values from 0 to 3 means the first four serial
464         ports detected by the BIOS.  They may or may not correspond to
465         the legacy port values 0x3F8, 0x2F8, 0x3E8, 0x2E8.
467         Enabling interrupts (setting the 0x008 bit) may give better
468         responsiveness without setting the NOHALT option, but could
469         potentially cause problems with buggy BIOSes.
471         This option is "sticky" and is not automatically reset when
472         loading a new configuration file with the CONFIG command.
474 NOHALT flag_val
475         If flag_val is 1, don't halt the processor while idle.
476         Halting the processor while idle significantly reduces the
477         power consumption, but can cause poor responsiveness to the
478         serial console, especially when using scripts to drive the
479         serial console, as opposed to human interaction.
481 CONSOLE flag_val
482         If flag_val is 0, disable output to the normal video console.
483         If flag_val is 1, enable output to the video console (this is
484         the default.)
486         Some BIOSes try to forward this to the serial console and
487         sometimes make a total mess thereof, so this option lets you
488         disable the video console on these systems.
490 FONT filename
491         Load a font in .psf format before displaying any output
492         (except the copyright line, which is output as ldlinux.sys
493         itself is loaded.)  Syslinux only loads the font onto the
494         video card; if the .psf file contains a Unicode table it is
495         ignored.  This only works on EGA and VGA cards; hopefully it
496         should do nothing on others.
498 KBDMAP keymap
499         Install a simple keyboard map.  The keyboard remapper used is
500         *very* simplistic (it simply remaps the keycodes received from
501         the BIOS, which means that only the key combinations relevant
502         in the default layout -- usually U.S. English -- can be
503         mapped) but should at least help people with AZERTY keyboard
504         layout and the locations of = and , (two special characters
505         used heavily on the Linux kernel command line.)
507         The included program keytab-lilo.pl from the LILO distribution
508         can be used to create such keymaps.  The file keytab-lilo.txt
509         contains the documentation for this program.
511 DISPLAY filename
512         Displays the indicated file on the screen at boot time (before
513         the boot: prompt, if displayed).  Please see the section below
514         on DISPLAY files.
516         NOTE: If the file is missing, this option is simply ignored.
518 SAY message
519         Prints the message on the screen.
521 PROMPT flag_val
522         If flag_val is 0, display the boot: prompt only if the Shift or Alt
523         key is pressed, or Caps Lock or Scroll lock is set (this is the
524         default).  If flag_val is 1, always display the boot: prompt.
526 NOESCAPE flag_val
527         If flag_val is set to 1, ignore the Shift/Alt/Caps Lock/Scroll
528         Lock escapes.  Use this (together with PROMPT 0) to force the
529         default boot alternative.
531 NOCOMPLETE flag_val
532         If flag_val is set to 1, the Tab key does not display labels
533         at the boot: prompt.
535 F1 filename
536 F2 filename
537    ...etc...
538 F9 filename
539 F10 filename
540 F11 filename
541 F12 filename
542         Displays the indicated file on the screen when a function key is
543         pressed at the boot: prompt.  This can be used to implement
544         pre-boot online help (presumably for the kernel command line
545         options.)  Please see the section below on DISPLAY files.
547         When using the serial console, press <Ctrl-F><digit> to get to
548         the help screens, e.g. <Ctrl-F><2> to get to the F2 screen.
549         For F10-F12, hit <Ctrl-F><A>, <Ctrl-F>B, <Ctrl-F>C.  For
550         compatibility with earlier versions, F10 can also be entered as
551         <Ctrl-F>0.
553 PATH path
554         Specify a colon-separated (':') list of directories to search
555         when attempting to load modules. This directive is useful for
556         specifying the directories containing the lib*.c32 library
557         files as other modules may be dependent on these files, but
558         may not reside in the same directory. The list of directories
559         is searched in order. Please see the section below on PATH
560         RULES.
562 Blank lines are ignored.
564 Note that the configuration file is not completely decoded.  Syntax
565 different from the one described above may still work correctly in this
566 version of Syslinux, but may break in a future one.
569    ++++ DISPLAY FILE FORMAT ++++
571 DISPLAY and function-key help files are text files in either DOS or UNIX
572 format (with or without <CR>).  In addition, the following special codes
573 are interpreted:
575 <FF>                                    <FF> = <Ctrl-L> = ASCII 12
576         Clear the screen, home the cursor.  Note that the screen is
577         filled with the current display color.
579 <SI><bg><fg>                            <SI> = <Ctrl-O> = ASCII 15
580         Set the display colors to the specified background and
581         foreground colors, where <bg> and <fg> are hex digits,
582         corresponding to the standard PC display attributes:
584         0 = black               8 = dark grey
585         1 = dark blue           9 = bright blue
586         2 = dark green          a = bright green
587         3 = dark cyan           b = bright cyan
588         4 = dark red            c = bright red
589         5 = dark purple         d = bright purple
590         6 = brown               e = yellow
591         7 = light grey          f = white
593         Picking a bright color (8-f) for the background results in the
594         corresponding dark color (0-7), with the foreground flashing.
596         Colors are not visible over the serial console.
598 <CAN>filename<newline>                  <CAN> = <Ctrl-X> = ASCII 24
599         If a VGA display is present, enter graphics mode and display
600         the graphic included in the specified file.  The file format
601         is an ad hoc format called LSS16; the included Perl program
602         "ppmtolss16" can be used to produce these images.  This Perl
603         program also includes the file format specification.
605         The image is displayed in 640x480 16-color mode.  Once in
606         graphics mode, the display attributes (set by <SI> code
607         sequences) work slightly differently: the background color is
608         ignored, and the foreground colors are the 16 colors specified
609         in the image file.  For that reason, ppmtolss16 allows you to
610         specify that certain colors should be assigned to specific
611         color indicies.
613         Color indicies 0 and 7, in particular, should be chosen with
614         care: 0 is the background color, and 7 is the color used for
615         the text printed by Syslinux itself.
617 <EM>                                    <EM> = <Ctrl-Y> = ASCII 25
618         If we are currently in graphics mode, return to text mode.
620 <DLE>..<ETB>                            <Ctrl-P>..<Ctrl-W> = ASCII 16-23
621         These codes can be used to select which modes to print a
622         certain part of the message file in.  Each of these control
623         characters select a specific set of modes (text screen,
624         graphics screen, serial port) for which the output is actually
625         displayed:
627         Character                       Text    Graph   Serial
628         ------------------------------------------------------
629         <DLE> = <Ctrl-P> = ASCII 16     No      No      No
630         <DC1> = <Ctrl-Q> = ASCII 17     Yes     No      No
631         <DC2> = <Ctrl-R> = ASCII 18     No      Yes     No
632         <DC3> = <Ctrl-S> = ASCII 19     Yes     Yes     No
633         <DC4> = <Ctrl-T> = ASCII 20     No      No      Yes
634         <NAK> = <Ctrl-U> = ASCII 21     Yes     No      Yes
635         <SYN> = <Ctrl-V> = ASCII 22     No      Yes     Yes
636         <ETB> = <Ctrl-W> = ASCII 23     Yes     Yes     Yes
638         For example:
640         <DC1>Text mode<DC2>Graphics mode<DC4>Serial port<ETB>
642         ... will actually print out which mode the console is in!
644 <SUB>                                   <SUB> = <Ctrl-Z> = ASCII 26
645         End of file (DOS convention).
647 <BEL>                                   <BEL> = <Ctrl-G> = ASCII 7
648         Beep the speaker.
651    ++++ COMMAND LINE KEYSTROKES ++++
653 The command line prompt supports the following keystrokes:
655 <Enter>         boot specified command line
656 <BackSpace>     erase one character
657 <Ctrl-U>        erase the whole line
658 <Ctrl-V>        display the current Syslinux version
659 <Ctrl-W>        erase one word
660 <Ctrl-X>        force text mode
661 <Tab>           list matching labels
662 <F1>..<F12>     help screens (if configured)
663 <Ctrl-F><digit> equivalent to F1..F10
664 <Ctrl-C>        interrupt boot in progress
665 <Esc>           interrupt boot in progress
666 <Ctrl-N>        display network information (PXELINUX only)
669    ++++ OTHER OPERATING SYSTEMS ++++
671 This version of Syslinux supports chain loading of other operating
672 systems (such as MS-DOS and its derivatives, including Windows 95/98).
674 Chain loading requires the boot sector of the foreign operating system
675 to be stored in a file in the root directory of the filesystem.
676 Because neither Linux kernels, nor boot sector images have reliable
677 magic numbers, Syslinux will look at the file extension.
678 The following extensions are recognized (case insensitive):
680   none or other Linux kernel image
681   .0            PXE bootstrap program (NBP) [PXELINUX only]
682   .bin          "CD boot sector" [ISOLINUX only]
683   .bs           Boot sector [SYSLINUX only]
684   .bss          Boot sector, DOS superblock will be patched in [SYSLINUX only]
685   .c32          COM32 image (32-bit ELF)
686   .img          Disk image [ISOLINUX only]
688 For filenames given on the command line, Syslinux will search for the
689 file by adding extensions in the order listed above if the plain
690 filename is not found.  Filenames in KERNEL statements must be fully
691 qualified.
693 If this is specified with one of the keywords LINUX, BOOT, BSS,
694 FDIMAGE, COM32, or CONFIG instead of KERNEL, the filetype is
695 considered to be the one specified regardless of the filename.
698       ++++ BOOTING DOS (OR OTHER SIMILAR OPERATING SYSTEMS) ++++
700 This section applies to SYSLINUX only, not to PXELINUX or ISOLINUX.
701 See isolinux.txt for an equivalent procedure for ISOLINUX.
703 This is the recommended procedure for creating a SYSLINUX disk that
704 can boot either DOS or Linux.  This example assumes the drive is A: in
705 DOS and /dev/fd0 in Linux; for other drives, substitute the
706 appropriate drive designator.
708    ---- Linux procedure ----
710 1. Make a DOS bootable disk.  This can be done either by specifying
711    the /s option when formatting the disk in DOS, or by running the
712    DOS command SYS (this can be done under DOSEMU if DOSEMU has
713    direct device access to the relevant drive):
715         format a: /s
716    or
717         sys a:
719 2. Boot Linux.  Copy the DOS boot sector from the disk into a file:
721         dd if=/dev/fd0 of=dos.bss bs=512 count=1
723 3. Run SYSLINUX on the disk:
725         syslinux /dev/fd0
727 4. Mount the disk and copy the DOS boot sector file to it.  The file
728    *must* have extension .bss:
730         mount -t msdos /dev/fd0 /mnt
731         cp dos.bss /mnt
733 5. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
734    create/edit syslinux.cfg and help files if desired:
736         cp vmlinux /mnt
737         cp initrd.gz /mnt
739 6. Unmount the disk (if applicable.)
741         umount /mnt
743    ---- DOS/Windows procedure ----
745 To make this installation in DOS only, you need the utility copybs.com
746 (included with Syslinux) as well as the syslinux.com installer.  If
747 you are on an WinNT-based system (WinNT, Win2k, WinXP or later), use
748 syslinux.exe instead.
750 1. Make a DOS bootable disk.  This can be done either by specifying
751    the /s option when formatting the disk in DOS, or by running the
752    DOS command SYS:
754         format a: /s
755    or
756         sys a:
758 2. Copy the DOS boot sector from the disk into a file.  The file
759    *must* have extension .bss:
761         copybs a: a:dos.bss
763 3. Run SYSLINUX on the disk:
765         syslinux a:
767 4. Copy the Linux kernel image(s), initrd(s), etc to the disk, and
768    create/edit syslinux.cfg and help files if desired:
770         copy vmlinux a:
771         copy initrd.gz a:
774    ++++ NOVICE PROTECTION ++++
776 Syslinux will attempt to detect booting on a machine with too little
777 memory, which means the Linux boot sequence cannot complete.  If so, a
778 message is displayed and the boot sequence aborted.  Holding down the
779 Ctrl key while booting disables this feature.
781 Any file that SYSLINUX uses can be marked hidden, system or readonly
782 if so is convenient; SYSLINUX ignores all file attributes.  The
783 SYSLINUX installed automatically sets the readonly/hidden/system
784 attributes on LDLINUX.SYS.
787    ++++ NOTES ON BOOTABLE CD-ROMS ++++
789 SYSLINUX can be used to create bootdisk images for El
790 Torito-compatible bootable CD-ROMs.  However, it appears that many
791 BIOSes are very buggy when it comes to booting CD-ROMs.  Some users
792 have reported that the following steps are helpful in making a CD-ROM
793 that is bootable on the largest possible number of machines:
795         a) Use the -s (safe, slow and stupid) option to SYSLINUX;
796         b) Put the boot image as close to the beginning of the
797            ISO 9660 filesystem as possible.
799 A CD-ROM is so much faster than a floppy that the -s option shouldn't
800 matter from a speed perspective.
802 Of course, you probably want to use ISOLINUX instead.  See isolinux.txt.
805    ++++ BOOTING FROM A FAT FILESYSTEM PARTITION ON A HARD DISK ++++
807 SYSLINUX can boot from a FAT filesystem partition on a hard disk
808 (including FAT32).  The installation procedure is identical to the
809 procedure for installing it on a floppy, and should work under either
810 DOS or Linux.  To boot from a partition, SYSLINUX needs to be launched
811 from a Master Boot Record or another boot loader, just like DOS itself
812 would.
814 Under DOS, you can install a standard simple MBR on the primary hard
815 disk by running the command:
817         FDISK /MBR
819 Then use the FDISK command to mark the appropriate partition active.
821 A simple MBR, roughly on par with the one installed by DOS (but
822 unencumbered), is included in the SYSLINUX distribution.  To install
823 it under Linux, simply type:
825         cat mbr.bin > /dev/XXX
827 ... where /dev/XXX is the device you wish to install it on.
829 Under DOS or Win32, you can install the SYSLINUX MBR with the -m
830 option to the SYSLINUX installer, and use the -a option to mark the
831 current partition active:
833         syslinux -ma c:
835 Note that this will also install SYSLINUX on the specified partition.
838    ++++ HARDWARE INFORMATION +++
840 I have started to maintain a web page of hardware with known
841 problems.  There are, unfortunately, lots of broken hardware out
842 there; especially early PXE stacks (for PXELINUX) have lots of
843 problems.
845 A list of problems, and workarounds (if known), is maintained at:
847         http://syslinux.zytor.com/hardware.php
850    ++++ BOOT LOADER IDS USED ++++
852 The Linux boot protocol supports a "boot loader ID", a single byte
853 where the upper nybble specifies a boot loader family (3 = Syslinux)
854 and the lower nybble is version or, in the case of Syslinux, media:
856         0x31 (49) = SYSLINUX
857         0x32 (50) = PXELINUX
858         0x33 (51) = ISOLINUX
859         0x34 (52) = EXTLINUX
861 In recent versions of Linux, this ID is available as
862 /proc/sys/kernel/bootloader_type.
865    ++++ PATH RULES ++++
867 The current working directory is *always* searched first, before PATH,
868 when attempting to open a filename. The current working directory is
869 not affected when specifying a file with an absolute path. For
870 example, given the following file system layout,
872          /boot/
873                 /bin/
874                         ls.c32
875                         libls.c32
876                 /foo/
877                         libls.c32
879 assuming that the current working directory is /boot/foo, and assuming
880 that libls.c32 is a dependency of ls.c32, executing /boot/bin/ls.c32
881 will cause /boot/foo/libls.c32 to be loaded, not /boot/bin/libls.c32,
882 even if /boot/bin is specified in the PATH directive of a config file.
884 The reason that things work this way is that typically a user will
885 install all library files in the Syslinux installation directory, as
886 specified with the --directory installer option. This method allows
887 the user to omit the PATH directive from their config file and still
888 have things work correctly.
891    ++++ BUG REPORTS ++++
893 I would appreciate hearing of any problems you have with Syslinux.  I
894 would also like to hear from you if you have successfully used Syslinux,
895 *especially* if you are using it for a distribution.
897 If you are reporting problems, please include all possible information
898 about your system and your BIOS; the vast majority of all problems
899 reported turn out to be BIOS or hardware bugs, and I need as much
900 information as possible in order to diagnose the problems.
902 There is a mailing list for discussion among Syslinux users and for
903 announcements of new and test versions.  To join, or to browse the
904 archive, go to:
906    http://www.zytor.com/mailman/listinfo/syslinux
908 Please DO NOT send HTML messages or attachments to the mailing list
909 (including multipart/alternative or similar.)  All such messages will
910 be bounced.