diff options
| author | Heinrich Schuchardt <[email protected]> | 2017-10-19 23:49:19 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2017-10-23 17:28:18 -0400 |
| commit | 4c7a211046a3956058b512edd8533f7df031cc4a (patch) | |
| tree | 0f8a47f07286c1f1793b43971430058ed6c0dfa6 | |
| parent | 6af5520fe13d81ccd4ec4f7234a8d7a2426c2bd6 (diff) | |
Kconfig: add CONFIG_BROKEN
Provide a Kconfig option that we can use as dependency for
features that are broken. This allows to easily disable them
without removing the code.
As no short text is supplied the option will not appear in
menuconfig.
Signed-off-by: Heinrich Schuchardt <[email protected]>
Reviewed-by: Simon Glass <[email protected]>
| -rw-r--r-- | Kconfig | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -14,6 +14,12 @@ source "arch/Kconfig" menu "General setup" +config BROKEN + bool + help + This option cannot be enabled. It is used as dependency + for broken and incomplete features. + config LOCALVERSION string "Local version - append to U-Boot release" help |
