2009-05-03 20:53:31 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <ogcsys.h>
|
|
|
|
|
|
|
|
#include "sys.h"
|
2009-05-03 21:38:18 +02:00
|
|
|
#include "wpad.h"
|
2009-05-03 20:53:31 +02:00
|
|
|
|
|
|
|
/* Constants */
|
|
|
|
#define CERTS_LEN 0x280
|
|
|
|
|
|
|
|
/* Variables */
|
|
|
|
static const char certs_fs[] ATTRIBUTE_ALIGN(32) = "/sys/cert.sys";
|
|
|
|
u8 shutdown = 0;
|
|
|
|
|
|
|
|
void __Sys_ResetCallback(void)
|
|
|
|
{
|
|
|
|
/* Reboot console */
|
|
|
|
Sys_Reboot();
|
|
|
|
}
|
|
|
|
|
|
|
|
void __Sys_PowerCallback(void)
|
|
|
|
{
|
|
|
|
/* Poweroff console */
|
|
|
|
shutdown = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Sys_Init(void)
|
|
|
|
{
|
|
|
|
/* Initialize video subsytem */
|
|
|
|
//VIDEO_Init();
|
|
|
|
|
|
|
|
/* Set RESET/POWER button callback */
|
|
|
|
SYS_SetResetCallback(__Sys_ResetCallback);
|
|
|
|
SYS_SetPowerCallback(__Sys_PowerCallback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sys_Reboot(void)
|
|
|
|
{
|
|
|
|
/* Restart console */
|
|
|
|
STM_RebootSystem();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sys_Shutdown(void)
|
|
|
|
{
|
2009-05-03 21:38:18 +02:00
|
|
|
/* Disconnect WPAD */
|
|
|
|
Wpad_Disconnect();
|
2009-05-03 20:53:31 +02:00
|
|
|
/* Poweroff console */
|
|
|
|
if(CONF_GetShutdownMode() == CONF_SHUTDOWN_IDLE) {
|
|
|
|
s32 ret;
|
|
|
|
|
|
|
|
/* Set LED mode */
|
|
|
|
ret = CONF_GetIdleLedMode();
|
|
|
|
if(ret >= 0 && ret <= 2)
|
|
|
|
STM_SetLedMode(ret);
|
|
|
|
|
|
|
|
/* Shutdown to idle */
|
|
|
|
STM_ShutdownToIdle();
|
|
|
|
} else {
|
|
|
|
/* Shutdown to standby */
|
|
|
|
STM_ShutdownToStandby();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Sys_LoadMenu(void)
|
|
|
|
{
|
|
|
|
/* Return to the Wii system menu */
|
|
|
|
SYS_ResetSystem(SYS_RETURNTOMENU, 0, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
s32 Sys_GetCerts(signed_blob **certs, u32 *len)
|
|
|
|
{
|
|
|
|
static signed_blob certificates[CERTS_LEN] ATTRIBUTE_ALIGN(32);
|
|
|
|
|
|
|
|
s32 fd, ret;
|
|
|
|
|
|
|
|
/* Open certificates file */
|
|
|
|
fd = IOS_Open(certs_fs, 1);
|
|
|
|
if (fd < 0)
|
|
|
|
return fd;
|
|
|
|
|
|
|
|
/* Read certificates */
|
|
|
|
ret = IOS_Read(fd, certificates, sizeof(certificates));
|
|
|
|
|
|
|
|
/* Close file */
|
|
|
|
IOS_Close(fd);
|
|
|
|
|
|
|
|
/* Set values */
|
|
|
|
if (ret > 0) {
|
|
|
|
*certs = certificates;
|
|
|
|
*len = sizeof(certificates);
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|