summaryrefslogtreecommitdiff
path: root/apps/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/main.c')
-rw-r--r--apps/main.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/main.c b/apps/main.c
index 1e012efb3c..cf7d302fc9 100644
--- a/apps/main.c
+++ b/apps/main.c
@@ -77,6 +77,7 @@
77#include "statusbar-skinned.h" 77#include "statusbar-skinned.h"
78#include "bootchart.h" 78#include "bootchart.h"
79#include "logdiskf.h" 79#include "logdiskf.h"
80#include "bootdata.h"
80#if (CONFIG_PLATFORM & PLATFORM_ANDROID) 81#if (CONFIG_PLATFORM & PLATFORM_ANDROID)
81#include "notification.h" 82#include "notification.h"
82#endif 83#endif
@@ -445,6 +446,10 @@ static void init(void)
445 core_allocator_init(); 446 core_allocator_init();
446 kernel_init(); 447 kernel_init();
447 448
449#if defined(HAVE_BOOTDATA) && !defined(BOOTLOADER)
450 verify_boot_data();
451#endif
452
448 /* early early early! */ 453 /* early early early! */
449 filesystem_init(); 454 filesystem_init();
450 455