Message ID | 20241207145227.1024491-1-sjg@chromium.org |
---|---|
State | Accepted |
Commit | 315fd02729eeeb9e1fd4dbbfb0349ab5d774b006 |
Delegated to: | Tom Rini |
Headers | show |
Series | boot: Use correct PHASE_ variable for expo | expand |
Hi Simon, On 12/7/24 3:52 PM, Simon Glass wrote: > This patch was written before the XPL change-over. Update the Makefile > condition to the new way. > > Signed-off-by: Simon Glass <sjg@chromium.org> > Fixes: ae3b5928d61 ("x86: coreboot: Allow building an expo for...") > Reviewed-by: Quentin Schulz <quentin.schulz@cherry.de> Thanks! Quentin
On Sat, 07 Dec 2024 07:52:27 -0700, Simon Glass wrote: > This patch was written before the XPL change-over. Update the Makefile > condition to the new way. > > Applied to u-boot/master, thanks!
diff --git a/boot/Makefile b/boot/Makefile index b03d628187b..1d7f2a1a24a 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -61,7 +61,7 @@ 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 +obj-$(CONFIG_$(PHASE_)EXPO) += expo_build_cb.o endif obj-$(CONFIG_$(PHASE_)BOOTMETH_VBE) += vbe.o
This patch was written before the XPL change-over. Update the Makefile condition to the new way. Signed-off-by: Simon Glass <sjg@chromium.org> Fixes: ae3b5928d61 ("x86: coreboot: Allow building an expo for...") --- boot/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)