I made a function to excute an eboot :
Code: Select all
void loadeboot(const char *pbpath)
{
const u32 pbplen = strlen(pbpath)+1;
struct SceKernelLoadExecParam eloader;
eloader.args = pbplen;
eloader.argp = pbpath;
eloader.key = NULL;
eloader.size = sizeof(eloader) + pbplen;
sceKernelLoadExec(pbpath,&eloader);
}
and call the function :
Code: Select all
loadeboot("ms0:/PSP/GAME380/WEB/EBOOT.pbp");
The eboot loads the psp orginal webbrowser (like in IRSHELL)
It compiles fine, but when i load the eboot in my app it just shows a black screen for some seconds and psp power off
I'm running in kernel mode, and it's kxploited
When i'm trying to work in user mode, my app(Not the webbrowser) doesn't load in the xmb.