diff options
author | Simon Glass <sjg@chromium.org> | 2022-04-24 23:31:06 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-25 10:00:04 -0400 |
commit | ef5e3891f57e6fc863fabbc94b1d7da79d1940bb (patch) | |
tree | 194029c9a4a83a48de03dc12c8e2fcc9285816ac /boot/Makefile | |
parent | 9d260253e869bf518e35a97f8a394719bd5149fb (diff) | |
download | u-boot-ef5e3891f57e6fc863fabbc94b1d7da79d1940bb.tar.gz u-boot-ef5e3891f57e6fc863fabbc94b1d7da79d1940bb.tar.bz2 u-boot-ef5e3891f57e6fc863fabbc94b1d7da79d1940bb.zip |
bootstd: Add the bootstd uclass and core implementation
The 'bootstd' device provides the central information about U-Boot
standard boot.
Add a uclass for bootstd and the various helpers needed to make it
work. Also add a binding file.
Signed-off-by: Simon Glass <sjg@chromium.org>
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 1b99e6ee33..21dcf6a605 100644 --- a/boot/Makefile +++ b/boot/Makefile @@ -18,6 +18,9 @@ endif obj-y += image.o image-board.o obj-$(CONFIG_ANDROID_AB) += android_ab.o obj-$(CONFIG_ANDROID_BOOT_IMAGE) += image-android.o image-android-dt.o + +obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootstd-uclass.o + obj-$(CONFIG_$(SPL_TPL_)OF_LIBFDT) += image-fdt.o obj-$(CONFIG_$(SPL_TPL_)FIT_SIGNATURE) += fdt_region.o obj-$(CONFIG_$(SPL_TPL_)FIT) += image-fit.o |