mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 07:05:10 +01:00
use -lruntimeiospatch (non-verbose)
This commit is contained in:
parent
184477b448
commit
3c1991aedc
@ -48,7 +48,7 @@ LDFLAGS = -g $(MACHDEP) -Wl,-Map,$(notdir $@).map -Wl,--section-start,.init=0x8
|
||||
#---------------------------------------------------------------------------------
|
||||
# any extra libraries we wish to link with the project
|
||||
#---------------------------------------------------------------------------------
|
||||
LIBS := -ldi -lpng -lz -lfat -lntfs -lwiiuse -lbte -lasnd -logc -lvorbisidec -lfreetype -lmxml -lext2fs
|
||||
LIBS := -ldi -lpng -lz -lfat -lntfs -lwiiuse -lbte -lasnd -logc -lvorbisidec -lfreetype -lmxml -lext2fs -lruntimeiospatch
|
||||
#---------------------------------------------------------------------------------
|
||||
# list of directories containing libraries, this must be the top level containing
|
||||
# include and lib
|
||||
|
@ -1,83 +0,0 @@
|
||||
#include <gccore.h>
|
||||
#include <ogc/machine/processor.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include "gecko.h"
|
||||
#include "../xprintf.h"
|
||||
#include "Network/wifi_gecko.h"
|
||||
#include "RuntimeIOSPatch.h"
|
||||
|
||||
#define MEM_PROT 0xD8B420A
|
||||
|
||||
const u8 di_readlimit_old[] = {
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||
0x00, 0x01, 0x40, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46, 0x0A, 0x00, 0x00,
|
||||
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00,
|
||||
0x7E, 0xD4, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08
|
||||
};
|
||||
const u8 di_readlimit_patch[] = { 0x7e, 0xd4 };
|
||||
|
||||
const u8 isfs_permissions_old[] = { 0x42, 0x8B, 0xD0, 0x01, 0x25, 0x66 };
|
||||
const u8 isfs_permissions_patch[] = { 0x42, 0x8B, 0xE0, 0x01, 0x25, 0x66 };
|
||||
const u8 setuid_old[] = { 0xD1, 0x2A, 0x1C, 0x39 };
|
||||
const u8 setuid_patch[] = { 0x46, 0xC0 };
|
||||
const u8 es_identify_old[] = { 0x28, 0x03, 0xD1, 0x23 };
|
||||
const u8 es_identify_patch[] = { 0x00, 0x00 };
|
||||
const u8 hash_old[] = { 0x20, 0x07, 0x4B, 0x0B };
|
||||
const u8 hash_patch[] = { 0x00 };
|
||||
const u8 new_hash_old[] = { 0x20, 0x07, 0x4B, 0x0B };
|
||||
const u8 addticket_vers_check[] = { 0xD2, 0x01, 0x4E, 0x56 };
|
||||
const u8 addticket_patch[] = { 0xE0 };
|
||||
|
||||
u32 apply_patch(const char *name, const u8 *old, u32 old_size, const u8 *patch, u32 patch_size, u32 patch_offset)
|
||||
{
|
||||
xprintf("Applying patch %s:", name);
|
||||
u8 *ptr = (u8 *) 0x93400000;
|
||||
u32 i, found = 0;
|
||||
u8 *start;
|
||||
|
||||
while ((u32) ptr < (0x94000000 - old_size))
|
||||
{
|
||||
if(!memcmp(ptr, old, old_size))
|
||||
{
|
||||
found++;
|
||||
start = ptr + patch_offset;
|
||||
for (i = 0; i < patch_size; i++)
|
||||
*(start + i) = patch[i];
|
||||
ptr += patch_size;
|
||||
DCFlushRange((u8 *) (((u32) start) >> 5 << 5), (patch_size >> 5 << 5) + 64);
|
||||
}
|
||||
ptr++;
|
||||
}
|
||||
|
||||
if(found)
|
||||
xprintf(" Patched\n");
|
||||
else
|
||||
xprintf(" Failed\n");
|
||||
|
||||
return found;
|
||||
}
|
||||
|
||||
u32 runtimePatchApply()
|
||||
{
|
||||
u32 count = 0;
|
||||
write16(MEM_PROT, 0);
|
||||
count += apply_patch("Trucha", hash_old,
|
||||
sizeof(hash_old), hash_patch, sizeof(hash_patch), 1);
|
||||
count += apply_patch("New Trucha", new_hash_old,
|
||||
sizeof(new_hash_old), hash_patch, sizeof(hash_patch), 1);
|
||||
count += apply_patch("ES_Identify", es_identify_old,
|
||||
sizeof(es_identify_old), es_identify_patch, sizeof(es_identify_patch), 2);
|
||||
count += apply_patch("NAND Permissions", isfs_permissions_old,
|
||||
sizeof(isfs_permissions_old), isfs_permissions_patch,
|
||||
sizeof(isfs_permissions_patch), 0);
|
||||
count += apply_patch("add ticket patch", addticket_vers_check,
|
||||
sizeof(addticket_vers_check), addticket_patch, sizeof(addticket_patch), 0);
|
||||
count += apply_patch("ES_SetUID", setuid_old, sizeof(setuid_old),
|
||||
setuid_patch, sizeof(setuid_patch), 0);
|
||||
count += apply_patch("DI ReadLimit", di_readlimit_old, sizeof(di_readlimit_old),
|
||||
di_readlimit_patch, sizeof(di_readlimit_patch), 12);
|
||||
write16(MEM_PROT, 1);
|
||||
return count;
|
||||
}
|
@ -1,14 +0,0 @@
|
||||
#ifndef _RUNTIMEIOSPATCH_H_
|
||||
#define _RUNTIMEIOSPATCH_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
u32 runtimePatchApply();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
||||
#endif
|
@ -17,6 +17,7 @@
|
||||
#include <wiiuse/wpad.h>
|
||||
#include <dirent.h>
|
||||
#include <time.h>
|
||||
#include <runtimeiospatch.h>
|
||||
|
||||
#include "filelist.h"
|
||||
#include "FreeTypeGX.h"
|
||||
@ -40,7 +41,6 @@
|
||||
#include "Network/wiiload_gecko.h"
|
||||
#include "Neek/uneek_fs.h"
|
||||
#include "Neek/bootneek.h"
|
||||
#include "Tools/RuntimeIOSPatch.h"
|
||||
|
||||
#define HAVE_AHBPROT ((*(vu32*)0xcd800064 == 0xFFFFFFFF) ? 1 : 0)
|
||||
|
||||
@ -245,7 +245,7 @@ main(int argc, char *argv[])
|
||||
{
|
||||
if(HAVE_AHBPROT)
|
||||
{
|
||||
runtimePatchApply();
|
||||
IosPatch_RUNTIME(true, false, false, false);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user