Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
at v5.12-rc1 31 lines 777 B view raw
1# SPDX-License-Identifier: GPL-2.0 2menuconfig MOST_COMPONENTS 3 tristate "MOST support" 4 depends on HAS_DMA && CONFIGFS_FS && MOST 5 default n 6 help 7 Say Y here if you want to enable MOST support. 8 This driver needs at least one additional component to enable the 9 desired access from userspace (e.g. character devices) and one that 10 matches the network controller's hardware interface (e.g. USB). 11 12 To compile this driver as a module, choose M here: the 13 module will be called most_core. 14 15 If in doubt, say N here. 16 17 18 19if MOST_COMPONENTS 20 21source "drivers/staging/most/net/Kconfig" 22 23source "drivers/staging/most/sound/Kconfig" 24 25source "drivers/staging/most/video/Kconfig" 26 27source "drivers/staging/most/dim2/Kconfig" 28 29source "drivers/staging/most/i2c/Kconfig" 30 31endif