media: Kconfig: allow to select drivers if EMBEDDED
Embedded systems often connect to sensors or other multimedia subdevices directly. Currently, to be able to select such a subdevice (e.g. CONFIG_VIDEO_OV5640) disabling of the auto- select config option is needed (CONFIG_MEDIA_SUBDRV_AUTOSELECT). This is inconvenient as the ancillary drivers for a particular device then need to be selected manually. Allow to select drivers manually while keeping the auto-select feature in case EXPERT (selected by EMBEDDED) is enabled. Signed-off-by: Stefan Agner <stefan@agner.ch> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:

committed by
Mauro Carvalho Chehab

parent
b29ecab178
commit
8169cf0a02
@@ -1,5 +1,5 @@
|
|||||||
menu "Customise DVB Frontends"
|
menu "Customise DVB Frontends"
|
||||||
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST
|
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST || EXPERT
|
||||||
|
|
||||||
comment "Multistandard (satellite) frontends"
|
comment "Multistandard (satellite) frontends"
|
||||||
depends on DVB_CORE
|
depends on DVB_CORE
|
||||||
|
@@ -5,7 +5,7 @@
|
|||||||
if VIDEO_V4L2
|
if VIDEO_V4L2
|
||||||
|
|
||||||
config VIDEO_IR_I2C
|
config VIDEO_IR_I2C
|
||||||
tristate "I2C module for IR" if !MEDIA_SUBDRV_AUTOSELECT
|
tristate "I2C module for IR" if !MEDIA_SUBDRV_AUTOSELECT || EXPERT
|
||||||
depends on I2C && RC_CORE
|
depends on I2C && RC_CORE
|
||||||
default y
|
default y
|
||||||
help
|
help
|
||||||
@@ -22,7 +22,7 @@ config VIDEO_IR_I2C
|
|||||||
#
|
#
|
||||||
|
|
||||||
menu "I2C Encoders, decoders, sensors and other helper chips"
|
menu "I2C Encoders, decoders, sensors and other helper chips"
|
||||||
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST
|
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST || EXPERT
|
||||||
|
|
||||||
comment "Audio decoders, processors and mixers"
|
comment "Audio decoders, processors and mixers"
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
if VIDEO_V4L2
|
if VIDEO_V4L2
|
||||||
|
|
||||||
menu "SPI helper chips"
|
menu "SPI helper chips"
|
||||||
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST
|
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST || EXPERT
|
||||||
|
|
||||||
config VIDEO_GS1662
|
config VIDEO_GS1662
|
||||||
tristate "Gennum Serializers video"
|
tristate "Gennum Serializers video"
|
||||||
|
@@ -15,7 +15,7 @@ config MEDIA_TUNER
|
|||||||
select MEDIA_TUNER_MC44S803 if MEDIA_SUBDRV_AUTOSELECT
|
select MEDIA_TUNER_MC44S803 if MEDIA_SUBDRV_AUTOSELECT
|
||||||
|
|
||||||
menu "Customize TV tuners"
|
menu "Customize TV tuners"
|
||||||
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST
|
visible if !MEDIA_SUBDRV_AUTOSELECT || COMPILE_TEST || EXPERT
|
||||||
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
|
depends on MEDIA_ANALOG_TV_SUPPORT || MEDIA_DIGITAL_TV_SUPPORT || MEDIA_RADIO_SUPPORT || MEDIA_SDR_SUPPORT
|
||||||
|
|
||||||
config MEDIA_TUNER_SIMPLE
|
config MEDIA_TUNER_SIMPLE
|
||||||
|
Reference in New Issue
Block a user