aboutsummaryrefslogtreecommitdiff
path: root/cmd/Makefile
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2022-08-11 19:34:46 -0600
committerTom Rini <trini@konsulko.com>2022-09-16 11:05:00 -0400
commit003357cc48dbf6e45ee408f114e4a5de862e7b2e (patch)
treeba7ae73b59f5346e04c569f494122700393788bb /cmd/Makefile
parenta51eb8de31492d2139e66a7e66b8fb3f03ddca50 (diff)
downloadu-boot-003357cc48dbf6e45ee408f114e4a5de862e7b2e.zip
u-boot-003357cc48dbf6e45ee408f114e4a5de862e7b2e.tar.gz
u-boot-003357cc48dbf6e45ee408f114e4a5de862e7b2e.tar.bz2
cmd: Drop use of HAVE_BLOCK_DEVICE
This condition is not needed for these commands, since BLK is enabled for all boards which use block devices and commands are not available in SPL, so even if SPL_BLK is not enabled, it doesn't affect commands. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r--cmd/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/Makefile b/cmd/Makefile
index 0ef4e2e..cf6ce1b 100644
--- a/cmd/Makefile
+++ b/cmd/Makefile
@@ -18,7 +18,7 @@ obj-$(CONFIG_CMD_AES) += aes.o
obj-$(CONFIG_CMD_AB_SELECT) += ab_select.o
obj-$(CONFIG_CMD_ADC) += adc.o
obj-$(CONFIG_CMD_ARMFLASH) += armflash.o
-obj-$(CONFIG_HAVE_BLOCK_DEVICE) += blk_common.o
+obj-$(CONFIG_BLK) += blk_common.o
obj-$(CONFIG_CMD_BOOTDEV) += bootdev.o
obj-$(CONFIG_CMD_BOOTFLOW) += bootflow.o
obj-$(CONFIG_CMD_BOOTMETH) += bootmeth.o