Skip to content

Commit

Permalink
Update DarwinPPC Template scripts (#17)
Browse files Browse the repository at this point in the history
* Update DarwinPPC Templates

Fix incorrect path in error printout
  • Loading branch information
queenkjuul authored Dec 11, 2024
1 parent 5f54811 commit c9714a8
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DarwinPPC/Template-Cheetah.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iso_path="../DarwinFetch/downloads/10.0.3_4P130/Mac OS X 10.0.3/Mac OS X 10.0.3.

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion DarwinPPC/Template-Jaguar.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ iso2_path="../DarwinFetch/downloads/10.2.0_6C115/Apple Mac OS X 10.2 (10.2.6C115

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion DarwinPPC/Template-Leopard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iso_path="../DarwinFetch/downloads/10.5.6_00000/Mac OS X 10.5.6/Mac OS X 10.5.6.

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion DarwinPPC/Template-Panther.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ iso3_path="../DarwinFetch/downloads/10.3.0_7B850/Panther_CD3.toast__0/Panther_Di

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion DarwinPPC/Template-Puma.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iso_path="../DarwinFetch/downloads/10.1.0_5G640/Apple Mac OS X 10.1 (10.1.5J34)/

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion DarwinPPC/Template-SnowLeopard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iso_path="../DarwinFetch/downloads/"

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down
4 changes: 2 additions & 2 deletions DarwinPPC/Template-Tiger.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ iso_path="../DarwinFetch/downloads/10.4.8_8L127/Mac OS X 10.4.8/Mac OS X 10.4.8.

# Check if the HDD image exists
if [ ! -f "$hdd_path" ]; then
echo "Could not open '$iso_path': No such file or directory"
echo "Could not open '$hdd_path': No such file or directory"
exit 1
fi

Expand Down Expand Up @@ -47,4 +47,4 @@ qemu-system-ppc -name guest="running Mac OS X Tiger on DarwinPPC" \
-prom-env 'auto-boot?=true' \
-g 1280x720x32 \
-boot c \
-device pci-testdev \
-device pci-testdev \

0 comments on commit c9714a8

Please sign in to comment.