Reboot the Slim

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
SPITFIR3
Posts: 16
Joined: Sun Oct 21, 2007 3:25 am

Reboot the Slim

Post by SPITFIR3 »

How do you reboot the slim in a kernel prx.

I've tried scePower_driver_ 0442D852(50000) and that just shuts down, I've also tried
sceSysconResetDevice(2, 1);
sceSysconResetDevice(1, 1);

This bricks the slim and have to restore with nand dump.

And this:

Code: Select all

	#define PATH "flash0:/vsh/module/vshmain.prx"

	struct SceKernelLoadExecParam param;

	memset(&param, 0, sizeof(param));

	param.size = sizeof(param);
	param.argp = PATH;
	param.args = strlen(PATH) + 1;
	param.key = "vsh";

	sceKernelLoadExec(PATH, &param);
Reboots, but UMD errors.

I would just like to reboot the Slim PSP as 371M33-3 Update does.

Thanks
SPITFIR3
Posts: 16
Joined: Sun Oct 21, 2007 3:25 am

Post by SPITFIR3 »

Solved.

It was scePower_driver_ 0442D852(50000), but I was using a JigKick battery and I know the battery don't start the Slim normally. Silly Me.
Last edited by SPITFIR3 on Sat Nov 17, 2007 9:13 pm, edited 1 time in total.
adrahil
Posts: 274
Joined: Thu Mar 16, 2006 1:55 am

Re: Reboot the Slim

Post by adrahil »

SPITFIR3 wrote:I've also tried
sceSysconResetDevice(2, 1);
sceSysconResetDevice(1, 1);

This bricks the slim and have to restore with nand dump.
Bricks? Just by doing these two calls?
SPITFIR3
Posts: 16
Joined: Sun Oct 21, 2007 3:25 am

Post by SPITFIR3 »

Yes, just these 2 calls corrupted flash1 for some reason, I had to restore nand, very strange I know.
J.F.
Posts: 2906
Joined: Sun Feb 22, 2004 11:41 am

Post by J.F. »

SPITFIR3 wrote:Yes, just these 2 calls corrupted flash1 for some reason, I had to restore nand, very strange I know.
Actually, what it sounds like is you didn't flush the data and the reboot left you half-written. There are flush commands for the different NAND operations for a reason. :)
Post Reply