mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2024-11-22 05:55:38 +00:00
Fixed tools section
This commit is contained in:
parent
a24f379622
commit
64d1ec9e1f
|
@ -1612,7 +1612,7 @@
|
||||||
<theme>zxspectrum</theme>
|
<theme>zxspectrum</theme>
|
||||||
</system>
|
</system>
|
||||||
<system>
|
<system>
|
||||||
<name>zzztools</name>
|
<name>tools</name>
|
||||||
<fullname>RetroDECK Tools</fullname>
|
<fullname>RetroDECK Tools</fullname>
|
||||||
<path>/var/config/retrodeck/tools</path>
|
<path>/var/config/retrodeck/tools</path>
|
||||||
<extension>.sh .SH</extension>
|
<extension>.sh .SH</extension>
|
||||||
|
|
|
@ -2,12 +2,30 @@
|
||||||
|
|
||||||
THIS MUST BE PUT IN RETRODECK.SH
|
THIS MUST BE PUT IN RETRODECK.SH
|
||||||
mkdir -p $rdhome/roms/ps3/emudir
|
mkdir -p $rdhome/roms/ps3/emudir
|
||||||
mkdir -p $rdhome/roms/ps3/dump
|
#mkdir -p $rdhome/roms/ps3/dump cannot install in nogui
|
||||||
|
|
||||||
|
#user must install via emulator
|
||||||
|
|
||||||
|
source global.sh
|
||||||
|
|
||||||
|
install_ps3_fw(){
|
||||||
|
|
||||||
|
# Implement a check to see if the firmware is already installed then call this function
|
||||||
|
|
||||||
|
mkdir -p $rdhome/roms/ps3/.emudir
|
||||||
|
|
||||||
|
mkdir -p $rdhome/roms/ps3/tmp
|
||||||
|
chmod 777 $rdhome/roms/ps3/tmp
|
||||||
|
wget http://dus01.ps3.update.playstation.net/update/ps3/image/us/2022_0510_95307e1b51d3bcc33a274db91488d29f/PS3UPDAT.PUP -P $rdhome/roms/ps3/tmp/
|
||||||
|
rpcs3 --installfw $rdhome/roms/ps3/tmp/PS3UPDAT.PUP
|
||||||
|
rm -rf $rdhome/roms/ps3/tmp
|
||||||
|
}
|
||||||
|
|
||||||
zenity: "Hey I will destroy everything in $rdhome/roms/ps3/dump"
|
zenity: "Hey I will destroy everything in $rdhome/roms/ps3/dump"
|
||||||
|
|
||||||
zenity: this will take a while, have a coffee
|
zenity: this will take a while, have a coffee
|
||||||
|
|
||||||
|
# this seems not to be working as rpcs3 doesn't support installation in --no-gui mode
|
||||||
rpcs3 --installpkg $rdhome/roms/ps3/dump/*
|
rpcs3 --installpkg $rdhome/roms/ps3/dump/*
|
||||||
|
|
||||||
for each folder in $rdhome/roms/ps3/emudir/dev_hdd0/game/
|
for each folder in $rdhome/roms/ps3/emudir/dev_hdd0/game/
|
||||||
|
|
Loading…
Reference in a new issue