2017-07-16 22:30:57 +02:00
|
|
|
# Luma3DS CTRNAND Setup script
|
|
|
|
# last changed: 20170716
|
|
|
|
# author: ihaveamac
|
|
|
|
|
2017-07-16 22:52:59 +02:00
|
|
|
set SUCCESSMSG "Luma3DS copied successfully"
|
|
|
|
|
2017-07-16 22:30:57 +02:00
|
|
|
ask "This will copy Luma3DS to your CTRNAND,\nallowing for the system to work without\nan SD card.\n\nContinue?"
|
|
|
|
|
|
|
|
allow 1:/
|
|
|
|
|
|
|
|
# remove existing files just in case
|
|
|
|
rm -o -s 1:/boot.firm
|
|
|
|
rm -o -s 1:/rw/luma
|
|
|
|
|
|
|
|
# copy specific files over
|
|
|
|
cp 0:/boot.firm 1:/boot.firm
|
|
|
|
mkdir 1:/rw/luma
|
|
|
|
cp 0:/luma/payloads 1:/rw/luma/payloads
|
|
|
|
cp 0:/luma/config.bin 1:/rw/luma/config.bin
|