pull/40/head
TomasM 2017-12-15 04:55:44 -05:00
parent ac540746dd
commit 08c52c2854
2 changed files with 2 additions and 2 deletions

View File

@ -114,7 +114,7 @@ fi
# install syslinux bootloader # install syslinux bootloader
echo "* attempting to install bootloader to $BOOT..." echo "* attempting to install bootloader to $BOOT..."
"$EXTLINUX" --install "$BOOT" ./"$EXTLINUX" --install "$BOOT"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error installing boot loader." echo "Error installing boot loader."

View File

@ -15,7 +15,7 @@ ARCH=$(uname -m)
if [ "$ARCH" = "x86_64" ]; then ARCH=64; else ARCH=32; fi if [ "$ARCH" = "x86_64" ]; then ARCH=64; else ARCH=32; fi
EXTLINUX=extlinux.x$ARCH EXTLINUX=extlinux.x$ARCH
"$EXTLINUX" --install "$BOOT" ./"$EXTLINUX" --install "$BOOT"
if [ $? -ne 0 ]; then if [ $? -ne 0 ]; then
echo "Error installing boot loader." echo "Error installing boot loader."