
8 Oct
2023
8 Oct
'23
1:12 a.m.
When CMDLINE is not enabled, this code fails to build. Correct this by adding a condition.
Signed-off-by: Simon Glass sjg@chromium.org ---
Changes in v2: - Change this to use a Kconfig dependency instead of code failing
drivers/fastboot/Kconfig | 1 + 1 file changed, 1 insertion(+)
diff --git a/drivers/fastboot/Kconfig b/drivers/fastboot/Kconfig index 837c6f1180da..24b100f381fe 100644 --- a/drivers/fastboot/Kconfig +++ b/drivers/fastboot/Kconfig @@ -2,6 +2,7 @@ menu "Fastboot support"
config FASTBOOT bool + depends on CMDLINE imply ANDROID_BOOT_IMAGE imply CMD_FASTBOOT help
--
2.42.0.609.gbb76f46606-goog