mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
Dual boot for the Philips HDD1630.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19741 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
21869a1dc3
commit
3482a55b83
2 changed files with 12 additions and 1 deletions
|
@ -570,6 +570,17 @@ void* main(void)
|
|||
}
|
||||
#endif
|
||||
|
||||
#if defined(PHILIPS_HDD1630)
|
||||
printf("Trying /System/OF.ebn");
|
||||
rc=load_mi4(loadbuffer, "/System/OF.ebn", MAX_LOADSIZE);
|
||||
if (rc < EOK) {
|
||||
printf("Can't load /System/OF.ebn");
|
||||
printf(strerror(rc));
|
||||
} else {
|
||||
return (void*)loadbuffer;
|
||||
}
|
||||
#endif
|
||||
|
||||
printf("Trying /System/OF.mi4");
|
||||
rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE);
|
||||
if (rc < EOK) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue