Changes between Version 2 and Version 3 of bootloaders/syslinux
- Timestamp:
- Jan 7, 2009, 7:23:33 PM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
bootloaders/syslinux
v2 v3 4 4 Syslinux [[http://www.kernel.org/pub/linux/utils/boot/syslinux/Testing/syslinux-3.73-pre7.tar.bz2]][[BR]] 5 5 6 Everything below is only Needed if yourfollowing the boot method of the build.6 Everything below is only needed if you're following the boot method of the build. 7 7 8 8 NASM [[http://voxel.dl.sourceforge.net/sourceforge/nasm/nasm-2.05.01.tar.bz2]][[BR]] … … 10 10 == Changes for Cross-Tools Section == 11 11 12 This build is only required if you rusing the Boot Method of the build.12 This build is only required if you're using the Boot Method of the build. 13 13 14 14 === Build Nasm === … … 20 20 == Changes for Boot Section == 21 21 22 This build is only required if you rusing the Boot Method of the build.22 This build is only required if you're using the Boot Method of the build. 23 23 You can also skip the building of Grub or Lilo. 24 24 … … 36 36 37 37 First 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]]38 the Primary Boot Drive. I will assume the Primary Boot Drive is /dev/sda.[[BR]] 39 39 40 40 dd if=/dev/zero of=/dev/sda bs=446 count=1[[BR]] 41 41 dd if=/cross-tools/usr/share/syslinux/mbr.bin of=/dev/sda[[BR]] 42 42 43 Second we will install edthe Extlinux.sys file for bootup. This is the bootloader.[[BR]]43 Second we will install the Extlinux.sys file for bootup. This is the bootloader.[[BR]] 44 44 install -d ${CLFS}/boot[[BR]] 45 45 extlinux --install ${CLFS}/boot[[BR]]