mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-07 22:53:00 +00:00
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
74 lines
1.2 KiB
Plaintext
74 lines
1.2 KiB
Plaintext
# Kconfig - drivers configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
|
|
menu "Device Drivers"
|
|
|
|
source "drivers/bluetooth/Kconfig"
|
|
|
|
config IEEE802154
|
|
bool
|
|
default n
|
|
default y if NETWORKING_WITH_15_4 || NET_L2_IEEE802154
|
|
|
|
source "drivers/ieee802154/Kconfig"
|
|
|
|
source "drivers/console/Kconfig"
|
|
|
|
source "drivers/ethernet/Kconfig"
|
|
|
|
source "drivers/slip/Kconfig"
|
|
|
|
source "drivers/serial/Kconfig"
|
|
|
|
source "drivers/interrupt_controller/Kconfig"
|
|
|
|
source "drivers/timer/Kconfig"
|
|
|
|
source "drivers/random/Kconfig"
|
|
|
|
source "drivers/grove/Kconfig"
|
|
|
|
source "drivers/pci/Kconfig"
|
|
|
|
source "drivers/gpio/Kconfig"
|
|
|
|
source "drivers/shared_irq/Kconfig"
|
|
|
|
source "drivers/spi/Kconfig"
|
|
|
|
source "drivers/i2c/Kconfig"
|
|
|
|
source "drivers/pwm/Kconfig"
|
|
|
|
source "drivers/pinmux/Kconfig"
|
|
|
|
source "drivers/adc/Kconfig"
|
|
|
|
source "drivers/rtc/Kconfig"
|
|
|
|
source "drivers/watchdog/Kconfig"
|
|
|
|
source "drivers/clock_control/Kconfig"
|
|
|
|
source "drivers/ipm/Kconfig"
|
|
|
|
source "drivers/aio/Kconfig"
|
|
|
|
source "drivers/flash/Kconfig"
|
|
|
|
source "drivers/sensor/Kconfig"
|
|
|
|
source "drivers/counter/Kconfig"
|
|
|
|
source "drivers/dma/Kconfig"
|
|
|
|
source "drivers/usb/Kconfig"
|
|
|
|
endmenu
|