(2024-12-02, 10:10)garbear Wrote: @mcarni Cool to see some games are working. The rest can be solved, we just need to fix the bugs in the system. Debug logs help with these. Maybe start by focusing on one or several broken games, and upload debug logs showing them not working?
Hi @
garbear, i took a slight "detour", as i initially wanted to dual boot RPI OS 64 (which has a cron that runs kodi-standalone on boot) with Lakka, as i believe Lakka is the recommended way to get 64bit roms from the libretro team.
I could not succeed in dual booting, so i switched to compiling and building retroarch as per their website:
https://docs.libretro.com/guides/rpi/#
i then proceeded in compiling the cores as indicated using the libretro-super repository and most of them worked
I am working on a little summary, which i can share if this could be interesting also for others (i can also share the built cores if it doesn't brake any copyright issues...)
[EDIT]: quick summary, these are the cores that compile fine:
Code:
-rw-r--r-- 1 raspberry-debian raspberry-debian 87K Nov 29 12:11 .config/retroarch/cores/2048_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 309K Nov 29 12:11 .config/retroarch/cores/bnes_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 8.2M Nov 29 12:11 .config/retroarch/cores/boom3_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 21M Nov 29 12:11 .config/retroarch/cores/bsnes_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 24M Nov 29 12:11 .config/retroarch/cores/fbalpha2012_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 72M Nov 29 12:11 .config/retroarch/cores/fbneo_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 4.5M Nov 29 12:11 .config/retroarch/cores/gambatte_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 38M Nov 29 12:11 .config/retroarch/cores/mame2003_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 3.6M Nov 29 12:11 .config/retroarch/cores/mesen_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 3.2M Nov 29 12:11 .config/retroarch/cores/mgba_libretro.so
-rw-r--r-- 1 raspberry-debian raspberry-debian 8.4M Nov 29 12:11 .config/retroarch/cores/mrboom_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 5.6M Nov 29 12:11 .config/retroarch/cores/nestopia_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 1.7M Nov 29 12:11 .config/retroarch/cores/prboom_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 1.4M Nov 29 12:11 .config/retroarch/cores/quicknes_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 366K Nov 29 12:11 .config/retroarch/cores/sameboy_libretro.so
-rw-r--r-- 1 raspberry-debian raspberry-debian 2.1M Nov 29 12:11 .config/retroarch/cores/snes9x2010_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 2.3M Nov 29 12:11 .config/retroarch/cores/snes9x_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 6.8M Nov 29 12:11 .config/retroarch/cores/stella2023_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 146K Nov 29 12:11 .config/retroarch/cores/tgbdual_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 944K Nov 29 12:11 .config/retroarch/cores/tyrquake_libretro.so
-rwxr-xr-x 1 raspberry-debian raspberry-debian 2.3M Nov 29 12:11 .config/retroarch/cores/vitaquake2_libretro.so
i have run some test and so far most of them seem to work fine
I could not compile desmume, mame, tic80
[/EDIT]
I guess this should close the buildbot issue for me, unless there is anything i can do to support...
in order to make my life easier i have written a crude script (2 lines ;-) )that kills kodi and launches retroarch and bound this to one button on my remote
all works apart from not having cec when i return to kodi (after quitting retroarch)
i leave the script here below in case you have any suggestion.. in which case please feel free to let me know.. otherwise i will write on a separate thread...
Code:
nohup sh -c 'sleep 15s && /usr/local/bin/retroarch && /usr/bin/kodi-standalone' &
/usr/bin/kodi-send -a "Quit"
thanks a lot
M