summaryrefslogtreecommitdiff
path: root/bootloader/mini2440.c
diff options
context:
space:
mode:
Diffstat (limited to 'bootloader/mini2440.c')
-rw-r--r--bootloader/mini2440.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootloader/mini2440.c b/bootloader/mini2440.c
index b3d73d1270..4088065550 100644
--- a/bootloader/mini2440.c
+++ b/bootloader/mini2440.c
@@ -29,6 +29,7 @@
29#include "lcd.h" 29#include "lcd.h"
30#include "../kernel-internal.h" 30#include "../kernel-internal.h"
31#include "storage.h" 31#include "storage.h"
32#include "file_internal.h"
32#include "fat.h" 33#include "fat.h"
33#include "disk.h" 34#include "disk.h"
34#include "font.h" 35#include "font.h"
@@ -88,7 +89,7 @@ int main(void)
88 error(EATA, rc, true); 89 error(EATA, rc, true);
89 } 90 }
90 91
91 disk_init(IF_MD(0)); 92 filesystem_init();
92 rc = disk_mount_all(); 93 rc = disk_mount_all();
93 if (rc<=0) 94 if (rc<=0)
94 { 95 {