summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2011-08-23 11:38:11 -0700
committerSimon Glass <sjg@chromium.org>2011-08-29 12:28:30 -0700
commitc648159d0a01b32d61da555c9b42c75bddcab62b (patch)
treec257f748866ab584d2ca27815eea0434c5d88380 /lib
parent102f460b3bf7843860cb0ed596948946462c381a (diff)
CHROMIUMOS: Add vbexport_init() to set up library
We need to register available boot devices. It seems reasonable that this library should be initialized before use. BUG=chromium-os:19518 TEST=build on Seaboard; vbexport_test diskinfo See that all boot devices are found with SD and USB inserted Change-Id: I17a535dc85b5aaee669ea67b439632bafb19c806 Reviewed-on: http://gerrit.chromium.org/gerrit/6501 Reviewed-by: Anton Staaf <robotboy@chromium.org> Tested-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/vbexport/misc.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/vbexport/misc.c b/lib/vbexport/misc.c
index 9a608aba4b..f4f73e4763 100644
--- a/lib/vbexport/misc.c
+++ b/lib/vbexport/misc.c
@@ -39,3 +39,8 @@ uint32_t VbExIsShutdownRequested(void)
return 0;
}
+
+int vbexport_init(void)
+{
+ return 0;
+}