mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-09 22:16:29 +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>
38 lines
876 B
Python
Executable File
38 lines
876 B
Python
Executable File
#!/usr/bin/env python
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
import ConfigParser, os
|
|
import yaml
|
|
import sys
|
|
|
|
|
|
sample = False
|
|
in_file = sys.argv[1]
|
|
if sys.argv[2] == 'sample':
|
|
sample = True
|
|
|
|
out_file = os.path.join(os.path.dirname(in_file), sys.argv[2] + ".yaml")
|
|
|
|
config = ConfigParser.ConfigParser()
|
|
config.readfp(open(sys.argv[1]))
|
|
y = {'tests': 'tests'}
|
|
|
|
tests = []
|
|
for section in config.sections():
|
|
tc = {}
|
|
for opt in config.options(section):
|
|
value = config.get(section, opt)
|
|
if value in ['false', 'true']:
|
|
tc[opt] = True if value == 'true' else False
|
|
else:
|
|
tc[opt] = value
|
|
|
|
test = { section : tc}
|
|
tests.append(test)
|
|
|
|
y['tests'] = tests
|
|
if sample:
|
|
y['sample'] = { 'name': "TBD", 'description': "TBD" }
|
|
|
|
with open(out_file, "w") as f:
|
|
yaml.dump(y, f, width=50, indent=4, default_flow_style=False)
|