diff options
| author | Simon Glass <[email protected]> | 2024-10-14 16:32:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-11-03 21:27:12 -0600 |
| commit | ae3b5928d61190d0faef7dfb2bbfc415a25b6ca5 (patch) | |
| tree | ae3f75cd3750f675aeaaa2282d8c8cbe5a42649f /boot/Makefile | |
| parent | e25c34ddb524043c26ff1db820584a40c0f094b8 (diff) | |
x86: coreboot: Allow building an expo for editing CMOS config
Coreboot provides the CMOS layout in the tables it passes to U-Boot.
Use that to build an editor for the CMOS settings.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot/Makefile')
| -rw-r--r-- | boot/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/boot/Makefile b/boot/Makefile index 0e0afad68d1..43def7c33d7 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -59,6 +59,9 @@ obj-$(CONFIG_$(PHASE_)LOAD_FIT) += common_fit.o obj-$(CONFIG_$(PHASE_)EXPO) += expo.o scene.o expo_build.o obj-$(CONFIG_$(PHASE_)EXPO) += scene_menu.o scene_textline.o +ifdef CONFIG_COREBOOT_SYSINFO +obj-$(CONFIG_$(SPL_TPL_)EXPO) += expo_build_cb.o +endif obj-$(CONFIG_$(PHASE_)BOOTMETH_VBE) += vbe.o obj-$(CONFIG_$(PHASE_)BOOTMETH_VBE_REQUEST) += vbe_request.o |
