2
0
mirror of https://github.com/linka-cloud/d2vm.git synced 2024-11-25 17:16:25 +00:00

fix: add archlinux mbr.bin path

This commit is contained in:
Cyril Levis 2022-07-20 20:31:36 +02:00
parent a40b7d3c07
commit e9f3ac9193
No known key found for this signature in database
GPG Key ID: 6DB88737C11F5A48

View File

@ -56,13 +56,13 @@ ff02::3 ip6-allhosts
SAY Now booting the kernel from SYSLINUX... SAY Now booting the kernel from SYSLINUX...
LABEL linux LABEL linux
KERNEL /boot/vmlinuz-virt KERNEL /boot/vmlinuz-virt
APPEND ro root=UUID=%s rootfstype=ext4 initrd=/boot/initramfs-virt console=ttyS0,115200 APPEND ro root=UUID=%s rootfstype=ext4 initrd=/boot/initramfs-virt console=ttyS0,115200
` `
syslinuxCfgCentOS = `DEFAULT linux syslinuxCfgCentOS = `DEFAULT linux
SAY Now booting the kernel from SYSLINUX... SAY Now booting the kernel from SYSLINUX...
LABEL linux LABEL linux
KERNEL /boot/vmlinuz KERNEL /boot/vmlinuz
APPEND ro root=UUID=%s initrd=/boot/initrd.img net.ifnames=0 console=tty0 console=ttyS0,115200n8 APPEND ro root=UUID=%s initrd=/boot/initrd.img net.ifnames=0 console=tty0 console=ttyS0,115200n8
` `
) )
@ -78,6 +78,8 @@ var (
"/usr/share/syslinux/mbr.bin", "/usr/share/syslinux/mbr.bin",
// centos path // centos path
"/usr/share/syslinux/mbr.bin", "/usr/share/syslinux/mbr.bin",
// archlinux path
"/usr/lib/syslinux/bios/mbr.bin",
} }
) )