Skip to content

Commit 57a10e7

Browse files
authored
Merge pull request #15 from danny8376/macos
Add macOS support
2 parents 2ba8947 + 879f82a commit 57a10e7

File tree

3 files changed

+475
-90
lines changed

3 files changed

+475
-90
lines changed

MSET9_installer_script/errors.txt

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,10 @@ Error 09: Could not change back into SD directory. Ensure the SD Card has been r
1010
Error 10: Database problem. Follow the troubleshooting to reset the DBs.
1111
Error 11: Running as MacOS. MacOS is not supported.
1212
Error 12: Multiple ID1s, follow MSET9 Troublshooting page.
13+
Error 13: Device doesn't exist.
14+
Error 14: Can't open device.
15+
Error 15: Not FAT32 formatted or corrupted filesystem.
16+
Error 16: Unable to umount SD card.
17+
Error 17: Root privilege is required.
1318

14-
MSET9 Troublshooting Page: https://3ds.hacks.guide/troubleshooting#installing-boot9strap-mset9
19+
MSET9 Troublshooting Page: https://3ds.hacks.guide/troubleshooting#installing-boot9strap-mset9

MSET9_installer_script/mset9.command

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/sh
2+
if which python3 >/dev/null; then
3+
# use exec here to release shell and thus sd card, allow it to be umounted
4+
exec python3 "$(cd "$(dirname "$0")" && pwd)/mset9.py"
5+
else
6+
echo "Python 3 is not installed."
7+
echo "Please install Python 3 and try again."
8+
echo "https://www.python.org/downloads/"
9+
echo "Press ENTER to exit ..."
10+
read DUMMY
11+
fi

0 commit comments

Comments
 (0)