BLOBS is the binary blobs we don't have the source for (and the logo bmp.gz) BOOT is meant for TF1 SDCARD is dirs included in the download SYSTEM is the installed/updated payload (becomes .system on the SD card)
13 lines
295 B
Bash
Executable file
13 lines
295 B
Bash
Executable file
#!/bin/sh
|
|
|
|
EMU_EXE=gpsp
|
|
|
|
###############################
|
|
|
|
EMU_TAG=$(basename "$(dirname "$0")" .pak)
|
|
ROM="$1"
|
|
mkdir -p "$BIOS_PATH/$EMU_TAG"
|
|
mkdir -p "$SAVES_PATH/$EMU_TAG"
|
|
HOME="$USERDATA_PATH"
|
|
cd "$HOME"
|
|
minarch.elf "$CORES_PATH/${EMU_EXE}_libretro.so" "$ROM" DMG &> "$LOGS_PATH/$EMU_TAG.txt"
|