mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-08 11:57:25 +00:00
4e936522ee
GP2X: Cleanup Readme. SDL: Change a few backend defines to GPH_DEVICE from the device name (blocking main and loadGFXMode so they can be written elsewhere). svn-id: r53639
15 lines
303 B
Bash
Executable File
15 lines
303 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Remount SD with forced Sync, does this really work?
|
|
mount -o sync,remount /dev/mmcsd/disc0/part1 /mnt/sd/
|
|
|
|
# Run ScummVM, important this bit.
|
|
./scummvm.gph
|
|
|
|
# Sync the SD card to check that everything is written.
|
|
sync
|
|
|
|
# Return to the GPH menu screen
|
|
cd /usr/gp2x
|
|
exec /usr/gp2x/gp2xmenu
|