if you want SD access for UNEEK you must do this:
ES module main.c line 1833 change to:
Code:
// ÂÂÂÂret = device_register("/dev/sdio", queueid );
ES module ES.c line 1431/1432 change to:
Code:
//ÂÂÂÂÂÂÂÂif( 4 == *(u16*)(TMD_Data+0x1E8+0x24*i) )
//ÂÂÂÂÂÂÂÂÂÂÂÂcontinue;
This worked perfectly to allow SD access for homebrew apps when running UNEEK (NAND on USB).
Thanks SanGor, you have posted many helpful comments in this thread.
i was talking about SD access for SD NAND here
mousex said:
The Menu is inside the function FBNuke but this is disabled in ES/main.c
CODE
ÂÂÂÂif( TitleID == 0x0000000100000002LL )
ÂÂÂÂ{
ÂÂÂÂÂÂÂÂ//Disable SD for system menu
ÂÂÂÂÂÂÂÂif( *SDStatus == 1 )
ÂÂÂÂÂÂÂÂÂÂÂÂ*SDStatus = 2;
ÂÂÂÂÂÂÂÂ//Region free 4.2EUR
ÂÂÂÂÂÂÂÂ//*(u32*)0x0137DC90 = 0x4800001C;
ÂÂÂÂÂÂÂÂ//*(u32*)0x0137E4E4 = 0x60000000;
ÂÂÂÂÂÂÂÂ//LoadFont( "/font.bin" );
ÂÂÂÂÂÂÂÂ//u8 *stk = malloca( 0x100, 32 );
ÂÂÂÂÂÂÂÂ//u32 id = thread_create( FBnuke, 0x20, stk, 0x100, 0, 1 );
ÂÂÂÂÂÂÂÂ//thread_continue( id );
ÂÂÂÂ}