diff options
author | Tom Rini <trini@konsulko.com> | 2019-05-29 17:01:29 -0400 |
---|---|---|
committer | Jagan Teki <jagan@amarulasolutions.com> | 2019-06-13 12:51:06 +0530 |
commit | 524e98a71264631593fb83abfad21a01f62cd76e (patch) | |
tree | 030e7fd38fcb1b8e67902613009ff42cdc732965 /Kconfig | |
parent | a4298ddaf8bbccf8a14acb6be33764eecbea9abd (diff) | |
download | u-boot-524e98a71264631593fb83abfad21a01f62cd76e.tar.gz |
Kconfig: Add DEPRECATED option
Add a new option, CONFIG_DEPRECATED, for code that relies on deprecated
functionality and has not been converted past the deadline for
conversion.
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
Diffstat (limited to 'Kconfig')
-rw-r--r-- | Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -20,6 +20,13 @@ config BROKEN This option cannot be enabled. It is used as dependency for broken and incomplete features. +config DEPRECATED + bool + help + This option cannot be enabled. It it used as a dependency for + code that relies on deprecated features that will be removed and + the conversion deadline has passed. + config LOCALVERSION string "Local version - append to U-Boot release" help |