I don't know how to modify the URL in the config/config.yaml #388
Replies: 1 comment
-
There are a couple of parameters in regard to the Libretro cores auto-downloader. If it's easier, you can disable this ( With the URL params from the config are not full addresses, they are just the base URLs. The full URL is built automatically depending on your OS and CPU arch and this auto-guessing part it's not configurable: Here is all params for auto-downloader: libretro:
# ...
cores:
# ...
# Config params for Libretro cores repository,
# available types are:
# - buildbot (the default Libretro nightly repository)
# - github (GitHub raw repository with a similar structure to buildbot)
# - raw (just a link to a zip file extracted as is)
repo:
# enable auto-download for the list of cores (list->lib)
sync: true
# ...
main:
type: buildbot
url: https://buildbot.libretro.com/nightly
# if repo has file compression
compression: zip
# a secondary repo to use i.e. for not found in the main cores
secondary:
type: github
url: https://github.com/sergystepanov/libretro-spiegel/blob/main
compression: zip
# Libretro core configuration
# ...
# Available config params:
# - altRepo (bool) prioritize secondary repo as the download source
# ...
list:
# ...
n64:
lib: mupen64plus_next_libretro
altRepo: true
# ... |
Beta Was this translation helpful? Give feedback.
-
It was quite interesting to see the cloud-game of giongto35.
Thus, it was confirmed that the test was completed successfully using the make command.
The next thing was to put it on the docker container.
I didn't find it particularly difficult to upload, but there was one problem.
URL from config.yaml.
The error I received was "404 Not Found" on the "https://github.com/sergystepanov/libretro-spiegel/blob/main/linux/x86_64/latest/mupen64plus_next_libretro.so.zip?raw=true" page.
So when I looked up the contents, the route was changed.
It's the https://github.com/sergystepanov/libretro-spiegel/blob/main/linux/armv7-neon-hf/latest/mupen64plus_next_libretro.so.zip route, but when I tried to change it, there was one more problem.
In the config.yaml file, only "https://github.com/sergystepanov/libretro-spiegel/blob/main" is defined.
It is not easy to find what is further defined.
If you know how to change it, please give me an answer.
Beta Was this translation helpful? Give feedback.
All reactions