forked from hex007/freej2me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
retropie.txt
91 lines (63 loc) · 2.37 KB
/
retropie.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
-----------------------------------------------------------------
To Install FreeJ2ME on RetroPie 4.2:
-----------------------------------------------------------------
Installing FreeJ2ME is simple, though you'll need a basic
understanding of file system operations and be comfortable
working from the command line.
Specifically, you'll need to know how to change directories,
how to move or copy files, and how to edit text files.
Familiarity with XML is helpful, but not essential.
-----------------------------------------------------------------
Step 1:
-----------------------------------------------------------------
Install Oracle's JDK:
> sudo apt-get update
> sudo apt-get install oracle-java8-jdk
> sudo update-alternatives --config javac
> sudo update-alternatives --config java
-----------------------------------------------------------------
Step 2:
-----------------------------------------------------------------
Create the necessary directories:
> sudo mkdir /home/pi/Retropie/roms/j2me
> sudo mkdir /opt/retropie/configs/j2me
> sudo mkdir /opt/retropie/BIOS/freej2me
> sudo mkdir /opt/retropie/libretrocores/lr-freej2me
-----------------------------------------------------------------
Step 3:
-----------------------------------------------------------------
Copy the file:
freej2me_libretro.so
to:
/opt/retropie/libretrocores/lr-freej2me
Be sure to set permissions to 755:
> sudo chmod 755 /opt/retropie/libretrocores/lr-freej2me/*
-----------------------------------------------------------------
Step 4:
-----------------------------------------------------------------
Copy the file:
freej2me-lr.jar
to:
/home/pi/Retropie/BIOS/freej2me
-----------------------------------------------------------------
Step 5:
-----------------------------------------------------------------
Add the files:
emulators.cfg
retroarch.cfg
to:
/opt/retropie/configs/j2me
-----------------------------------------------------------------
Step 6:
-----------------------------------------------------------------
Add the following to:
/etc/emulationstation/es_systems.cfg
<system>
<name>J2ME</name>
<fullname>Java 2 MicroEdition</fullname>
<path>/home/pi/RetroPie/roms/j2me</path>
<extension>.jar</extension>
<command>/opt/retropie/supplementary/runcommand/runcommand.sh 0 _SYS_ j2me %ROM%</command>
<platform>j2me</platform>
<theme>j2me</theme>
</system>