Skip to content

Commit

Permalink
Merge pull request #218 from ROCKNIX/dev
Browse files Browse the repository at this point in the history
Staging PR for release.
  • Loading branch information
r3claimer authored May 17, 2024
2 parents 039992e + 5fdaceb commit e667908
Show file tree
Hide file tree
Showing 832 changed files with 17,658 additions and 42,669 deletions.
4 changes: 4 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<img src="https://raw.githubusercontent.com/ROCKNIX/distribution/dev/distributions/ROCKNIX/logos/rocknix-logo.png" width=192>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[![Latest Version](https://img.shields.io/github/release/ROCKNIX/distribution.svg?color=FF5555&label=latest%20version&style=flat-square)](https://github.com/ROCKNIX/distribution/releases/latest) [![Activity](https://img.shields.io/github/commit-activity/m/ROCKNIX/distribution?color=FF5555&style=flat-square)](https://github.com/ROCKNIX/distribution/commits) [![Pull Requests](https://img.shields.io/github/issues-pr-closed/ROCKNIX/distribution?color=FF5555&style=flat-square)](https://github.com/ROCKNIX/distribution/pulls) [![Discord Server](https://img.shields.io/discord/948029830325235753?color=FF5555&label=chat&style=flat-square)](https://discord.gg/seTxckZjJy)

---

## Licenses

ROCKNIX is a Linux distribution that is made up of many open-source components. Components are provided under their respective licenses. This distribution includes components licensed for non-commercial use only.
Expand Down
17 changes: 11 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,11 @@ RK3399:
PROJECT=Rockchip DEVICE=RK3399 ARCH=arm ./scripts/build_distro
PROJECT=Rockchip DEVICE=RK3399 ARCH=aarch64 ./scripts/build_distro

H700:
unset DEVICE_ROOT
PROJECT=Allwinner DEVICE=H700 ARCH=arm ./scripts/build_distro
PROJECT=Allwinner DEVICE=H700 ARCH=aarch64 ./scripts/build_distro

update:
PROJECT=Rockchip DEVICE=RK3588 ARCH=aarch64 ./scripts/update_packages

Expand All @@ -90,8 +95,8 @@ docker-%: DOCKER_IMAGE := "rocknix/rocknix-build:latest"
# Anytime this directory changes, you must run `make clean` similarly to moving the distribution directory
docker-%: DOCKER_WORK_DIR := $(shell if [ -n "${DOCKER_WORK_DIR}" ]; then echo ${DOCKER_WORK_DIR}; else echo "$$(pwd)" ; fi)

# ${HOME}/.${DISTRONAME}/options is a global options file containing developer and build settings.
docker-%: GLOBAL_SETTINGS := $(shell if [ -f "${HOME}/.${DISTRONAME}/options" ]; then echo "-v \"${HOME}/.${DISTRONAME}/options:${HOME}/.${DISTRONAME}/options\""; else echo ""; fi)
# ${HOME}/.ROCKNIX/options is a global options file containing developer and build settings.
docker-%: GLOBAL_SETTINGS := $(shell if [ -f "${HOME}/.ROCKNIX/options" ]; then echo "-v \"${HOME}/.ROCKNIX/options:${HOME}/.ROCKNIX/options\""; else echo ""; fi)

# LOCAL_SSH_KEYS_FILE is a variable that contains the location of the authorized keys file for development build use. It will be mounted into the container if it exists.
docker-%: LOCAL_SSH_KEYS_FILE := $(shell if [ -n "${LOCAL_SSH_KEYS_FILE}" ]; then echo "-v \"${LOCAL_SSH_KEYS_FILE}:${LOCAL_SSH_KEYS_FILE}\""; else echo ""; fi)
Expand Down Expand Up @@ -119,16 +124,16 @@ docker-%: INTERACTIVE=$(shell [ -t 0 ] && echo "-it")
docker-%: COMMAND=make $*

# Get .env file ready
docker-%: $(shell env | grep "=" > .env)
docker-%: $(shell ./scripts/get_env > .env)

# If the user issues a `make docker-shell` just start up bash as the shell to run commands
docker-shell: COMMAND=bash

# Command: builds and pushes a hybrid docker image to dockerhub
# You must login with: docker login --username <username> and provide either a password or token (from user settings -> security in dockerhub) before this will work. The build user must also be a member of the "docker" group.
# Command: builds and saves a docker builder image locally.
# The build user must also be a member of the "docker" group.
docker-image-build:
$(DOCKER_CMD) buildx create --use
$(DOCKER_CMD) buildx build --tag $(DOCKER_IMAGE) --platform linux/amd64,linux/arm64 --push .
$(DOCKER_CMD) buildx build --tag $(DOCKER_IMAGE) --platform $(shell if [ "$(uname -m)" = "aarch64" ]; then echo "linux/arm64"; else echo "linux/amd64"; fi) --load .

# Command: pulls latest docker image from dockerhub. This will *replace* locally built version.
docker-image-pull:
Expand Down
38 changes: 38 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
<img src="https://raw.githubusercontent.com/ROCKNIX/distribution/dev/distributions/ROCKNIX/logos/rocknix-logo.png" width=192>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[![Latest Version](https://img.shields.io/github/release/ROCKNIX/distribution.svg?color=FF5555&label=latest%20version&style=flat-square)](https://github.com/ROCKNIX/distribution/releases/latest) [![Activity](https://img.shields.io/github/commit-activity/m/ROCKNIX/distribution?color=FF5555&style=flat-square)](https://github.com/ROCKNIX/distribution/commits) [![Pull Requests](https://img.shields.io/github/issues-pr-closed/ROCKNIX/distribution?color=FF5555&style=flat-square)](https://github.com/ROCKNIX/distribution/pulls) [![Discord Server](https://img.shields.io/discord/948029830325235753?color=FF5555&label=chat&style=flat-square)](https://discord.gg/seTxckZjJy)

---

ROCKNIX is an immutable Linux distribution for handheld gaming devices developed by a small community of enthusiasts. Our goal is to produce an operating system that has the features and capabilities that we need, and to have fun as we develop it.

## Features

* ROCKNIX has a very active community of developers and users.
* Integrated cross-device local and remote network play.
* In-game touch support on supported devices.
* Fine grain control for battery life or performance.
* Includes support for playing Music and Video.
* Bluetooth audio and controller support.
* Support for HDMI audio and video out, and USB audio.
* Device to device and device to cloud sync with Syncthing and rclone.
* VPN support with Wireguard, Tailscale, and ZeroTier.
* Includes built-in support for scraping and retroachievements.

## Screenshots

<table>
<tr>
<td><img src="https://rocknix.org/_inc/images/screenshots/system-view.png"/></td>
<td><img src="https://rocknix.org/_inc/images/screenshots/menu.png"/></td>
</tr>
<tr>
<td><img src="https://rocknix.org/_inc/images/screenshots/gamelist-view-metadata-immersive.png"/></td>
<td><img src="https://rocknix.org/_inc/images/screenshots/gamelist-view-no-metadata-immersive.png"/></td>
</tr>
</table>

## Community

The ROCKNIX community utilizes Discord for discussion, if you would like to join us please use this link: [https://discord.gg/seTxckZjJy](https://discord.gg/seTxckZjJy)

## Licenses

**ROCKNIX** is a fork of [JELOS](https://jelos.org/), all licenses apply and credit to the JELOS team.

You are free to:
Expand Down
8 changes: 8 additions & 0 deletions config/blocklist
Original file line number Diff line number Diff line change
@@ -1,17 +1,25 @@
aethersx2-sa # package is EOL
amiberry # Updating breaks build packages
control-gen # package does not update
dolphin-sa # Wayland patch is now broken upstream
drastic-sa # Package is closed source bin
duckstation-lr # Libretro support removed from upstream.
duckstation-sa # Patches need to be reworked.
gptokeyb # Newer versions break hotkeys
gzdoom-sa # Stick to release versions.
idtech-lr # Just a dummy package
kronos-sa # Using the release version of kronos had better results.
melonds-sa # Broken OpenGL renderer upstream
mupen64plus-sa-ui-console # Causes segfaults
nanoboyadvance-sa # SDL version removed after this commit
np2kai # Last major commit before hiatus is broken.
openbor # Newer versions break controls, needs research.
pico-8 # Metapackage, doesn't need to update
portmaster # Manually update version
ppsspp-sa # Manually update to release versions.
retroarch # Manually update to release versions.
rpcs3-sa # Need to update to llvm 16
scummvmsa # Updating breaks build packages
vice-lr # Updating breaks build patches
vice-sa # Doesn't support updating with the script.
vita3k-sa # Should be manually updated.
1 change: 0 additions & 1 deletion config/docker/package.mk
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ PKG_ARCH="@ARCH@"
PKG_DEPENDS_TARGET="toolchain"
PKG_SECTION="docker"
PKG_SITE=""
PKG_SHORTDESC=""
PKG_LONGDESC=""

PKG_IS_ADDON="yes"
Expand Down
1 change: 0 additions & 1 deletion config/emulators/3do.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1993"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/3do"
SYSTEM_EXTENSION=".iso .bin .chd .cue"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="3do"
SYSTEM_THEME="3do"
SYSTEM_WIKI_PATH="3do"
1 change: 0 additions & 1 deletion config/emulators/3ds.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2010"
SYSTEM_HARDWARE="portable"
SYSTEM_PATH="/storage/roms/3ds"
SYSTEM_EXTENSION=".3ds .3dsx .elf .axf .cci .cxi .app"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="3ds"
SYSTEM_THEME="3ds"
SYSTEM_WIKI_PATH="3ds"
1 change: 0 additions & 1 deletion config/emulators/amiga.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1985"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/amiga"
SYSTEM_EXTENSION=".zip .adf .uae .ipf .dms .adz .lha .m3u .hdf .hdz"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="amiga"
SYSTEM_THEME="amiga"
SYSTEM_WIKI_PATH="amiga"
1 change: 0 additions & 1 deletion config/emulators/amigacd32.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1994"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/amigacd32"
SYSTEM_EXTENSION=".iso .cue .lha .chd"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="amigacd32"
SYSTEM_THEME="amigacd32"
SYSTEM_WIKI_PATH="amigacd32"
1 change: 0 additions & 1 deletion config/emulators/amstradcpc.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1984"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/amstradcpc"
SYSTEM_EXTENSION=".dsk .cpr .sna .tap .cdt .kcr .voc .m3u .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="amstradcpc"
SYSTEM_THEME="amstradcpc"
SYSTEM_WIKI_PATH="amstradcpc"
1 change: 0 additions & 1 deletion config/emulators/arcade.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,5 @@ SYSTEM_RELEASE="0000"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/arcade"
SYSTEM_EXTENSION=".zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arcade"
SYSTEM_THEME="arcade"
1 change: 0 additions & 1 deletion config/emulators/arduboy.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2014"
SYSTEM_HARDWARE="portable"
SYSTEM_PATH="/storage/roms/arduboy"
SYSTEM_EXTENSION=".hex"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arduboy"
SYSTEM_THEME="arduboy"
SYSTEM_WIKI_PATH="arduboy"
1 change: 0 additions & 1 deletion config/emulators/atari2600.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1977"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/atari2600"
SYSTEM_EXTENSION=".a26 .bin .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atari2600"
SYSTEM_THEME="atari2600"
SYSTEM_WIKI_PATH="atari2600"
1 change: 0 additions & 1 deletion config/emulators/atari5200.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1982"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/atari5200"
SYSTEM_EXTENSION=".rom .xfd .atr .atx .cdm .cas .car .bin .a52 .xex .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atari5200"
SYSTEM_THEME="atari5200"
SYSTEM_WIKI_PATH="atari5200"
1 change: 0 additions & 1 deletion config/emulators/atari7800.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1986"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/atari7800"
SYSTEM_EXTENSION=".a78 .bin .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atari7800"
SYSTEM_THEME="atari7800"
SYSTEM_WIKI_PATH="atari7800"
1 change: 0 additions & 1 deletion config/emulators/atari800.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1979"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/atari800"
SYSTEM_EXTENSION=".rom .xfd .atr .atx .cdm .cas .car .bin .a52 .xex .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atari800"
SYSTEM_THEME="atari800"
SYSTEM_WIKI_PATH="atari800"
1 change: 0 additions & 1 deletion config/emulators/atarijaguar.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1993"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/atarijaguar"
SYSTEM_EXTENSION=".j64 .jag .rom .abs .cof .bin .prg"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atarijaguar"
SYSTEM_THEME="atarijaguar"
SYSTEM_WIKI_PATH="atarijaguar"
1 change: 0 additions & 1 deletion config/emulators/atarilynx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1989"
SYSTEM_HARDWARE="portable"
SYSTEM_PATH="/storage/roms/atarilynx"
SYSTEM_EXTENSION=".lnx .lyx .o .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atarilynx"
SYSTEM_THEME="atarilynx"
SYSTEM_WIKI_PATH="atarilynx"
1 change: 0 additions & 1 deletion config/emulators/atarist.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1985"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/atarist"
SYSTEM_EXTENSION=".st .msa .stx .dim .ipf .m3u .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atarist"
SYSTEM_THEME="atarist"
SYSTEM_WIKI_PATH="atarist"
1 change: 0 additions & 1 deletion config/emulators/atomiswave.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2003"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/atomiswave"
SYSTEM_EXTENSION=".lst .bin .dat .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="atomiswave arcade"
SYSTEM_THEME="atomiswave"
SYSTEM_WIKI_PATH="atomiswave"
1 change: 0 additions & 1 deletion config/emulators/c128.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1985"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/c128"
SYSTEM_EXTENSION=".d64 .d71 .d80 .d81 .d82 .g64 .g41 .x64 .t64 .tap .prg .p00 .crt .bin .d6z .d7z .d8z .g6z .g4z .x6z .cmd .m3u .vsf .nib .nbz .zip"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="c128"
SYSTEM_THEME="c128"
SYSTEM_WIKI_PATH="c128"
1 change: 0 additions & 1 deletion config/emulators/c16.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1984"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/c16"
SYSTEM_EXTENSION=".d64 .d71 .d80 .d81 .d82 .g64 .g41 .x64 .t64 .tap .prg .p00 .crt .bin .d6z .d7z .d8z .g6z .g4z .x6z .cmd .m3u .vsf .nib .nbz .zip"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="c16"
SYSTEM_THEME="c16"
SYSTEM_WIKI_PATH="c16"
1 change: 0 additions & 1 deletion config/emulators/c64.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1982"
SYSTEM_HARDWARE="computer"
SYSTEM_PATH="/storage/roms/c64"
SYSTEM_EXTENSION=".d64 .d71 .d80 .d81 .d82 .g64 .g41 .x64 .t64 .tap .prg .p00 .crt .bin .d6z .d7z .d8z .g6z .g4z .x6z .cmd .m3u .vsf .nib .nbz .zip"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="c64"
SYSTEM_THEME="c64"
SYSTEM_WIKI_PATH="c64"
1 change: 0 additions & 1 deletion config/emulators/cdi.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1991"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/cdi"
SYSTEM_EXTENSION=".chd .cue .iso"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="cdi"
SYSTEM_THEME="cdi"
SYSTEM_WIKI_PATH="cdi"
1 change: 0 additions & 1 deletion config/emulators/channelf.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1976"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/channelf"
SYSTEM_EXTENSION=".bin .chf .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="channelf"
SYSTEM_THEME="channelf"
SYSTEM_WIKI_PATH="channelf"
1 change: 0 additions & 1 deletion config/emulators/chip-8.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1978"
SYSTEM_HARDWARE="game engine"
SYSTEM_PATH="/storage/roms/chip-8"
SYSTEM_EXTENSION=".ch8 .sc8 .xo8"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="chip-8"
SYSTEM_THEME="chip-8"
SYSTEM_WIKI_PATH="chip-8"
1 change: 0 additions & 1 deletion config/emulators/colecovision.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1982"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/coleco"
SYSTEM_EXTENSION=".bin .col .rom .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="colecovision"
SYSTEM_THEME="colecovision"
SYSTEM_WIKI_PATH="colecovision"
1 change: 0 additions & 1 deletion config/emulators/cps1.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1988"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/cps1"
SYSTEM_EXTENSION=".zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arcade"
SYSTEM_THEME="cps1"
SYSTEM_WIKI_PATH="cps1"
1 change: 0 additions & 1 deletion config/emulators/cps2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1993"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/cps2"
SYSTEM_EXTENSION=".zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arcade"
SYSTEM_THEME="cps2"
SYSTEM_WIKI_PATH="cps2"
1 change: 0 additions & 1 deletion config/emulators/cps3.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1996"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/cps3"
SYSTEM_EXTENSION=".zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arcade"
SYSTEM_THEME="cps3"
SYSTEM_WIKI_PATH="cps3"
1 change: 0 additions & 1 deletion config/emulators/daphne.conf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ SYSTEM_MANUFACTURER="Arcade"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/daphne"
SYSTEM_EXTENSION=".daphne .singe"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="daphne arcade"
SYSTEM_THEME="daphne"
SYSTEM_WIKI_PATH="daphne"
1 change: 0 additions & 1 deletion config/emulators/doom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1993"
SYSTEM_HARDWARE="game engine"
SYSTEM_PATH="/storage/roms/doom"
SYSTEM_EXTENSION=".doom"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="doom"
SYSTEM_THEME="doom"
SYSTEM_WIKI_PATH="doom"
1 change: 0 additions & 1 deletion config/emulators/dreamcast.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1998"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/dreamcast"
SYSTEM_EXTENSION=".cdi .gdi .chd .m3u .cue"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="dreamcast"
SYSTEM_THEME="dreamcast"
SYSTEM_WIKI_PATH="dreamcast"
1 change: 0 additions & 1 deletion config/emulators/easyrpg.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2003"
SYSTEM_HARDWARE="game engine"
SYSTEM_PATH="/storage/roms/easyrpg"
SYSTEM_EXTENSION=".zip .easyrpg .ldb"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="easyrpg"
SYSTEM_THEME="easyrpg"
SYSTEM_WIKI_PATH="easyrpg"
1 change: 0 additions & 1 deletion config/emulators/famicom.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1983"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/famicom"
SYSTEM_EXTENSION=".nes .unif .unf .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="nes"
SYSTEM_THEME="famicom"
SYSTEM_WIKI_PATH="nes"
1 change: 0 additions & 1 deletion config/emulators/fbn.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2002"
SYSTEM_HARDWARE="arcade"
SYSTEM_PATH="/storage/roms/fbneo"
SYSTEM_EXTENSION=".7z .zip"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="arcade"
SYSTEM_THEME="fbneo"
SYSTEM_WIKI_PATH="fbn"
1 change: 0 additions & 1 deletion config/emulators/fds.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1986"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/fds"
SYSTEM_EXTENSION=".fds .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="fds"
SYSTEM_THEME="fds"
SYSTEM_WIKI_PATH="fds"
1 change: 0 additions & 1 deletion config/emulators/gameandwatch.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="1980"
SYSTEM_HARDWARE="portable"
SYSTEM_PATH="/storage/roms/gameandwatch"
SYSTEM_EXTENSION=".mgw .zip .7z"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="gameandwatch"
SYSTEM_THEME="gameandwatch"
SYSTEM_WIKI_PATH="gameandwatch"
1 change: 0 additions & 1 deletion config/emulators/gamecube.conf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ SYSTEM_RELEASE="2001"
SYSTEM_HARDWARE="console"
SYSTEM_PATH="/storage/roms/gamecube"
SYSTEM_EXTENSION=".gcm .iso .gcz .ciso .wbfs .rvz .dol"
SYSTEM_COMMAND="/usr/bin/runemu.sh %ROM% -P%SYSTEM% --core=%CORE% --emulator=%EMULATOR% --controllers=\"%CONTROLLERSCONFIG%\""
SYSTEM_PLATFORM="gc"
SYSTEM_THEME="gc"
SYSTEM_WIKI_PATH="gamecube"
Loading

0 comments on commit e667908

Please sign in to comment.