diff options
| author | Simon Glass <[email protected]> | 2022-04-30 00:56:52 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2022-05-02 09:58:13 -0400 |
| commit | f86ca5ad8f780d306e79d49ffe4f5cf1edef37b9 (patch) | |
| tree | a2eac09d5cb3376288fc135b1563abb1af7bbb16 /drivers/Makefile | |
| parent | d3eba95a7e9b6b89404a3ddb2945f03cff4effb4 (diff) | |
Introduce Verifying Program Loader (VPL)
Add support for VPL, a new phase of U-Boot. This runs after TPL. It is
responsible for selecting which SPL binary to run, based on a
verified-boot process.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers/Makefile')
| -rw-r--r-- | drivers/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/Makefile b/drivers/Makefile index 4e7cf284405..67c8af74424 100644 --- a/drivers/Makefile +++ b/drivers/Makefile @@ -38,6 +38,7 @@ obj-$(CONFIG_XEN) += xen/ obj-$(CONFIG_$(SPL_)FPGA) += fpga/ ifndef CONFIG_TPL_BUILD +ifndef CONFIG_VPL_BUILD ifdef CONFIG_SPL_BUILD obj-$(CONFIG_SPL_CPU) += cpu/ @@ -62,6 +63,7 @@ obj-$(CONFIG_SPL_THERMAL) += thermal/ endif endif +endif ifdef CONFIG_TPL_BUILD |
