Changed directory structure, and added retropie install scripts.

This commit is contained in:
dabonetn 2016-03-29 01:30:56 +00:00
parent 834f70a431
commit 565d124549
88 changed files with 57 additions and 0 deletions

3
emulators.cfg Normal file
View File

@ -0,0 +1,3 @@
linapple="/opt/retropie/emulators/linapple/linapple -r -1 %ROM%"
default="linapple"

View File

Before

Width:  |  Height:  |  Size: 2.1 KiB

After

Width:  |  Height:  |  Size: 2.1 KiB

BIN
linapple Executable file

Binary file not shown.

35
retro-pie-notes.txt Normal file
View File

@ -0,0 +1,35 @@
Ok, all should be installed, but before you can actually use disk images, you need to edit the /etc/emulationstation/es_systems.cfg file.
The command is.
sudo nano /etc/emulationstation/es_systems.cfg
Change the apple2 section from this..
<system>
<name>apple2</name>
<fullname>Apple II</fullname>
<path>/home/pi/RetroPie/roms/apple2</path>
<extension>.sh .SH</extension>
<command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ apple2 %ROM%</command>
<platform>apple2</platform>
<theme>apple2</theme>
<directlaunch/>
</system>
to this..
<system>
<name>apple2</name>
<fullname>Apple II</fullname>
<path>/home/pi/RetroPie/roms/apple2</path>
<extension>.dsk .nib .po .DSK .NIB .PO</extension>
<command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ apple2 %ROM%</command>
<platform>apple2</platform>
<theme>apple2</theme>
<directlaunch/>
</system>

11
retropie-install-from-source.sh Executable file
View File

@ -0,0 +1,11 @@
#!/bin/bash
cd src
make
cd ..
sudo cp linapple /opt/retropie/emulators/linapple
sudo ln -s /opt/retropie/configs/apple2 /home/pi/.linapple
cp emulators.cfg /opt/retropie/configs/apple2
cp Master.dsk /opt/retropie/configs/apple2
cp linapple.conf /opt/retropie/configs/apple2
cat retro-pie-notes.txt

8
retropie-install.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
sudo cp linapple /opt/retropie/emulators/linapple
sudo ln -s /opt/retropie/configs/apple2 /home/pi/.linapple
cp emulators.cfg /opt/retropie/configs/apple2
cp Master.dsk /opt/retropie/configs/apple2
cp linapple.conf /opt/retropie/configs/apple2
cat retro-pie-notes.txt