rs@ti.com <rs@ti.com> says: From: Randolph Sapp <rs@ti.com> Nitpicks and fixes from the discovery thread on adding PocketBeagle2 support [1]. This does a lot of general setup required for the device, but these modifications themselves aren't device specific. For those specifically interested in PocketBeagle2 support and don't care about these details, my development branch is public [2]. That first patch may provoke some opinions, but honestly if that warning was still present I wouldn't have spent a week poking holes in both the EFI and LMB allocations systems. Please let me know if there is a specific usecase that it breaks though. [1] https://lore.kernel.org/all/DHHC66BBMD27.YHGIH43C6XBK@ti.com/ [2] https://github.com/StaticRocket/u-boot/tree/feature/pocketbeagle2 Link: https://lore.kernel.org/r/20260604155038.3182-1-rs@ti.com
30 lines
684 B
Makefile
30 lines
684 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright 2021 Google LLC
|
|
|
|
ifdef CONFIG_UT_BOOTSTD
|
|
obj-$(CONFIG_BOOTSTD) += bootdev.o bootstd_common.o bootflow.o bootmeth.o
|
|
obj-$(CONFIG_FIT) += image.o
|
|
|
|
ifdef CONFIG_VIDEO_SANDBOX_SDL
|
|
obj-$(CONFIG_EXPO) += expo.o
|
|
obj-$(CONFIG_CEDIT) += cedit.o
|
|
endif
|
|
endif
|
|
|
|
ifdef CONFIG_SANDBOX
|
|
obj-$(CONFIG_$(PHASE_)CMDLINE) += bootm.o
|
|
ifdef CONFIG_UT_DM
|
|
obj-$(CONFIG_$(PHASE_)OF_LIBFDT) += image_fdt.o
|
|
endif
|
|
endif
|
|
obj-$(CONFIG_$(PHASE_)FIT_VERITY) += fit_verity.o
|
|
obj-$(CONFIG_MEASURED_BOOT) += measurement.o
|
|
|
|
ifdef CONFIG_OF_LIVE
|
|
obj-$(CONFIG_BOOTMETH_VBE_SIMPLE) += vbe_simple.o
|
|
endif
|
|
obj-$(CONFIG_BOOTMETH_VBE) += vbe_fixup.o
|
|
|
|
obj-$(CONFIG_UPL) += upl.o
|