apps/nshlib/Kconfig and examples/mount/Kconfig: Automatically select CONFIG_DRVR_MKRD is it is needed by the configuration.

This commit is contained in:
Gregory Nutt 2019-10-26 11:45:00 -06:00
parent 0bc798c7a9
commit e0dff13094
2 changed files with 2 additions and 0 deletions

View file

@ -6,6 +6,7 @@
config EXAMPLES_MOUNT
tristate "File system mount example"
default n
select DRVR_MKRD if !EXAMPLES_MOUNT_BLOCKDEVICE
---help---
Enable the file system mount example

View file

@ -12,6 +12,7 @@ config NSH_LIBRARY
select NETUTILS_NETLIB if NET
select LIBC_NETDB if NET
select READLINE_HAVE_EXTMATCH
select DRVR_MKRD if !NSH_DISABLE_MKRD
---help---
Build the NSH support library. This is used, for example, by
system/nsh in order to implement the full NuttShell (NSH).