File tree 3 files changed +475
-90
lines changed
3 files changed +475
-90
lines changed Original file line number Diff line number Diff line change @@ -10,5 +10,10 @@ Error 09: Could not change back into SD directory. Ensure the SD Card has been r
10
10
Error 10: Database problem. Follow the troubleshooting to reset the DBs.
11
11
Error 11: Running as MacOS. MacOS is not supported.
12
12
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.
13
18
14
- MSET9 Troublshooting Page: https://3ds.hacks.guide/troubleshooting#installing-boot9strap-mset9
19
+ MSET9 Troublshooting Page: https://3ds.hacks.guide/troubleshooting#installing-boot9strap-mset9
Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments