I got this error when trying to do that: 0x80020149 (SCE_KERNEL_ERROR_ILLEGAL_PERM_CALL). Can somebody please explain this error?
And is there any way I can load a usermode PRX from a kernelmode PRX? Or otherwise load a usermode PRX as a plugin on CFW?
Thanks for your time! :)
Loading a usermode PRX from a kernelmode PRX
Loading a usermode PRX from a kernelmode PRX
The Incredible Bill Gates wrote:The obvious mathematical breakthrough would be development of an easy way to factor large prime numbers.
Yes I can explain.
You are probably trying to compile your Kernel Module using newlib, doing so results in Permission Errors on loading modules...
To remedy that you will have to rely on the smaller kernel lib...
So make sure your makefile contains the following 2 lines...
USE_KERNEL_LIBC = 1
USE_KERNEL_LIBS = 1
In doing so you will be able to load modules just fine.
But keep in mind that a lot of newlib features wont be available, so some functions you might be using you will have to reimplement or import yourself...
You are probably trying to compile your Kernel Module using newlib, doing so results in Permission Errors on loading modules...
To remedy that you will have to rely on the smaller kernel lib...
So make sure your makefile contains the following 2 lines...
USE_KERNEL_LIBC = 1
USE_KERNEL_LIBS = 1
In doing so you will be able to load modules just fine.
But keep in mind that a lot of newlib features wont be available, so some functions you might be using you will have to reimplement or import yourself...
Been gone for some time. Now I'm back. Someone mind getting me up-2-date?