1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/auto_init/multimedia: add module to Kconfig

This commit is contained in:
Leandro Lanzieri 2020-11-18 18:33:57 +01:00
parent d7e9b242e9
commit 3741fc8b92
No known key found for this signature in database
GPG Key ID: F4E9A721761C7593
2 changed files with 19 additions and 0 deletions

View File

@ -13,3 +13,5 @@ config MODULE_AUTO_INIT
Auto-initialization module. Can be used to initialize modules (such as
drivers, or network interfaces) on start-up automatically. Disable if a
more custom initialization is required. If unsure, say Y.
rsource "multimedia/Kconfig"

View File

@ -0,0 +1,17 @@
# Copyright (c) 2020 HAW Hamburg
#
# This file is subject to the terms and conditions of the GNU Lesser
# General Public License v2.1. See the file LICENSE in the top level
# directory for more details.
#
config MODULE_AUTO_INIT_MULTIMEDIA
bool "Auto initialize multimedia subsystem"
depends on MODULE_AUTO_INIT
depends on TEST_KCONFIG
default y if HAVE_MULTIMEDIA_DEVICE
config HAVE_MULTIMEDIA_DEVICE
bool
help
Indicates that a multimedia device driver is present.