Hi fellaz , is it possible to hide or just show a directory, like soon we'll have a jamma interface so I was wondering to have only the arcade directory directly, thanks and have a wonderful weekend
Mr BIG
Disable cores
- Newsdee
- Top Contributor
- Posts: 873
- Joined: Mon May 25, 2020 1:07 am
- Has thanked: 104 times
- Been thanked: 239 times
Re: Disable cores
You can just delete what you don't want.
Or copy the contents if the Arcade folder in root,
and place everything else under a subfolder.
Or copy the contents if the Arcade folder in root,
and place everything else under a subfolder.
-
- Top Contributor
- Posts: 381
- Joined: Tue Jun 16, 2020 12:22 pm
- Has thanked: 58 times
- Been thanked: 77 times
Re: Disable cores
Yes run update and it will download everything that update downloads again for those systems, so the delete/move must be done every time you run update.
As in delete/move is not a solution at all.
Some off us have asked for a solution to this.
For example if we could make a do not update ini file or script file that is checked after the update script is checked and simply does not run update on whats in that file.
Doing it this way would be way easier then trying too implement something in the update script.
But have not seen anything new about this.
As in delete/move is not a solution at all.
Some off us have asked for a solution to this.
For example if we could make a do not update ini file or script file that is checked after the update script is checked and simply does not run update on whats in that file.
Doing it this way would be way easier then trying too implement something in the update script.
But have not seen anything new about this.
-
- Top Contributor
- Posts: 623
- Joined: Fri Jan 22, 2021 4:36 pm
- Has thanked: 80 times
- Been thanked: 324 times
Re: Disable cores
You could write a script that does the deleting/moving and a small one that wraps the update and deletion together. The updater won't touch either of them and you still have a one-step process to get your stuff as you want it.
Re: Disable cores
Unless I'm misunderstanding, this has been possible for a while. You can create an update.ini file in the Scripts directory alongside update.sh and add REPOSITORIES_FILTER="arcade-cores" to only update arcade cores, or just list the individual cores you're interested in. Alternatively, set DOWNLOAD_NEW_CORES="false" and it will only update the cores already present on your SD card, though this has the disadvantage of not picking up new arcade cores when they get released.grizzly wrote: ↑Thu Apr 08, 2021 3:45 pm For example if we could make a do not update ini file or script file that is checked after the update script is checked and simply does not run update on whats in that file.
Doing it this way would be way easier then trying too implement something in the update script.
But have not seen anything new about this.
From the source code:
Code: Select all
#A space separated list of filters for the online repositories;
#each filter can be part of the repository name or a whole core category,
#i.e. “C64 Minimig NES SNES arcade-cores” if you want the script to check only
#for C64, Minimig, NES, SNES, and all arcade cores repositories making the whole
#update process quicker;
#if you use this option probably you want DOWNLOAD_NEW_CORES="true" so that you
#can use this filter in order to setup a brand new empty SD with only the cores
#you need, otherwise cores in the filter, but not on the SD won't be downloaded.
REPOSITORIES_FILTER=""
#Like REPOSITORIES_FILTER but repository names or core categories must not match the filter;
#REPOSITORIES_NEGATIVE_FILTER is processed after REPOSITORIES_FILTER.
REPOSITORIES_NEGATIVE_FILTER=""