Changes between Version 12 and Version 13 of bootloaders/syslinux
- Timestamp:
- Oct 23, 2013, 9:09:20 AM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
bootloaders/syslinux
v12 v13 47 47 the Primary Boot Drive. I will assume the Primary Boot Drive is /dev/sda.[[BR]] 48 48 49 49 50 dd 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 ==== 53 dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/mbr.bin of=/dev/sda[[BR]] 54 55 ==== GPT ==== 56 dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/gptmbr.bin of=/dev/sda[[BR]] 51 57 52 58 Second we will install the Extlinux.sys file for bootup. This is the bootloader.[[BR]] … … 103 109 104 110 dd 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 ==== 113 dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/mbr.bin of=/dev/sda[[BR]] 114 115 ==== GPT ==== 116 dd bs=440 conv=notrunc count=1 if=/cross-tools/syslinux/gptmbr.bin of=/dev/sda[[BR]] 106 117 107 118 Second we will installed the extlinux.sys file for bootup. This is the bootloader.[[BR]]