scripts: kconfig: Add copyright and license to kconfig.py

The file kconfig.py was originally introduced by myself in:
https://github.com/zephyrproject-rtos/zephyr/pull/5569

The file was a modified version of a Kconfiglib one, so it makes sense
to keep the original license (ISC).

Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
This commit is contained in:
Carles Cufi 2023-08-24 13:01:05 +02:00 committed by Fabio Baltieri
commit 05467ad6c6

View file

@ -1,5 +1,11 @@
#!/usr/bin/env python3 #!/usr/bin/env python3
# Copyright (c) 2018-2023 Nordic Semiconductor ASA and Ulf Magnusson
# Originally modified from:
# https://github.com/ulfalizer/Kconfiglib/blob/master/examples/merge_config.py
# SPDX-License-Identifier: ISC
# Writes/updates the zephyr/.config configuration file by merging configuration # Writes/updates the zephyr/.config configuration file by merging configuration
# files passed as arguments, e.g. board *_defconfig and application prj.conf # files passed as arguments, e.g. board *_defconfig and application prj.conf
# files. # files.