aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-10-26 14:31:27 -0400
committerTom Rini <trini@konsulko.com>2023-11-07 14:49:09 -0500
commit558787fd58321772f11591e58d4f3a1a509037fd (patch)
tree5c752e75ae8c26b90845c9aaac3e76ddb4c04d15
parent0b59c13a6f9323773f5706778cfccd5471755def (diff)
downloadu-boot-558787fd58321772f11591e58d4f3a1a509037fd.zip
u-boot-558787fd58321772f11591e58d4f3a1a509037fd.tar.gz
u-boot-558787fd58321772f11591e58d4f3a1a509037fd.tar.bz2
bootmeth_script: Depend on CMDLINE
As this particular bootmeth requires the command line and assorted commands to function, make sure we have CMDLINE enabled. Signed-off-by: Tom Rini <trini@konsulko.com>
-rw-r--r--boot/Kconfig3
1 files changed, 2 insertions, 1 deletions
diff --git a/boot/Kconfig b/boot/Kconfig
index 9378723..4ce8a98 100644
--- a/boot/Kconfig
+++ b/boot/Kconfig
@@ -543,7 +543,7 @@ config BOOTMETH_VBE
config BOOTMETH_DISTRO
bool # Options needed to boot any distro
- select BOOTMETH_SCRIPT # E.g. Armbian uses scripts
+ select BOOTMETH_SCRIPT if CMDLINE # E.g. Armbian uses scripts
select BOOTMETH_EXTLINUX # E.g. Debian uses these
select BOOTMETH_EXTLINUX_PXE if CMD_PXE && CMD_NET && DM_ETH
select BOOTMETH_EFILOADER if CMD_BOOTEFI # E.g. Ubuntu uses this
@@ -671,6 +671,7 @@ config BOOTMETH_SANDBOX
config BOOTMETH_SCRIPT
bool "Bootdev support for U-Boot scripts"
default y if BOOTSTD_FULL
+ depends on CMDLINE
select HUSH_PARSER
help
Enables support for booting a distro via a U-Boot script. This makes