summaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-04-25 08:31:22 +0300
committerTom Rini <trini@konsulko.com>2022-04-25 17:00:04 +0300
commitd9409244b309959ac8dd79fc88d2c42f23c62f8c (patch)
treea0b389b53b52096fa5569527f8dab26689e1b637 /boot/Makefile
parent7d0478d241703b50e88736f3774deb5472418b58 (diff)
downloadu-boot-d9409244b309959ac8dd79fc88d2c42f23c62f8c.tar.xz
bootstd: Add an implementation of script boot
Add a bootmeth driver which handles distro boot from a disk via a U-Boot script, so we can boot a bootflow using this commonly used mechanism. This is required by Armbian, for example. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'boot/Makefile')
-rw-r--r--boot/Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/boot/Makefile b/boot/Makefile
index 444e6975f1..a70674259c 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -28,6 +28,7 @@ obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_DISTRO) += bootmeth_distro.o
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_DISTRO_PXE) += bootmeth_pxe.o
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_EFILOADER) += bootmeth_efi.o
obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SANDBOX) += bootmeth_sandbox.o
+obj-$(CONFIG_$(SPL_TPL_)BOOTMETH_SCRIPT) += bootmeth_script.o
ifdef CONFIG_$(SPL_TPL_)BOOTSTD_FULL
obj-$(CONFIG_$(SPL_TPL_)CMD_BOOTEFI_BOOTMGR) += bootmeth_efi_mgr.o
endif