summaryrefslogtreecommitdiff
path: root/bootloader/main-pp.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/main-pp.c')
-rw-r--r--bootloader/main-pp.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/bootloader/main-pp.c b/bootloader/main-pp.c
index b279628a29..efeecb80ab 100644
--- a/bootloader/main-pp.c
+++ b/bootloader/main-pp.c
@@ -570,6 +570,17 @@ void* main(void)
570 } 570 }
571#endif 571#endif
572 572
573#if defined(PHILIPS_HDD1630)
574 printf("Trying /System/OF.ebn");
575 rc=load_mi4(loadbuffer, "/System/OF.ebn", MAX_LOADSIZE);
576 if (rc < EOK) {
577 printf("Can't load /System/OF.ebn");
578 printf(strerror(rc));
579 } else {
580 return (void*)loadbuffer;
581 }
582#endif
583
573 printf("Trying /System/OF.mi4"); 584 printf("Trying /System/OF.mi4");
574 rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE); 585 rc=load_mi4(loadbuffer, "/System/OF.mi4", MAX_LOADSIZE);
575 if (rc < EOK) { 586 if (rc < EOK) {