mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-07 14:25:21 +00:00
Update the files which contain no license information with the 'Apache-2.0' SPDX license identifier. Many source files in the tree are missing licensing information, which makes it harder for compliance tools to determine the correct license. By default all files without license information are under the default license of Zephyr, which is Apache version 2. Signed-off-by: Anas Nashif <anas.nashif@intel.com>
14 lines
747 B
CMake
14 lines
747 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
# Board initialization
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_CC2650 pinmux_cc2650.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_ESP32 pinmux_esp32.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_SIFIVE pinmux_sifive.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_MCUX pinmux_mcux.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_MCUX_LPC pinmux_mcux_lpc.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_QMSI pinmux_qmsi.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_STM32 stm32/pinmux_stm32.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_SAM0 pinmux_sam0.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_INTEL_S1000 pinmux_intel_s1000.c)
|
|
zephyr_sources_ifdef(CONFIG_PINMUX_RV32M1 pinmux_rv32m1.c)
|