diff options
Diffstat (limited to 'bootloader/mini2440.c')
| -rw-r--r-- | bootloader/mini2440.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/mini2440.c b/bootloader/mini2440.c index b3d73d1..4088065 100644 --- a/bootloader/mini2440.c +++ b/bootloader/mini2440.c @@ -29,6 +29,7 @@ #include "lcd.h" #include "../kernel-internal.h" #include "storage.h" +#include "file_internal.h" #include "fat.h" #include "disk.h" #include "font.h" @@ -88,7 +89,7 @@ int main(void) error(EATA, rc, true); } - disk_init(IF_MD(0)); + filesystem_init(); rc = disk_mount_all(); if (rc<=0) { |