diff options
author | Simon Glass | 2022-07-30 15:52:33 -0600 |
---|---|---|
committer | Tom Rini | 2022-08-12 08:17:11 -0400 |
commit | cb47e21acbc4c404214623de1d4a306452ec466d (patch) | |
tree | d62ab0190119a5133e28fa7f9a862e6097e75311 /boot/Makefile | |
parent | 4c7418f3efbc0e193caa0f5af2b3d750af47854d (diff) |
vbe: Support VBE simple
Add support for VBE simple, which permits firmware update of a single
image stored in MMC or another block device.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/Makefile')
-rw-r--r-- | boot/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/Makefile b/boot/Makefile index c52c96977fd..67e335255f1 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -48,3 +48,4 @@ obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o endif obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE) += vbe.o +obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE_SIMPLE) += vbe_simple.o |