diff options
author | Tom Rini <trini@konsulko.com> | 2023-10-26 14:31:30 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-11-07 14:49:10 -0500 |
commit | 3165565e5b1945d898b1a81da5171f9858f22642 (patch) | |
tree | ace64f9f6227e7ac76372734256d474c6467ca91 | |
parent | 88d9b2617e6a827c2809e51932d1878ca9500dff (diff) | |
download | u-boot-3165565e5b1945d898b1a81da5171f9858f22642.zip u-boot-3165565e5b1945d898b1a81da5171f9858f22642.tar.gz u-boot-3165565e5b1945d898b1a81da5171f9858f22642.tar.bz2 |
fastboot: Depend on CMDLINE
Much of the functionality of fastboot relies on being able to run
commands as defined in the environment. This means it does depend on
CMDLINE being enabled.
Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r-- | drivers/fastboot/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/fastboot/Kconfig b/drivers/fastboot/Kconfig index 837c6f1..11fc0fe 100644 --- a/drivers/fastboot/Kconfig +++ b/drivers/fastboot/Kconfig @@ -1,4 +1,5 @@ menu "Fastboot support" + depends on CMDLINE config FASTBOOT bool |