diff options
author | Heinrich Schuchardt <heinrich.schuchardt@canonical.com> | 2024-04-22 15:50:10 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-04-29 10:53:58 -0600 |
commit | aa028df7baa6ad69956023c330266c969702ca50 (patch) | |
tree | dff4c4ac04fb4934b1a9b7d0c31df01a612969b5 /cmd/Kconfig | |
parent | 4b3706607c0015ba99a86d8631446564c117e06a (diff) | |
download | u-boot-aa028df7baa6ad69956023c330266c969702ca50.tar.gz |
cmd: CONFIG_CMD_BLOBLIST must depend on CONFIG_BLOBLIST
With CONFIG_CMD_BLOBLIST=y, CONFIG_BLOBLIST=n linker errors occur:
usr/bin/ld: cmd/bloblist.o: in function `do_bloblist_list':
cmd/bloblist.c:27:(.text.do_bloblist_list+0x6):
undefined reference to `bloblist_show_list'
/usr/bin/ld: cmd/bloblist.o: in function `do_bloblist_info':
cmd/bloblist.c:19:(.text.do_bloblist_info+0x6):
undefined reference to `bloblist_show_stats'
Fixes: 4aed22762303 ("bloblist: Add a command")
Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Diffstat (limited to 'cmd/Kconfig')
-rw-r--r-- | cmd/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index c182d73ddbd..b026439c773 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -741,7 +741,8 @@ config CMD_BINOP config CMD_BLOBLIST bool "bloblist" - default y if BLOBLIST + depends on BLOBLIST + default y help Show information about the bloblist, a collection of binary blobs held in memory that persist between SPL and U-Boot. In the case of |