Merge branch 'dev' of github.com:justenoughlinuxos/distribution into dev
This commit is contained in:
commit
1f08c25de6
4 changed files with 11 additions and 8 deletions
13
BUILDING.md
13
BUILDING.md
|
@ -130,21 +130,24 @@ For development build, you can use the following env variables to customize the
|
|||
|
||||
**SSH keys**
|
||||
```
|
||||
export JELOS_SSH_KEYS_FILE=~/.ssh/jelos/authorized_keys
|
||||
export LOCAL_SSH_KEYS_FILE=~/.ssh/jelos/authorized_keys
|
||||
```
|
||||
**WiFi SSID and password**
|
||||
```
|
||||
export JELOS_WIFI_SSID=MYWIFI
|
||||
export JELOS_WIFI_KEY=secret
|
||||
export LOCAL_WIFI_SSID=MYWIFI
|
||||
export LOCAL_WIFI_KEY=secret
|
||||
```
|
||||
|
||||
**Screenscraper, GamesDB, and RetroAchievements**
|
||||
|
||||
To enable Screenscraper, GamesDB, and RetroAchievements, register at each site and apply the api keys in ~/developer_settings.conf. This configuration is picked up by EmulationStation during the build.
|
||||
To enable Screenscraper, GamesDB, and RetroAchievements, register at each site and apply the api keys in ~/developer_settings.conf or add them as environment variables. Unsetting one of the variables will disable it in EmulationStation. This configuration is picked up by EmulationStation during the build.
|
||||
|
||||
```
|
||||
export SCREENSCRAPER_DEV_LOGIN="devid=DEVID&devpassword=DEVPASSWORD
|
||||
# Apply for a Screenscraper API Key here: https://www.screenscraper.fr/forumsujets.php?frub=12&numpage=0
|
||||
export SCREENSCRAPER_DEV_LOGIN="devid=DEVID&devpassword=DEVPASSWORD"
|
||||
# Apply for a GamesDB API Key here: https://forums.thegamesdb.net/viewforum.php?f=10
|
||||
export GAMESDB_APIKEY="APIKEY"
|
||||
# Find your Cheevos Web API key here: https://retroachievements.org/controlpanel.php
|
||||
export CHEEVOS_DEV_LOGIN="z=DEVID&y=DEVPASSWORD"
|
||||
```
|
||||
|
||||
|
|
|
@ -10,7 +10,7 @@ case ${DEVICE} in
|
|||
RG552|handheld)
|
||||
PKG_SITE="https://github.com/dolphin-emu/dolphin"
|
||||
PKG_URL="${PKG_SITE}.git"
|
||||
PKG_VERSION="7cd9a78ebf6e49b21a5a5eee99858822a8946faa"
|
||||
PKG_VERSION="000c6c48137028284598043d6f116ac959f41042"
|
||||
PKG_PATCH_DIRS+=" wayland"
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -10,7 +10,7 @@ PKG_SHORTDESC="Fast PlayStation 1 emulator for x86-64/AArch32/AArch64 "
|
|||
|
||||
case ${DEVICE} in
|
||||
RG552|handheld)
|
||||
PKG_VERSION="b881c7e7c4e8f5ca41cbd722306a205818ff93ac"
|
||||
PKG_VERSION="9d23df3aba5f132fdc5ad46da47c90d77bbf4725"
|
||||
PKG_PATCH_DIRS+=" new"
|
||||
;;
|
||||
*)
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# Copyright (C) 2022-present BrooksyTech (https://github.com/brooksytech)
|
||||
|
||||
PKG_NAME="dolphin"
|
||||
PKG_VERSION="016a5926aeda89087a073b1e6d245396da4b2256"
|
||||
PKG_VERSION="0df1b5be3be8884522ca15de71deaaa8143d0d09"
|
||||
PKG_ARCH="any"
|
||||
PKG_LICENSE="GPLv2"
|
||||
PKG_DEPENDS_TARGET="toolchain libevdev libdrm ffmpeg zlib libpng lzo libusb"
|
||||
|
|
Loading…
Reference in a new issue