mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 10:07:38 -04:00
iPod S5L87xx dev bootloader: show error code if OF fails to boot
Change-Id: Ie00bcdd81b9385b89389ea90b6b0581f6142c37e
This commit is contained in:
parent
02c256565f
commit
f566f63b63
1 changed files with 4 additions and 1 deletions
|
@ -475,7 +475,10 @@ static void run_of(void)
|
|||
printf("Booting OF in %d...", tmo);
|
||||
sleep(HZ*1);
|
||||
}
|
||||
kernel_launch_onb();
|
||||
|
||||
int rc = kernel_launch_onb();
|
||||
printf("Load OF error: %d", rc);
|
||||
sleep(HZ*10);
|
||||
}
|
||||
|
||||
static void print_syscfg(void)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue