Changes between Initial Version and Version 1 of TipAndDoc/boot/PXE/pxelinux


Ignore:
Timestamp:
Dec 5, 2010 3:05:06 PM (13 years ago)
Author:
mitty
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • TipAndDoc/boot/PXE/pxelinux

    v1 v1  
     1[[PageOutline]] 
     2 
     3 = syslinux = 
     4 * [http://www.gossamer-threads.com/lists/syslinux/users/7127 Continue HD boot option? | syslinux | users] 
     5{{{ 
     6from syslinux.doc inside the syslinux package (did you read the doc?)  
     7 
     8LOCALBOOT type [ISOLINUX, PXELINUX]  
     9On PXELINUX, specifying "LOCALBOOT 0" instead of a "KERNEL"  
     10option means invoking this particular label will cause a local  
     11disk boot instead of booting a kernel.  
     12The argument 0 means perform a normal boot. The argument 4  
     13will perform a local boot with the Universal Network Driver  
     14Interface (UNDI) driver still resident in memory. Finally,  
     15the argument 5 will perform a local boot with the entire PXE  
     16stack, including the UNDI driver, still resident in memory.  
     17All other values are undefined. If you don't know what the  
     18UNDI or PXE stacks are, don't worry -- you don't want them,  
     19just specify 0.  
     20On ISOLINUX, the "type" specifies the local drive number to  
     21boot from; 0x00 is the primary floppy drive and 0x80 is the  
     22primary hard drive. The special value -1 causes ISOLINUX to  
     23report failure to the BIOS, which, on recent BIOSes, should  
     24mean that the next boot device in the boot sequence should be  
     25activated.  
     26 
     27This labels forks for me on isolinux.cfg :  
     28 
     29label harddisk  
     30localboot 0x80  
     31append SLX=0x80  
     32 
     33label floppy  
     34localboot 0x00  
     35append SLX=0x00  
     36 
     37except on some weird Compaq BIOSes, Works.  
     38And the append line I can't remember where it cames from, should work without  
     39it, I guess some patch for gfxboot that I still using for impress.  
     40}}}