mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
Fixed Xemu bios files and integrated the download of the free hd image
This commit is contained in:
parent
20e2c7343a
commit
6acfddb37f
|
@ -25,6 +25,6 @@ mem_limit = '128'
|
||||||
[sys.files]
|
[sys.files]
|
||||||
bootrom_path = '/home/deck/retrodeck/bios/mcpx_1.0.bin'
|
bootrom_path = '/home/deck/retrodeck/bios/mcpx_1.0.bin'
|
||||||
flashrom_path = '/home/deck/retrodeck/bios/Complex.bin'
|
flashrom_path = '/home/deck/retrodeck/bios/Complex.bin'
|
||||||
eeprom_path = '/home/deck/retrodeck/saves/xemu/eeprom.bin'
|
eeprom_path = '/home/deck/retrodeck/saves/xbox-eeprom.bin'
|
||||||
hdd_path = '/home/deck/retrodeck/bios/xbox_harddisk.qcow2'
|
hdd_path = '/home/deck/retrodeck/bios/xbox_hdd.qcow2'
|
||||||
|
|
||||||
|
|
|
@ -151,6 +151,10 @@ standalones_init() {
|
||||||
mkdir -pv $rdhome/saves/xemu
|
mkdir -pv $rdhome/saves/xemu
|
||||||
cp -fv $emuconfigs/xemu.toml /var/data/xemu/xemu.toml
|
cp -fv $emuconfigs/xemu.toml /var/data/xemu/xemu.toml
|
||||||
sed -i 's#/home/deck/retrodeck#'$rdhome'#g' /var/data/xemu/xemu.toml
|
sed -i 's#/home/deck/retrodeck#'$rdhome'#g' /var/data/xemu/xemu.toml
|
||||||
|
# Preparing HD dummy Image
|
||||||
|
wget "https://github.com/mborgerson/xemu-hdd-image/releases/latest/download/xbox_hdd.qcow2.zip" -P $rdhome/bios/
|
||||||
|
unzip $rdhome/bios/xbox_hdd.qcow2.zip $rdhome/bios/
|
||||||
|
rm -rfv $rdhome/bios/xbox_hdd.qcow2.zip
|
||||||
|
|
||||||
# PICO-8
|
# PICO-8
|
||||||
# Moved PICO-8 stuff in the finit as only it knows here roms folders is
|
# Moved PICO-8 stuff in the finit as only it knows here roms folders is
|
||||||
|
|
Loading…
Reference in a new issue