I'm trying to load an EBOOT from flash, so my only method of doing so (in the 3.XX kernel) is to load it as a module, except whenever I do so I get 0x80020148 error, because as far as I'm aware you can only load a prx as a module, and not an EBOOT. So, I guess my question is, can you load an EBOOT as a module any other way, or is there any way of stripping down the EBOOT to some form of readable module?
Also, whenever I try and compile using anything from the modulemgr library, I get this error:
Error, could not fixup imports, stubs out of order.
Ensure the SDK libraries are linked in last to correct this error
make: *** [project4.elf] Error 1
That function doesn't work in 3.XX kernel, it was replaced by sceKernelLoadExecMs2, which cannot boot anything from flash. Plus its loadexec'ing, and I need it to load as a module. But thanks for the help all the same ;)