From: Tom Rini Date: Wed, 23 Apr 2025 14:49:13 +0000 (-0600) Subject: bootstd: Rework BLK dependency X-Git-Tag: v2025.07-rc2~19 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b6760ddeb4ef940226921017cd9088c89784b01;p=pandora-u-boot.git bootstd: Rework BLK dependency The bootstd code itself does not have any dependency on BLK in order to build. However, in order to minimize size growth of non-migrated platforms, change this from being "default y" to "default y if BLK". This will make it easier to begin migration of platforms which do not have any BLK-class device but do want to use bootstd. Signed-off-by: Tom Rini --- diff --git a/boot/Kconfig b/boot/Kconfig index 2456856a572..30eb5b328d7 100644 --- a/boot/Kconfig +++ b/boot/Kconfig @@ -427,8 +427,8 @@ config BOOT_DEFAULTS menuconfig BOOTSTD bool "Standard boot" - default y - depends on DM && OF_CONTROL && BLK + default y if BLK + depends on DM && OF_CONTROL help U-Boot supports a standard way of locating something to boot, typically an Operating System such as Linux, provided by a distro such