| View previous topic :: View next topic |
| Author |
Message |
SPITFIR3
Joined: 21 Oct 2007 Posts: 16
|
Posted: Fri Nov 16, 2007 4:47 pm Post subject: Reboot the Slim |
|
|
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: |
#define PATH "flash0:/vsh/module/vshmain.prx"
struct SceKernelLoadExecParam param;
memset(¶m, 0, sizeof(param));
param.size = sizeof(param);
param.argp = PATH;
param.args = strlen(PATH) + 1;
param.key = "vsh";
sceKernelLoadExec(PATH, ¶m);
|
Reboots, but UMD errors.
I would just like to reboot the Slim PSP as 371M33-3 Update does.
Thanks |
|
| Back to top |
|
 |
SPITFIR3
Joined: 21 Oct 2007 Posts: 16
|
Posted: Sat Nov 17, 2007 11:21 am Post subject: |
|
|
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 |
|
| Back to top |
|
 |
adrahil
Joined: 16 Mar 2006 Posts: 277
|
Posted: Sat Nov 17, 2007 6:46 pm Post subject: Re: Reboot the Slim |
|
|
| 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? |
|
| Back to top |
|
 |
SPITFIR3
Joined: 21 Oct 2007 Posts: 16
|
Posted: Sat Nov 17, 2007 9:12 pm Post subject: |
|
|
| Yes, just these 2 calls corrupted flash1 for some reason, I had to restore nand, very strange I know. |
|
| Back to top |
|
 |
J.F.
Joined: 22 Feb 2004 Posts: 2906
|
Posted: Sun Nov 18, 2007 3:22 am Post subject: |
|
|
| 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. :) |
|
| Back to top |
|
 |
|