diff options
author | Simon Glass <sjg@chromium.org> | 2024-12-19 11:29:06 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-12-27 15:16:10 -0600 |
commit | 286b48c9579eed29cbb53584c58c382c268cabfd (patch) | |
tree | dc5f9cf0c7d4f38536a107a2135b38367fedff60 | |
parent | ded772fafacf71b15f838c1b69983656d1decab3 (diff) |
boot: Imply CRC8 with VBE
VBE uses a crc8 checksum to verify that the nvdata is valid, so make
sure it is available if VBE is enabled.
Signed-off-by: Simon Glass <sjg@chromium.org>
-rw-r--r-- | boot/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/boot/Kconfig b/boot/Kconfig index cdf787eb5c2..20935a269c6 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -704,6 +704,8 @@ config SPL_BOOTMETH_VBE_REQUEST config BOOTMETH_VBE_SIMPLE bool "Bootdev support for VBE 'simple' method" default y + imply SPL_CRC8 if SPL + imply VPL_CRC8 if VPL help Enables support for VBE 'simple' boot. This allows updating a single firmware image in boot media such as MMC. It does not support any sort |