diff options
| author | Tom Rini <[email protected]> | 2026-03-23 13:52:49 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-04-07 11:32:32 -0600 |
| commit | 1fd04cf46baf108147c090e04d56ab84df2430a9 (patch) | |
| tree | 5a732fc2652c326bb290b72b901b02b9a43c1bde /cmd/Kconfig | |
| parent | a6594e82bb93bc14d97ca16440f6387fa3e0c111 (diff) | |
cmd: Correct dependencies for CMD_BOOTD
The CMD_BOOTD functionality can only work with CMD_BOOTM enabled, so
express this dependency in Kconfig.
Signed-off-by: Tom Rini <[email protected]>
Diffstat (limited to 'cmd/Kconfig')
| -rw-r--r-- | cmd/Kconfig | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index ff6ad37fbe4..0ddf300efab 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -292,6 +292,7 @@ menu "Boot commands" config CMD_BOOTD bool "bootd" + depends on CMD_BOOTM default y help Run the command stored in the environment "bootcmd", i.e. |
