No... exactly like that (if you want to NOT load ROMS each time you boot up)... add the "#" to all relevant lines...cool_factor wrote: ↑Fri Apr 13, 2018 12:37 pmdee2eR wrote: ↑Fri Apr 13, 2018 1:11 amFirst attempt to reply got lost in an autologging incedent... to disable the romscanning in /boot/run.sh these lines must be hashed:
## Scan arcade games for Attract-Mode list
# NOTE: noPornRoms is the same as sortRoms with an extra no porn games array, only use sortRoms OR noPornRoms, NOT BOTH.
#bash /home/pi/.attract/sortRoms.sh
#bash /home/pi/.attract/noPornRoms.sh
## Scan console games for Attract-Mode list
#bash /home/pi/.attract/sortRomsConsoles.sh
## Combine gamelists into all games list for Attract-Mode
#bash /boot/launchers/servMenu.sh carccons
Like this:
#bash /home/pi/.attract/sortRoms.sh
bash /home/pi/.attract/noPornRoms.sh
or
bash /home/pi/.attract/sortRoms.sh
#bash /home/pi/.attract/noPornRoms.sh
but not
#bash /home/pi/.attract/sortRoms.sh
#bash /home/pi/.attract/noPornRoms.sh
The # basically is a "REM" statement... by adding the # you are essentially deleting the line (without actually deleting it). You don't want to load in ROM's whether they include Porn or not...



