From 4dcec7f40b7014a07042860463e503ee909ae4eb Mon Sep 17 00:00:00 2001 From: blackPanther OS Date: Wed, 13 Jan 2021 17:24:11 +0100 Subject: [PATCH] Another distro compatibility Small but important compatibility modification for blackPanther OS and another distro in the future --- bootiso | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/bootiso b/bootiso index 75e1ce5..e9e4c08 100755 --- a/bootiso +++ b/bootiso @@ -29,6 +29,8 @@ set -E version="4.2.0" scriptName=$(basename "$0") bashVersion=$(echo "$BASH_VERSION" | cut -d. -f1) +# Requres for any other distribution, like blackPanther OS +DISTRO=$(lsb_release -si | awk '{print $1}'| tr [:upper:] [:lower:]) if [ -z "$BASH_VERSION" ] || [ "$bashVersion" -lt 4 ]; then echo >&2 "You need bash v4+ to run this script. Aborting..." @@ -1323,7 +1325,11 @@ function asrt_checkSyslinuxInstall() { "Your distribution doesn't ship 'extlinux' with the 'syslinux' package." \ "Please install 'extlinux' and try again." fi - st_foundSyslinuxBiosFolder=$(find "$ct_syslinuxLibRoot" -type d -path '*/bios' -print -quit) + if [ "$DISTRO" = "blackpanther" ];then + st_foundSyslinuxBiosFolder=$(find "$ct_syslinuxLibRoot" -print -quit) + else + st_foundSyslinuxBiosFolder=$(find "$ct_syslinuxLibRoot" -type d -path '*/bios' -print -quit) + fi st_foundSyslinuxMbrBinary=$(fs_findFileFromPatterns "$ct_syslinuxLibRoot" 'bios/mbr.bin' 'mbr.bin') if [ -z "$st_foundSyslinuxBiosFolder" ]; then ps_failAndExit MISSING_DEPENDENCY \