| View previous topic :: View next topic |
| Author |
Message |
moonlight
Joined: 26 Oct 2005 Posts: 567
|
Posted: Wed May 10, 2006 6:38 am Post subject: sceKernelLoadExecBufferPlain |
|
|
This function executes a plain module from memory (unfortunally it can't execute plain kernel prx's, but no problem with user prx's and kernel elf's).
It's only a kernel export.
| Code: |
/**
* Executes a new executable from a memory buffer.
*
* @param bufsize - Size in bytes of the buffer pointed by buf.
* @param buf - Pointer to a buffer containing the module to execute.
* @param param - Pointer to a ::SceKernelLoadExecParam structure, or NULL.
*
* @return < 0 on error (if it returns)
*/
int sceKernelLoadExecBufferPlain(SceSize bufsize, void *buf, struct SceKernelLoadExecParam *param); |
Last edited by moonlight on Wed May 10, 2006 8:41 am; edited 1 time in total |
|
| Back to top |
|
 |
TyRaNiD
Joined: 18 Jan 2004 Posts: 918
|
Posted: Wed May 10, 2006 6:43 am Post subject: |
|
|
| You should be able to execute plain kernel elfs using reboothook from psplink in theory, of course the patch could probably be put into your nokxploit thing :) |
|
| Back to top |
|
 |
moonlight
Joined: 26 Oct 2005 Posts: 567
|
Posted: Wed May 10, 2006 7:00 am Post subject: |
|
|
| TyRaNiD wrote: | | You should be able to execute plain kernel elfs using reboothook from psplink in theory, of course the patch could probably be put into your nokxploit thing :) |
I know about your reboothook. It's great, thanks to that i can execute the own psplink.prx in "vsh" mode :) |
|
| Back to top |
|
 |
dot_blank

Joined: 28 Sep 2005 Posts: 498 Location: Brasil
|
Posted: Wed May 10, 2006 8:14 am Post subject: |
|
|
mmm tasty :) _________________ 10011011 00101010 11010111 10001001 10111010 |
|
| Back to top |
|
 |
|