Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into feature/custom-license
Browse files Browse the repository at this point in the history
Signed-off-by: Kai-Uwe Hermann <[email protected]>
  • Loading branch information
hikinggrass committed Nov 19, 2024
2 parents 084dfe0 + da3adf6 commit 51cfe60
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 5 deletions.
9 changes: 6 additions & 3 deletions ev-dev-tools/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,16 @@ for getting the list of short forms.
Both the `module` and `interface` command have the following options in
common:

- `--work-dir`:
work directory which also contains the manifest definitions (default: ``.``)

- `--everest-dir`:
root directory of EVerest core or any directory containing interface
and module definitions (default: ``.``)

- `--framework-dir`:
root directory of the EVerest framework, containing the schema
definitions (default: ``../everest-framework``)
- `--schemas-dir`:
schemas directory of the EVerest framework, containing the schema
definitions (default: ``../everest-framework/schemas``)

- `--clang-format-file`:
if c++output should be formatted, set this to the path of the
Expand Down
4 changes: 2 additions & 2 deletions ev-dev-tools/src/ev_cli/ev.py
Original file line number Diff line number Diff line change
Expand Up @@ -809,7 +809,7 @@ def main():
if_genhdr_parser.set_defaults(action_handler=interface_genhdr)

hlp_actions = parser_hlp.add_subparsers(metavar='<action>', help='available actions', required=True)
hlp_genuuid_parser = hlp_actions.add_parser('generate-uuids', help='generete uuids')
hlp_genuuid_parser = hlp_actions.add_parser('generate-uuids', help='generate uuids')
hlp_genuuid_parser.add_argument('count', type=int, default=3)
hlp_genuuid_parser.set_defaults(action_handler=helpers_genuuids)

Expand All @@ -825,7 +825,7 @@ def main():

types_actions = parser_types.add_subparsers(metavar='<action>', help='available actions', required=True)
types_genhdr_parser = types_actions.add_parser(
'generate-headers', aliases=['gh'], parents=[common_parser], help='generete type headers')
'generate-headers', aliases=['gh'], parents=[common_parser], help='generate type headers')
types_genhdr_parser.add_argument('-f', '--force', action='store_true', help='force overwriting')
types_genhdr_parser.add_argument('-o', '--output-dir', type=str, help='Output directory for generated type '
'headers (default: {everest-dir}/build/generated/generated/types)')
Expand Down

0 comments on commit 51cfe60

Please sign in to comment.