diff options
-rwxr-xr-x | scripts/build/binary_hdd | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/scripts/build/binary_hdd b/scripts/build/binary_hdd index 4781009ce..0a4d3a2fc 100755 --- a/scripts/build/binary_hdd +++ b/scripts/build/binary_hdd @@ -61,21 +61,21 @@ for BOOTLOADER in ${LB_BOOTLOADERS}; do done case ${LB_FIRST_BOOTLOADER} in - syslinux) - case ${LB_BINARY_FILESYSTEM} in - fat*|ntfs) - _BOOTLOADER=syslinux - ;; - ext[234]|btrfs) - _BOOTLOADER=extlinux - ;; - *) - Echo_error "syslinux/extlinux doesn't support ${LB_BINARY_FILESYSTEM}" - exit 1 - ;; - esac - Check_package chroot /usr/bin/${_BOOTLOADER} ${_BOOTLOADER} - ;; + syslinux) + case ${LB_BINARY_FILESYSTEM} in + fat*|ntfs) + _BOOTLOADER=syslinux + ;; + ext[234]|btrfs) + _BOOTLOADER=extlinux + ;; + *) + Echo_error "syslinux/extlinux doesn't support ${LB_BINARY_FILESYSTEM}" + exit 1 + ;; + esac + Check_package chroot /usr/bin/${_BOOTLOADER} ${_BOOTLOADER} + ;; esac # Restoring cache |