boot_device: add call to boot_device_init()

In the program loading paths using vboot it's possible that
the boot media has not been initiazed for that stage. Therefore,
provide this call such that it's guaranteed to be called at least
once.

BUG=chrome-os-partner:44827
BRANCH=None
TEST=Built and booted glados.

Change-Id: I3a0ef4d9eebbf5f15780316cc76b469e8ac3f358
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Original-Commit-Id: 6ee0c5bb36d17fd80ba34762e7547359fd8971ce
Original-Change-Id: If8dfeedbe1243ec482764e05c8d3f333c18aedd2
Original-Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Original-Reviewed-on: https://chromium-review.googlesource.com/305540
Original-Tested-by: Julius Werner <jwerner@chromium.org>
Original-Reviewed-by: Julius Werner <jwerner@chromium.org>
Reviewed-on: http://review.coreboot.org/12154
Tested-by: build bot (Jenkins)
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Aaron Durbin 2015-10-13 14:26:55 -05:00 committed by Patrick Georgi
parent 1d77c721d3
commit aeb2e15428
1 changed files with 3 additions and 0 deletions

View File

@ -29,6 +29,9 @@ int boot_device_ro_subregion(const struct region *sub,
{
const struct region_device *boot_dev;
/* Ensure boot device has been initialized at least once. */
boot_device_init();
boot_dev = boot_device_ro();
if (boot_dev == NULL)