File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed
Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -28,14 +28,16 @@ node server.js
2828# Connect debug/stdio channel
2929socat - TCP:< ps4> :5052
3030
31- # Send elf file
31+ # Send elf file to the user space process for execution
3232socat -u FILE:ps4sdk-examples/libless/stress/bin/stress TCP:< ps4> :5053
33-
34- # Send kernel elf file (mode for long-running code, or module-like code)
33+ # OR Send kernel elf file (mode for long-running code, or module-like code)
3534socat -u FILE:ps4sdk-examples/kernel/function-hook/bin/function-hook TCP:< ps4> :5055
36-
37- # Send kernel elf file (runs in webbrowser process)
35+ # OR Send kernel elf file (runs in the browsers process, but is loaded and executed into the kernel)
3836socat -u FILE:ps4sdk-examples/kernel/cache/bin/cache TCP:< ps4> :5054
37+
38+ # Some examples (esp. kernel) use a second socket for their comminication. The default choice is 5088
39+ # Connect to it after the upload to trigger the execution of the code - please see the examples sources for more
40+ socat - TCP:< ps4> :5088
3941```
4042
4143## Docker images
You can’t perform that action at this time.
0 commit comments