diff options
| author | Simon Glass <[email protected]> | 2024-09-29 19:49:25 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-10-11 11:44:46 -0600 |
| commit | 95a720e054ffad4e01d2a839d4ebadd91fe24032 (patch) | |
| tree | 0daeb391a5f3d0e8f76d17010bf7cd64c0064adf /boot/Makefile | |
| parent | 01ab644ebcb2a094738babe4a5eaef07435e7f38 (diff) | |
boot: Drop unnecessary ifdef for LOAD_FIT
Use the normal SPL_TPL_ approach for this option.
Signed-off-by: Simon Glass <[email protected]>
Reviewed-by: Tom Rini <[email protected]>
Diffstat (limited to 'boot/Makefile')
| -rw-r--r-- | boot/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/boot/Makefile b/boot/Makefile index f4675d6ffd5..40e2337de0f 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -58,9 +58,7 @@ obj-$(CONFIG_$(SPL_TPL_)FIT_CIPHER) += image-cipher.o obj-$(CONFIG_CMD_ADTIMG) += image-android-dt.o -ifdef CONFIG_SPL_BUILD -obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o -endif +obj-$(CONFIG_$(SPL_TPL_)LOAD_FIT) += common_fit.o obj-$(CONFIG_$(SPL_TPL_)EXPO) += expo.o scene.o expo_build.o obj-$(CONFIG_$(SPL_TPL_)EXPO) += scene_menu.o scene_textline.o |
