Remove the unnecessary BUILD_FLAT dependence from Kconfig

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
This commit is contained in:
Xiang Xiao 2020-04-29 22:40:56 +08:00 committed by patacongo
parent fcc688e771
commit 547bad9e2a
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
config EXAMPLES_TIMER
tristate "Timer example"
default n
depends on TIMER && BUILD_FLAT
depends on TIMER
---help---
Enable the timer example

View File

@ -29,7 +29,7 @@ if READLINE_ECHO
config READLINE_TABCOMPLETION
bool "Tab completion"
default n
depends on (BUILD_FLAT && BUILTIN) || READLINE_HAVE_EXTMATCH
depends on BUILTIN || READLINE_HAVE_EXTMATCH
---help---
Build in support for Unix-style tab completion. This feature was
originally provided by Nghia Ho.