Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bucanero/ps3loadx
PS3LoadX
https://github.com/bucanero/ps3loadx
loader ps3 ps3-tool psl1ght
Last synced: 7 days ago
JSON representation
PS3LoadX
- Host: GitHub
- URL: https://github.com/bucanero/ps3loadx
- Owner: bucanero
- License: mit
- Created: 2020-08-02T23:25:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-09T11:07:45.000Z (almost 2 years ago)
- Last Synced: 2023-03-04T04:57:31.396Z (over 1 year ago)
- Topics: loader, ps3, ps3-tool, psl1ght
- Language: C
- Homepage: http://www.bucanero.com.ar/
- Size: 653 KB
- Stars: 11
- Watchers: 3
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PS3loadX
PS3loadX is the evolution of [PSL1GHT](https://github.com/ps3dev/PSL1GHT/) PS3load sample, now using the [Tiny3D](https://github.com/wargio/tiny3D/) library. I hope this version helps you to work easily ;)
## Features
- You can load SELF files using the net.
- You can load applications from USB/ HDD devices
- You can install applications to the USB or HDD devices from one .zip file
- You can copy applications from USB devices to HDD
- Also you can delete installed applications.![PS3loadX](https://user-images.githubusercontent.com/1153055/89194908-65477980-d57e-11ea-8d7f-67e73060b9a5.png)
NOTE:
-----You can include these lines in your app to return to the PS3LoadX application
```c
#include
.....
sysProcessExitSpawn2("/dev_hdd0/game/PSL145310/RELOAD.SELF", NULL, NULL, NULL, 0, 1001, SYS_PROCESS_SPAWN_STACK_SIZE_1M);
```ZIP Format
----------```
app_folder
|
|---- EBOOT.BIN
|
|---- ICON0.PNG
|
|---- title.txt
````app_folder`: folder to install the app
- in USB devices `/dev_usb000/homebrew/app_folder`
- from HDD: `/dev_hdd0/game/PSL145310/homebrew/app_folder``EBOOT.BIN`: SELF file
`ICON0.PNG`: optional app. image
`title.txt`: it countain one text line with the name app name. If it doesn't exists PS3LoadX uses `app_folder` as title. i.e: "My application - test 1"
Sending SELF files from the net
-------------------------------You need to send the `.self` from the PC using `psloadx.exe` (see PSL1GHT tools)
For example from one .bat file under Windows:
```
set PS3LOAD = tcp:192.168.2.12 // -> PS3 IPps3load.exe *.self
pause
```Installing ZIP files
--------------------HDD0 is selected by default. To change to USB you need plug one device.
When you send a ZIP file the app ask to you if you want really install it or not in the current device.
Select one Application
----------------------Use LEFT/RIGHT in digital pad
Copying files from USB
----------------------Press CIRCLE and select `Yes` using digital pad
Deleting Applications
---------------------Press SQUARE and select `Yes` using digital pad
Launch Applications
-------------------Press CROSS and select `Yes` using digital pad
Exiting from PS3LoadX
---------------------Press TRIANGLE to exit.
Also you can force exit pressing `PS` (if the network crashes use it)