diff options
author | Simon Glass <sjg@chromium.org> | 2022-10-20 18:23:13 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-31 11:03:59 -0400 |
commit | 4218456b3fac98966a320c3f2db36d543a32ec17 (patch) | |
tree | aa451fe1cefff92e5f40eb11408954cc6ae26c3a /boot/vbe_simple_os.c | |
parent | e45d22655aed0c81fa5890f47c1647c6e95bedb6 (diff) |
vbe: Add Kconfig options for VPL
Enable the various features needed in VPL, by adding Kconfig options.
Update the defconfig for sandbox_vpl so that the build for each phase
includes what is needed. Drop LZMA for now and make sure partition support
is omitted in SPL, since it is not needed.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/vbe_simple_os.c')
-rw-r--r-- | boot/vbe_simple_os.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/vbe_simple_os.c b/boot/vbe_simple_os.c index 058db6154b..87778bba97 100644 --- a/boot/vbe_simple_os.c +++ b/boot/vbe_simple_os.c @@ -80,7 +80,7 @@ static int bootmeth_vbe_simple_ft_fixup(void *ctx, struct event *event) ret = device_probe(dev); if (ret) return log_msg_ret("probe", ret); - ret = simple_read_state(dev, &state); + ret = vbe_simple_read_state(dev, &state); if (ret) return log_msg_ret("read", ret); |