Merge pull request #3418 from neofob/develop

create_installstick: update mbr for Debian Jessie
This commit is contained in:
Stephan Raue 2014-08-17 15:15:15 +02:00
commit 7d06086133

View File

@ -245,7 +245,9 @@ EOF
MBR="/usr/share/syslinux/mbr.bin" # example: fedora
elif [ -f /usr/lib/syslinux/bios/mbr.bin ]; then
MBR="/usr/lib/syslinux/bios/mbr.bin" # example: arch
else
elif [ -f /usr/lib/syslinux/mbr/mbr.bin ]; then
MBR="/usr/lib/syslinux/mbr/mbr.bin" # example: Debian Jessie
else
echo "ERROR: Can't find syslinux's mbr.bin on Host OS" >&2
fi