2012-04-06 23:49:35 +08:00
|
|
|
#
|
|
|
|
# For a description of the syntax of this configuration file,
|
2015-06-28 22:08:57 +08:00
|
|
|
# see the file kconfig-language.txt in the NuttX tools repository.
|
2012-04-06 23:49:35 +08:00
|
|
|
#
|
2012-04-07 22:50:57 +08:00
|
|
|
|
2019-11-04 09:45:05 +08:00
|
|
|
config DEV_SIMPLE_ADDRENV
|
|
|
|
bool "Simple AddrEnv"
|
|
|
|
default n
|
|
|
|
|
2012-04-07 22:50:57 +08:00
|
|
|
config DEV_NULL
|
|
|
|
bool "Enable /dev/null"
|
|
|
|
default y
|
|
|
|
|
|
|
|
config DEV_ZERO
|
|
|
|
bool "Enable /dev/zero"
|
2012-09-06 05:36:03 +08:00
|
|
|
default n
|
2012-04-07 22:50:57 +08:00
|
|
|
|
2019-10-27 01:43:34 +08:00
|
|
|
config DRVR_MKRD
|
|
|
|
bool "RAM disk wrapper (mkrd)"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Build the mkrd() function which serves as a wrapper to simplify
|
|
|
|
creation of RAM disks. If the boardctrl() interface is enabled,
|
|
|
|
the selecting this option will also enable the BOARDIOC_MKRD
|
|
|
|
command that will support creation of RAM disks from applications.
|
|
|
|
|
2021-01-25 04:15:49 +08:00
|
|
|
# ARCH needs to support memory access while CPU is running to be able to use
|
|
|
|
# the LWL CONSOLE
|
|
|
|
|
|
|
|
config ARCH_HAVE_RDWR_MEM_CPU_RUN
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config LWL_CONSOLE
|
|
|
|
bool "Lightweight Link Console Support"
|
|
|
|
default n
|
|
|
|
depends on DEV_CONSOLE && ARCH_HAVE_RDWR_MEM_CPU_RUN
|
|
|
|
---help---
|
|
|
|
Use the lightweight link console which provides console over a
|
|
|
|
debug channel by means of shared memory. A terminal application
|
|
|
|
for openocd as the debugger is available in tools/ocdconsole.py.
|
|
|
|
|
2014-07-12 06:25:35 +08:00
|
|
|
menu "Buffering"
|
|
|
|
|
2014-07-12 01:20:11 +08:00
|
|
|
config DRVR_WRITEBUFFER
|
|
|
|
bool "Enable write buffer support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable generic write buffering support that can be used by a variety
|
|
|
|
of drivers.
|
|
|
|
|
|
|
|
if DRVR_WRITEBUFFER
|
|
|
|
|
|
|
|
config DRVR_WRDELAY
|
|
|
|
int "Write flush delay"
|
|
|
|
default 350
|
|
|
|
---help---
|
|
|
|
If there is no write activity for this configured amount of time,
|
|
|
|
then the contents will be automatically flushed to the media. This
|
|
|
|
reduces the likelihood that data will be stuck in the write buffer
|
|
|
|
at the time of power down.
|
|
|
|
|
|
|
|
endif # DRVR_WRITEBUFFER
|
|
|
|
|
|
|
|
config DRVR_READAHEAD
|
|
|
|
bool "Enable read-ahead buffer support"
|
|
|
|
default n
|
|
|
|
---help---
|
|
|
|
Enable generic read-ahead buffering support that can be used by a
|
|
|
|
variety of drivers.
|
|
|
|
|
2014-07-12 06:19:17 +08:00
|
|
|
if DRVR_WRITEBUFFER || DRVR_READAHEAD
|
|
|
|
|
|
|
|
config DRVR_READBYTES
|
|
|
|
bool "Support byte read method"
|
|
|
|
default y if MTD_BYTE_WRITE
|
|
|
|
default n if !MTD_BYTE_WRITE
|
|
|
|
|
|
|
|
config DRVR_REMOVABLE
|
|
|
|
bool "Support removable media"
|
|
|
|
default n
|
|
|
|
|
|
|
|
config DRVR_INVALIDATE
|
|
|
|
bool "Support cache invalidation"
|
|
|
|
default n
|
|
|
|
|
|
|
|
endif # DRVR_WRITEBUFFER || DRVR_READAHEAD
|
|
|
|
|
2014-07-12 06:25:35 +08:00
|
|
|
endmenu # Buffering
|
|
|
|
|
2020-08-12 22:47:48 +08:00
|
|
|
config SPECIFIC_DRIVERS
|
|
|
|
bool "Board Specific drivers"
|
|
|
|
default n
|
|
|
|
|
2020-02-06 12:21:22 +08:00
|
|
|
source drivers/crypto/Kconfig
|
|
|
|
source drivers/loop/Kconfig
|
2017-05-12 22:23:16 +08:00
|
|
|
source drivers/can/Kconfig
|
2016-01-26 23:58:18 +08:00
|
|
|
source drivers/i2c/Kconfig
|
2013-07-01 22:11:54 +08:00
|
|
|
source drivers/spi/Kconfig
|
2018-08-27 21:26:22 +08:00
|
|
|
source drivers/i2s/Kconfig
|
2015-02-14 00:30:06 +08:00
|
|
|
source drivers/timers/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/analog/Kconfig
|
2013-05-20 05:12:28 +08:00
|
|
|
source drivers/audio/Kconfig
|
2013-12-10 00:51:22 +08:00
|
|
|
source drivers/video/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/bch/Kconfig
|
|
|
|
source drivers/input/Kconfig
|
2015-12-15 22:40:34 +08:00
|
|
|
source drivers/ioexpander/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/lcd/Kconfig
|
2015-12-15 22:05:10 +08:00
|
|
|
source drivers/leds/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/mmcsd/Kconfig
|
2016-01-30 21:37:43 +08:00
|
|
|
source drivers/modem/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/mtd/Kconfig
|
2014-11-28 01:08:27 +08:00
|
|
|
source drivers/eeprom/Kconfig
|
2021-01-15 21:52:43 +08:00
|
|
|
source drivers/efuse/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/net/Kconfig
|
2020-08-06 01:43:13 +08:00
|
|
|
source drivers/note/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/pipes/Kconfig
|
|
|
|
source drivers/power/Kconfig
|
2019-11-03 01:30:33 +08:00
|
|
|
source drivers/rptun/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/sensors/Kconfig
|
|
|
|
source drivers/serial/Kconfig
|
|
|
|
source drivers/usbdev/Kconfig
|
|
|
|
source drivers/usbhost/Kconfig
|
2017-03-31 20:35:36 +08:00
|
|
|
source drivers/usbmisc/Kconfig
|
2016-07-01 02:24:33 +08:00
|
|
|
source drivers/usbmonitor/Kconfig
|
2012-04-07 22:50:57 +08:00
|
|
|
source drivers/wireless/Kconfig
|
2016-08-31 19:08:58 +08:00
|
|
|
source drivers/contactless/Kconfig
|
2018-04-05 00:57:36 +08:00
|
|
|
source drivers/1wire/Kconfig
|
2012-08-02 08:42:46 +08:00
|
|
|
source drivers/syslog/Kconfig
|
2019-08-21 21:39:29 +08:00
|
|
|
source drivers/platform/Kconfig
|
2019-09-06 03:28:28 +08:00
|
|
|
source drivers/rf/Kconfig
|
2020-10-23 16:36:11 +08:00
|
|
|
source drivers/rc/Kconfig
|
2021-03-29 18:18:07 +08:00
|
|
|
source drivers/motor/Kconfig
|