diff options
author | Simon Glass <sjg@chromium.org> | 2022-04-24 23:31:10 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-04-25 10:00:04 -0400 |
commit | 5d053cca387dc92040569278b76d65391c91c249 (patch) | |
tree | 7b7ad6e384b9a8b749715792e440eabda4bc0f73 /cmd/Makefile | |
parent | a8f5be178db53f41338730e001b0f2ab459f7e31 (diff) | |
download | u-boot-5d053cca387dc92040569278b76d65391c91c249.zip u-boot-5d053cca387dc92040569278b76d65391c91c249.tar.gz u-boot-5d053cca387dc92040569278b76d65391c91c249.tar.bz2 |
bootstd: Add a bootdev command
Add a 'bootdev' command to handle listing and selection of bootdevs.
Disable standard boot for a few boards which otherwise run out of space.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'cmd/Makefile')
-rw-r--r-- | cmd/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Makefile b/cmd/Makefile index ede634d..474f6d5 100644 --- a/cmd/Makefile +++ b/cmd/Makefile @@ -19,6 +19,7 @@ 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_CMD_BOOTDEV) += bootdev.o obj-$(CONFIG_CMD_SOURCE) += source.o obj-$(CONFIG_CMD_BCB) += bcb.o obj-$(CONFIG_CMD_BDI) += bdinfo.o |