Lines Matching +full:key +full:- +full:string
3 # SPDX-License-Identifier: Apache-2.0
25 # Keep this in sync with the string in west-commands.yml.
39 --------------
41 Boards are listed using a Python 3 format string. Arguments
42 to the format string are accessed by name.
44 The default format string is:
50 - name: board name
51 - full_name: board full name (typically, its commercial name)
52 - qualifiers: board qualifiers (will be empty for legacy boards)
53 - arch: board architecture (deprecated)
55 - dir: directory that contains the board definition
56 - vendor: board vendor
59 # Remember to update west-completion.bash if you add or remove
61 parser.add_argument('-f', '--format', default=default_fmt,
62 help='''Format string to use to list each board;
64 parser.add_argument('-n', '--name', dest='name_re',
84 for key in module_settings:
85 root = module.meta.get('build', {}).get('settings', {}).get(key)
87 module_settings[key].append(Path(module.project) / root)