Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 1 | # SPDX-License-Identifier: GPL-2.0+ |
| 2 | # |
| 3 | # (C) Copyright 2004-2006 |
| 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 5 | |
| 6 | ifndef CONFIG_SPL_BUILD |
| 7 | |
Tom Rini | a45a3ef | 2022-03-11 09:12:04 -0500 | [diff] [blame] | 8 | obj-$(CONFIG_BOOT_RETRY) += bootretry.o |
Tom Rini | 793921e | 2024-04-18 08:29:35 -0600 | [diff] [blame] | 9 | obj-$(CONFIG_CMD_BOOTM) += bootm.o bootm_os.o |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 10 | obj-$(CONFIG_CMD_BOOTZ) += bootm.o bootm_os.o |
| 11 | obj-$(CONFIG_CMD_BOOTI) += bootm.o bootm_os.o |
| 12 | |
John Keeping | 9b60a17 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 13 | obj-$(CONFIG_PXE_UTILS) += pxe_utils.o |
Simon Glass | 4e3189f | 2023-02-22 09:33:46 -0700 | [diff] [blame] | 14 | obj-$(CONFIG_QFW) += bootmeth_qfw.o |
Simon Glass | 0666fcb | 2021-10-14 12:48:00 -0600 | [diff] [blame] | 15 | |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 16 | endif |
| 17 | |
| 18 | obj-y += image.o image-board.o |
Simon Glass | a9773b8 | 2023-09-14 10:55:45 -0600 | [diff] [blame] | 19 | |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 20 | obj-$(CONFIG_ANDROID_AB) += android_ab.o |
| 21 | obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o |
Simon Glass | 08ad13e | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 22 | |
Simon Glass | 9f4440d | 2022-07-30 15:52:29 -0600 | [diff] [blame] | 23 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootdev-uclass.o |
Simon Glass | 03fcbf9 | 2022-04-24 23:31:09 -0600 | [diff] [blame] | 24 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow.o |
Simon Glass | 4b508b8 | 2022-04-24 23:31:08 -0600 | [diff] [blame] | 25 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootmeth-uclass.o |
Simon Glass | 08ad13e | 2022-04-24 23:31:06 -0600 | [diff] [blame] | 26 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootstd-uclass.o |
| 27 | |
Simon Glass | 9236852 | 2023-11-18 14:05:19 -0700 | [diff] [blame] | 28 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD_PROG) += prog_boot.o |
| 29 | |
Simon Glass | b71d7f7 | 2023-05-10 16:34:46 -0600 | [diff] [blame] | 30 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EXTLINUX) += bootmeth_extlinux.o |
| 31 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EXTLINUX_PXE) += bootmeth_pxe.o |
Simon Glass | 66f6255 | 2022-04-24 23:31:17 -0600 | [diff] [blame] | 32 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EFILOADER) += bootmeth_efi.o |
Tom Rini | 350198e | 2023-10-26 14:31:26 -0400 | [diff] [blame] | 33 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_CROS) += bootm.o bootm_os.o bootmeth_cros.o |
Simon Glass | 423994e | 2022-04-24 23:31:20 -0600 | [diff] [blame] | 34 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SANDBOX) += bootmeth_sandbox.o |
Simon Glass | 7e03e74 | 2022-04-24 23:31:22 -0600 | [diff] [blame] | 35 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SCRIPT) += bootmeth_script.o |
Heinrich Schuchardt | ef97f7c | 2023-12-16 16:38:36 +0100 | [diff] [blame] | 36 | obj-$(CONFIG_$(SPL_TPL_)CEDIT) += cedit.o |
Heinrich Schuchardt | 72bca1a | 2024-04-03 20:05:17 +0200 | [diff] [blame] | 37 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EFI_BOOTMGR) += bootmeth_efi_mgr.o |
Simon Glass | 309e6ec | 2022-04-24 23:31:19 -0600 | [diff] [blame] | 38 | ifdef CONFIG_$(SPL_TPL_)BOOTSTD_FULL |
Simon Glass | 389a458 | 2023-01-28 15:00:18 -0700 | [diff] [blame] | 39 | obj-$(CONFIG_$(SPL_TPL_)EXPO) += bootflow_menu.o |
Simon Glass | e65efec | 2023-02-05 17:53:23 -0700 | [diff] [blame] | 40 | obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow_menu.o |
Simon Glass | 309e6ec | 2022-04-24 23:31:19 -0600 | [diff] [blame] | 41 | endif |
Simon Glass | ad8ec37 | 2022-04-24 23:31:13 -0600 | [diff] [blame] | 42 | |
Simon Glass | a9773b8 | 2023-09-14 10:55:45 -0600 | [diff] [blame] | 43 | obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += fdt_support.o |
Simon Glass | 2736719 | 2023-09-14 10:55:46 -0600 | [diff] [blame] | 44 | obj-$(CONFIG_$(SPL_TPL_)FDT_SIMPLEFB) += fdt_simplefb.o |
Simon Glass | a9773b8 | 2023-09-14 10:55:45 -0600 | [diff] [blame] | 45 | |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 46 | obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o |
| 47 | obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += fdt_region.o |
| 48 | obj-$(CONFIG_$(SPL_TPL_)FIT) += image-fit.o |
| 49 | obj-$(CONFIG_$(SPL_)MULTI_DTB_FIT) += boot_fit.o common_fit.o |
Philippe Reynes | d28484e | 2022-03-28 22:56:59 +0200 | [diff] [blame] | 50 | obj-$(CONFIG_$(SPL_TPL_)IMAGE_PRE_LOAD) += image-pre-load.o |
Simon Glass | 91944df | 2021-10-14 12:47:54 -0600 | [diff] [blame] | 51 | obj-$(CONFIG_$(SPL_TPL_)IMAGE_SIGN_INFO) += image-sig.o |
| 52 | obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += image-fit-sig.o |
| 53 | obj-$(CONFIG_$(SPL_TPL_)FIT_CIPHER) += image-cipher.o |
| 54 | |
| 55 | obj-$(CONFIG_CMD_ADTIMG) += image-android-dt.o |
| 56 | |
| 57 | ifdef CONFIG_SPL_BUILD |
| 58 | obj-$(CONFIG_SPL_LOAD_FIT) += common_fit.o |
| 59 | endif |
Simon Glass | 0a9f426 | 2022-07-30 15:52:32 -0600 | [diff] [blame] | 60 | |
Simon Glass | 6116e76 | 2023-10-01 19:13:32 -0600 | [diff] [blame] | 61 | obj-$(CONFIG_$(SPL_TPL_)EXPO) += expo.o scene.o expo_build.o |
| 62 | obj-$(CONFIG_$(SPL_TPL_)EXPO) += scene_menu.o scene_textline.o |
Simon Glass | 9f51393 | 2023-01-06 08:52:38 -0600 | [diff] [blame] | 63 | |
Simon Glass | 513eeed | 2023-02-22 09:33:52 -0700 | [diff] [blame] | 64 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE) += vbe.o |
| 65 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE_REQUEST) += vbe_request.o |
Simon Glass | d0af04c | 2022-07-30 15:52:33 -0600 | [diff] [blame] | 66 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE_SIMPLE) += vbe_simple.o |
Simon Glass | d78aa75 | 2022-10-20 18:23:10 -0600 | [diff] [blame] | 67 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE_SIMPLE_FW) += vbe_simple_fw.o |
Simon Glass | 39db199 | 2022-10-20 18:23:11 -0600 | [diff] [blame] | 68 | obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_VBE_SIMPLE_OS) += vbe_simple_os.o |