Changes between Version 2 and Version 3 of bootloaders/syslinux


Ignore:
Timestamp:
01/07/09 19:23:33 (16 years ago)
Author:
chris@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • bootloaders/syslinux

    v2 v3  
    44Syslinux [[http://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/syslinux-3.73-pre7.tar.bz2]][[BR]]
    55
    6 Everything below is only Needed if your following the boot method of the build.
     6Everything below is only needed if you're following the boot method of the build.
    77
    88NASM [[http://voxel.dl.sourceforge.net/sourceforge/nasm/nasm-2.05.01.tar.bz2]][[BR]]
     
    1010== Changes for Cross-Tools Section ==
    1111
    12 This build is only required if your using the Boot Method of the build.
     12This build is only required if you're using the Boot Method of the build.
    1313
    1414=== Build Nasm ===
     
    2020== Changes for Boot Section ==
    2121
    22 This build is only required if your using the Boot Method of the build.
     22This build is only required if you're using the Boot Method of the build.
    2323You can also skip the building of Grub or Lilo.
    2424
     
    3636
    3737First we erase the current MBR on the disk, next we will install the MBR for Extlinux on
    38 the Primary Boot rive. I will assume the Primary Boot Drive is /dev/sda.[[BR]]
     38the Primary Boot Drive. I will assume the Primary Boot Drive is /dev/sda.[[BR]]
    3939
    4040dd if=/dev/zero of=/dev/sda bs=446 count=1[[BR]]
    4141dd if=/cross-tools/usr/share/syslinux/mbr.bin of=/dev/sda[[BR]]
    4242
    43 Second we will installed the Extlinux.sys file for bootup. This is the bootloader.[[BR]]
     43Second we will install the Extlinux.sys file for bootup. This is the bootloader.[[BR]]
    4444install -d ${CLFS}/boot[[BR]]
    4545extlinux --install ${CLFS}/boot[[BR]]