]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
cmd: CONFIG_CMD_BLOBLIST must depend on CONFIG_BLOBLIST
authorHeinrich Schuchardt <heinrich.schuchardt@canonical.com>
Mon, 22 Apr 2024 13:50:10 +0000 (15:50 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 29 Apr 2024 16:53:58 +0000 (10:53 -0600)
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>
cmd/Kconfig

index c182d73ddbd7dc779b1d687d6bfc5a04b49318eb..b026439c773118372e8164d024f73d98957105ec 100644 (file)
@@ -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