Merge "target: init: Add weak function for SSD keystore loading"
diff --git a/include/target.h b/include/target.h
index 19be4b6..b70306d 100644
--- a/include/target.h
+++ b/include/target.h
@@ -46,6 +46,7 @@
 unsigned target_baseband(void);
 void target_serialno(unsigned char *buf);
 void target_fastboot_init(void);
+void target_load_ssd_keystore(void);
 struct mmc_device *target_mmc_device();
 
 
diff --git a/target/init.c b/target/init.c
index 8a9a9d0..3b2f432 100644
--- a/target/init.c
+++ b/target/init.c
@@ -107,6 +107,9 @@
 #endif
 }
 
+__WEAK void target_load_ssd_keystore(void)
+{
+}
 
 /* Default target does not support continuous splash screen feature. */
 __WEAK int target_cont_splash_screen()