diff options
author | Simon Glass <sjg@chromium.org> | 2023-12-14 21:19:02 -0700 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-10 17:04:25 -0600 |
commit | 6be5ec948b7f6f9e771dee4f5a7bc1c150ebef04 (patch) | |
tree | ddcacad9c65405dcf95c9e018d2f3a218eb1210b /arch/microblaze | |
parent | b34c8289d205c5f5c7367a468e08346b0c7f3baa (diff) | |
download | u-boot-6be5ec948b7f6f9e771dee4f5a7bc1c150ebef04.tar.gz u-boot-6be5ec948b7f6f9e771dee4f5a7bc1c150ebef04.tar.bz2 u-boot-6be5ec948b7f6f9e771dee4f5a7bc1c150ebef04.zip |
treewide: Make arch-specific bootm code depend on BOOTM
Allow these functions to be compiled in when CONFIG_BOOTM is enabled,
even if CONFIG_CMD_BOOTM is not.
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Angelo Dureghello <angelo@kernel-space.org>
Diffstat (limited to 'arch/microblaze')
-rw-r--r-- | arch/microblaze/lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/microblaze/lib/Makefile b/arch/microblaze/lib/Makefile index dfd8135f4f..2f234825f8 100644 --- a/arch/microblaze/lib/Makefile +++ b/arch/microblaze/lib/Makefile @@ -3,6 +3,6 @@ # (C) Copyright 2003-2006 # Wolfgang Denk, DENX Software Engineering, wd@denx.de. -obj-$(CONFIG_CMD_BOOTM) += bootm.o +obj-$(CONFIG_BOOTM) += bootm.o obj-$(CONFIG_CMD_BDI) += bdinfo.o obj-y += muldi3.o |