From 8f1cc951951ae63ae5c56405896de4ba9a6283fd Mon Sep 17 00:00:00 2001 From: Daniel Markstedt Date: Wed, 8 Dec 2021 15:59:17 -0800 Subject: [PATCH] Small fixes for HFS formatted drive creation in easyinstall (#511) * More descriptive messages for creating drive images * Revert back to using hda file extension for created drives --- easyinstall.sh | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/easyinstall.sh b/easyinstall.sh index e0ff912f..20be6e4e 100755 --- a/easyinstall.sh +++ b/easyinstall.sh @@ -460,7 +460,7 @@ function createDrive() { driveSize=$1 driveName=$2 mkdir -p "$VIRTUAL_DRIVER_PATH" - drivePath="${VIRTUAL_DRIVER_PATH}/${driveSize}MB.hds" + drivePath="${VIRTUAL_DRIVER_PATH}/${driveSize}MB.hda" if [ ! -f "$drivePath" ]; then echo "Creating a ${driveSize}MB Drive" @@ -812,14 +812,14 @@ function runChoice() { echo "Installing / Updating RaSCSI OLED Screen - Complete!" ;; 4) - echo "Creating a 600MB drive" + echo "Creating an HFS formatted 600MB drive image with LIDO driver" createDrive600MB - echo "Creating a 600MB drive - Complete!" + echo "Creating an HFS formatted 600MB drive image with LIDO driver - Complete!" ;; 5) - echo "Creating a custom drive" + echo "Creating an HFS formatted drive image with LIDO driver" createDriveCustom - echo "Creating a custom drive - Complete!" + echo "Creating an HFS formatted drive image with LIDO driver - Complete!" ;; 6) echo "Configuring wired network bridge"