![]() |
| Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact |
| ||||||
This is a discussion on slim_full.prx within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; Bubbletune made a plugin named slim_full.prx and it was for the 4.01 m33. And it was nice plugin. Now i ...
![]() |
|
|
LinkBack | Thread Tools |
|
|
#1 |
![]() Pro Hacker
|
Bubbletune made a plugin named slim_full.prx and it was for the 4.01 m33.
And it was nice plugin. Now i wonder if anyone can modify it to work with the 5.00 m33 ? Her is the src
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
Last edited by nickxab; 09-18-2009 at 02:26 PM.. |
|
|
|
|
|
#3 |
![]() Pro Hacker
|
I don't know how to do it
so ask help from developers.
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
|
|
|
#6 |
![]() Pro Hacker
|
and put the slim icons in 1000.
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
|
|
|
#8 |
![]() Pro Hacker
|
I mean to "unlock" the 1 seg,skype,the umd cache and icons like thas in the 1000.
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
|
|
|
#9 |
![]() ![]() Developer
|
I had updated this before I was going to release the Slim Colours Patch, but Sony implemented some new code, and this way of patching it no longer works. It's possible to solve though, I just haven't bothered as I figured Slim colours were enough.
__________________
Bubbletune's Release Site |
|
|
|
|
|
#10 |
![]() Pro Hacker
|
Can you release a new version ?
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
|
|
|
#11 | |
![]() Enter Custom Title
Join Date: Sep 2006
Real First Name: Davee
Location: Perth, Scotland
Posts: 1,041
Trader Feedback: 0
|
Quote:
But I made a patch which should be firmware independant. Note: untested. Code:
/*
slim full by Bubbletune
Updated by Davee
*/
#include <pspsdk.h>
#include <pspkernel.h>
#include <systemctrl.h>
#include <string.h>
PSP_MODULE_INFO("slim_full", 0x1007, 0, 1);
STMOD_HANDLER previous = NULL;
#define MIPS_J(f) (0x08000000 | (((u32)(f) & 0x0FFFFFFC) >> 2))
int OnModuleStart(SceModule2 *mod)
{
if (strcmp(mod->modname, "sceVshBridge_Driver") == 0)
{
int i = 0, j;
u32 stub_start = (u32)mod->stub_top;
u32 stubsize = mod->stub_size;
u32 func = MIPS_J(sctrlHENFindFunction("sceSystemMemoryManager", "SysMe****Kernel", 0x6373995D));
while (i < stubsize)
{
SceLibraryStubTable *stub = (SceLibraryStubTable *)(stub_start + i);
if (stub->libname && strcmp(stub->libname, "SysMe****Kernel") == 0)
{
u32 **table = (u32 *)stub->stubtable;
for (j = 0; j < stub->stubcount; j++)
{
if (table[j][0] == func)
{
table[j][0] = 0x03E00008;
table[j][1] = 0x24020001;
sceKernelDcacheWritebackAll();
sceKernelIcacheClearAll();
goto exit;
}
}
}
i += (stub->len << 2);
}
}
exit:
if (!previous)
return 0;
return previous(mod);
}
int module_start(SceSize args, void *argp)
{
previous = sctrlHENSetStartModuleHandler(OnModuleStart);
return 0;
}
__________________
VSH Scramble Patcher || VSH Module Descrambler || Unlimted Character Version Changer (5.00) |
|
|
|
|
|
|
#12 |
![]() ![]() Developer
|
No, I did update the nid, but it didn't work, so that's why it was never released. It crashes the PSP with an RRoD (well, my manually updated version did), probably because of some new checks regarding the model by Sony.
__________________
Bubbletune's Release Site |
|
|
|
|
|
#13 |
![]() Pro Hacker
|
So it isn't possible to fix it ?
__________________
Phat PSP 1004 TA-079 v3+Sony 16GB Mark II+Two Sony Softmoded Pandoras with 5.00 m33-6+1.50 kernel+5.01 patch+6.10 version.txt iPhone jailbroken with OS 3.1.2 PS2 Slim model SCPH-75004 + MC boot 1.8 Fujitsu Simens Amilo PA1510+2.5GB Ram+AMD Sempron 3400+ 1.8GHz+Windows XP My site My qj blog My guides Patch the 5.50/6.00 games to work with all FWs My CWCheat databases ![]() ![]() ![]() ![]() ![]() ![]()
|
|
|
|
|
|
#15 |
![]() The Cake Is A LIE
|
__________________
I hate those monkeys ZOMG!
-~Slasher~- ![]() |
|
|
|
|
|
#16 |
![]() Enter Custom Title
Join Date: Sep 2006
Real First Name: Davee
Location: Perth, Scotland
Posts: 1,041
Trader Feedback: 0
|
__________________
VSH Scramble Patcher || VSH Module Descrambler || Unlimted Character Version Changer (5.00) |
|
|
|
|
|
#17 | |
![]() The Cake Is A LIE
|
Quote:
Ok then, everyone's not right 100% of the time. New answer: Not unless we reverse engineer the new system checks
__________________
I hate those monkeys ZOMG!
-~Slasher~- ![]() |
|
|
|
|
![]() |
| Tags |
| slimfullprx |
| Thread Tools | |
|
|