diff options
| author | Anshul Dalal <[email protected]> | 2026-06-25 08:47:06 +0530 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-07-10 15:45:57 -0600 |
| commit | 199a088b96c9d352cffa59ce4043e5ac60917697 (patch) | |
| tree | 63f19d9be4e57737c5bd52e62f34095963aa6ec7 /cmd | |
| parent | 9652e00aaa78c3435be33e534a8fae533ca1dc20 (diff) | |
treewide: Kconfig: use bool instead of tristate
U-Boot does not support modules, so having tristate options is useless.
Therefore this patch does a blind replace of all tristate options to
bool tree-wide.
Signed-off-by: Anshul Dalal <[email protected]>
Reviewed-by: Heiko Schocher <[email protected]>
Reviewed-by: Quentin Schulz <[email protected]>
Reviewed-by: Siddharth Vadapalli <[email protected]>
Reviewed-by: Neha Malcom Francis <[email protected]>
Reviewed-by: Romain Gantois <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
Diffstat (limited to 'cmd')
| -rw-r--r-- | cmd/Kconfig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/Kconfig b/cmd/Kconfig index 637119d3ff5..a527b218949 100644 --- a/cmd/Kconfig +++ b/cmd/Kconfig @@ -3185,7 +3185,7 @@ config CMD_STACKPROTECTOR_TEST endmenu config CMD_UBI - tristate "Enable UBI - Unsorted block images commands" + bool "Enable UBI - Unsorted block images commands" select MTD_UBI help UBI is a software layer above MTD layer which admits use of LVM-like @@ -3205,7 +3205,7 @@ config CMD_UBI_RENAME ubi rename <oldname> <newname> config CMD_UBIFS - tristate "Enable UBIFS - Unsorted block images filesystem commands" + bool "Enable UBIFS - Unsorted block images filesystem commands" depends on CMD_UBI default y if CMD_UBI select LZO |
