Changes between Version 12 and Version 13 of bootloaders/syslinux


Ignore:
Timestamp:
Oct 23, 2013, 9:09:20 AM (11 years ago)
Author:
William Harrington
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • bootloaders/syslinux

    v12 v13  
    4747the Primary Boot Drive. I will assume the Primary Boot Drive is /dev/sda.[[BR]]
    4848
     49
    4950dd if=/dev/zero of=/dev/sda bs=446 count=1[[BR]]
    50 dd if=/cross-tools/syslinux/mbr.bin of=/dev/sda[[BR]]
     51
     52==== MBR ====
     53dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/mbr.bin of=/dev/sda[[BR]]
     54
     55==== GPT ====
     56dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/gptmbr.bin of=/dev/sda[[BR]]
    5157
    5258Second we will install the Extlinux.sys file for bootup. This is the bootloader.[[BR]]
     
    103109
    104110dd if=/dev/zero of=/dev/sda bs=446 count=1[[BR]]
    105 dd if=/usr/share/syslinux/mbr.bin of=/dev/sda[[BR]]
     111
     112==== MBR ====
     113dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/mbr.bin of=/dev/sda[[BR]]
     114
     115==== GPT ====
     116dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/gptmbr.bin of=/dev/sda[[BR]]
    106117
    107118Second we will installed the extlinux.sys file for bootup. This is the bootloader.[[BR]]