summaryrefslogtreecommitdiff
path: root/boot/Makefile
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2022-04-24 23:31:18 -0600
committerTom Rini <[email protected]>2022-04-25 10:00:04 -0400
commita080b98981a74e96ef2ff6b4de36b222fe42b8e5 (patch)
tree589c028168a2e17425400e6ecad792f7b0c8f368 /boot/Makefile
parentacfa9bdfa7391f1872aa67bc6e4d3cd38e11d6c9 (diff)
bootstd: Add a system bootdev for strange boot methods
Some boot methods don't act on a single bootdev but instead do their own thing. An example is EFI bootmgr which scan various devices using its own logic. Add a bootdev to handle this. Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'boot/Makefile')
-rw-r--r--boot/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot/Makefile b/boot/Makefile
index 4f9267687fa..7325dbc1dd6 100644
--- a/boot/Makefile
+++ b/boot/Makefile
@@ -19,7 +19,7 @@ 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) += bootdev-uclass.o
+obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootdev-uclass.o system_bootdev.o
obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootflow.o
obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootmeth-uclass.o
obj-$(CONFIG_$(SPL_TPL_)BOOTSTD) += bootstd-uclass.o