bugfix
parent
ac540746dd
commit
08c52c2854
|
|
@ -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."
|
||||||
|
|
|
||||||
|
|
@ -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."
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue