Skip to content

Commit

Permalink
Added support for FW 3.57 (#556)
Browse files Browse the repository at this point in the history
* Added support for FW 3.73

* Added support for FW 3.73

* Added support for FW 3.57

* Added support for FW 3.57
  • Loading branch information
Yoti authored and TheOfficialFloW committed Jan 1, 2020
1 parent 246d318 commit 8c10171
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/kernel/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@ int _shellKernelMountById(ShellMountIdArgs *args) {

switch (tai_info.module_nid) {
case 0x94CEFE4B: // 3.55 retail
case 0xDFBC288C: // 3.57 retail
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x2DE1, (uintptr_t *)&sceAppMgrFindProcessInfoByPid);
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x19e15, (uintptr_t *)&sceAppMgrMountById);
module_get_offset(KERNEL_PID, tai_info.modid, 0, 0x19E15, (uintptr_t *)&sceAppMgrMountById);
break;

case 0xDBB29DB7: // 3.60 retail
Expand Down Expand Up @@ -269,6 +270,7 @@ int module_start(SceSize args, void *argp) {
// Get important function
switch (info.module_nid) {
case 0x7A1DBDE6: // 3.55 retail
case 0xEF58597E: // 3.57 retail
case 0x9642948C: // 3.60 retail
module_get_offset(KERNEL_PID, info.modid, 0, 0x138C1, (uintptr_t *)&sceIoFindMountPoint);
break;
Expand Down
1 change: 1 addition & 0 deletions modules/patch/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ int module_start(SceSize args, void *argp) {
uint32_t nop_nop_opcode = 0xBF00BF00;
switch (info.module_nid) {
case 0x94CEFE4B: // 3.55 retail
case 0xDFBC288C: // 3.57 retail
case 0xDBB29DB7: // 3.60 retail
case 0x1C9879D6: // 3.65 retail
hooks[0] = taiInjectDataForKernel(KERNEL_PID, info.modid, 0, 0xB338, &nop_nop_opcode, 4);
Expand Down

0 comments on commit 8c10171

Please sign in to comment.