Hacking Disk Channel Loading Without CIOSCORP

  • Thread starter Thread starter truballr
  • Start date Start date
  • Views Views 56,211
  • Replies Replies 354
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?
 
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?


I have installed 0.27 without problems and behaves well

my wii is PAL
 
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?
I have installed it also with no problems NTSC
 
aquilino said:
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?


I have installed 0.27 without problems and behaves well

my wii is PAL
Aquilino, do you think its possible for me to install my own background screen and sound?
 
Hmm strange issue... by the way aqulino, you should probably use the su cert data from anytitle deleter... it's the reason it fails on some wiis in sys menu identify step...

I also faced the same situation, replacing it with the su cert, ticket and tmd solved it...

Posts merged

truballr said:
aquilino said:
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?


I have installed 0.27 without problems and behaves well

my wii is PAL
Aquilino, do you think its possible for me to install my own background screen and sound?

Send me an mp3 and 640x480 image, I can compile one for you...
 
WiiCrazy said:
Hmm strange issue... by the way aqulino, you should probably use the su cert data from anytitle deleter... it's the reason it fails on some wiis in sys menu identify step...

I also faced the same situation, replacing it with the su cert, ticket and tmd solved it...

Posts merged

truballr said:
aquilino said:
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?


I have installed 0.27 without problems and behaves well

my wii is PAL
Aquilino, do you think its possible for me to install my own background screen and sound?

Send me an mp3 and 640x480 image, I can compile one for you...
OK,
but is it possible to have it easily inserted anytime,
I don't want to request one every time aquilino updates the POC launcher.
 
truballr said:
aquilino said:
WiiCrazy said:
Well I installed preloader 0.27 to my pal wii and was unable to patch system menu... it just displays system files corrupted message... I tested both aquilino's menu patcher and my own menu loader modification...

Anyone else can confirm this behaviour with 0.27?


I have installed 0.27 without problems and behaves well

my wii is PAL
Aquilino, do you think its possible for me to install my own background screen and sound?

yes truballr
 
truballr said:
OK,
but is it possible to have it easily inserted anytime,
I don't want to request one every time aquilino updates the POC launcher.

Well it's most efficient if mp3 and image compiled into the executing dol... it increases the dol size but still it boots really fast... maybe it's faster then say loaded from sd card...

by the way last time I checked fatInitDefault call was not working with preloader... so you can't use the sd card actually in the autobooting dol... but of course this intro stuff could be put into the launched channel...

Currently though my stuff works linking the mp3 and jpeg into the dol... so, no
smile.gif
 
WiiCrazy said:
Hmm strange issue... by the way aqulino, you should probably use the su cert data from anytitle deleter... it's the reason it fails on some wiis in sys menu identify step...

I also faced the same situation, replacing it with the su cert, ticket and tmd solved it...


hello WiiCrazy

menupatcher the cert and use the same ticket wii do not use my ticket or cert

that looks code

CODEs32 Sysmenu_Identify(void)
{
ÂÂÂÂstatic ticket s_tik ATTRIBUTE_ALIGN(32);
ÂÂÂÂsigned_blob *p_certs = NULL, *p_tik = NULL, *p_tmd = NULL;

ÂÂÂÂu32 certs_len, tik_len, tmd_len;
ÂÂÂÂs32 ret;

ÂÂÂÂ/* Retrieve certificates */
ÂÂÂÂret = sys_getcerts(&p_certs, &certs_len);
ÂÂÂÂif (ret < 0)
ÂÂÂÂÂÂÂÂreturn ret;

ÂÂÂÂ/* Set ticket length */
ÂÂÂÂtik_len = sizeof(s_tik);

ÂÂÂÂmemset(&s_tik, 0, tik_len);

ÂÂÂÂ/* Generate ticket */
ÂÂÂÂstrcpy(s_tik.tik_data.issuer, "Root-CA00000001-XS00000003");
ÂÂÂÂmemset(s_tik.tik_data.cidx_mask, 0xFF, 32);

ÂÂÂÂs_tik.signature.type = ES_SIG_RSA2048;

ÂÂÂÂ/* Set pointer */
ÂÂÂÂp_tik = (signed_blob *)&s_tik;

ÂÂÂÂ/* Retrieve TMD length */
ÂÂÂÂret = ES_GetStoredTMDSize(SYSMENU_TITLEID, &tmd_len);
ÂÂÂÂif (ret < 0)
ÂÂÂÂÂÂÂÂgoto out;

ÂÂÂÂ/* Allocate memory */
ÂÂÂÂp_tmd = (signed_blob *)memalign(32, tmd_len);
ÂÂÂÂif (!p_tmd) {
ÂÂÂÂÂÂÂÂret = -1;
ÂÂÂÂÂÂÂÂgoto out;
ÂÂÂÂ}

ÂÂÂÂ/* Retrieve TMD */
ÂÂÂÂret = ES_GetStoredTMD(SYSMENU_TITLEID, p_tmd, tmd_len);
ÂÂÂÂif (ret < 0)
ÂÂÂÂÂÂÂÂgoto out;

ÂÂÂÂ/* Identify as system menu */
ÂÂÂÂret = ES_Identify(p_certs, certs_len, p_tmd, tmd_len, p_tik, tik_len, NULL);

out:
ÂÂÂÂ/* Free memory */
ÂÂÂÂif (p_tmd)
ÂÂÂÂÂÂÂÂfree(p_tmd);

ÂÂÂÂreturn ret;
}

I think using a fake ticket and cert
 
WiiCrazy said:
truballr said:
OK,
but is it possible to have it easily inserted anytime,
I don't want to request one every time aquilino updates the POC launcher.

Well it's most efficient if mp3 and image compiled into the executing dol... it increases the dol size but still it boots really fast... maybe it's faster then say loaded from sd card...

by the way last time I checked fatInitDefault call was not working with preloader... so you can't use the sd card actually in the autobooting dol... but of course this intro stuff could be put into the launched channel...

Currently though my stuff works linking the mp3 and jpeg into the dol... so, no
smile.gif
So, in short, ill have to recompile my own image and mp3 into the dol.
I knew I shoulda taken those C+ lessons.
gbasp.gif
 
aquilino said:
hello WiiCrazy

menupatcher the cert and use the same ticket wii do not use my ticket or cert

that looks code

CODEs32 Sysmenu_Identify(void)
{
ÂÂÂÂstatic ticket s_tik ATTRIBUTE_ALIGN(32);
ÂÂÂÂsigned_blob *p_certs = NULL, *p_tik = NULL, *p_tmd = NULL;

ÂÂÂÂu32 certs_len, tik_len, tmd_len;
ÂÂÂÂs32 ret;

ÂÂÂÂ/* Retrieve certificates */
ÂÂÂÂret = sys_getcerts(&p_certs, &certs_len);
ÂÂÂÂif (ret < 0)
ÂÂÂÂÂÂÂÂreturn ret;

I think using a fake ticket and cert

Hmm much elegant way of doing it... that way you don't distribute the identification stuff at all... (but possibly reloading to a custom ios is a must for that codepiece)
 
ok so i started fresh this time,

1) anyregion changed wii to 3.2U again.
2) unstalled all preloader hacks
3) reinstalled waninikoko's cIOS R7
4) made sure all starfall hacks removed
5) reinstalled preloader .27
6) re got the sysmenu.dol from 100000043
7) uninstalled then reinstalled menupatcherchannel 28
8) set preloader to autoboot loadPOC.dol
9) I get the
"Could not identify as system menu! (ret + -2011)"
 
frostyfrosty said:
ya, i dont get it >.< i used to be able to play at LEAST games my region with this, now i cant play nothin on it =P


ask what you have before you have installed starfall which makes the patch is to disable the patches that have not but it is also ok

I had to install starfall and change regions to check

following revision find that there are patches

I install the missing

bye frostyfrosty

sorry
 

Site & Scene News

Popular threads in this forum