summaryrefslogtreecommitdiff
path: root/utils
diff options
context:
space:
mode:
authorNaushir Patuck <naush@raspberrypi.com>2023-11-20 13:54:28 +0000
committerNaushir Patuck <naush@raspberrypi.com>2023-11-29 09:05:38 +0000
commitbba4ec63c4b0699b7f7ffb20e4f37af2b996d355 (patch)
treeafb047373376ea73124b58bb5b8af69a0c293c36 /utils
parentbd6658943a97288b5673e65649a3a48dac7c78da (diff)
controls: Update argument handling for controls generation scripts
The template file to the gen-controls.py and gen-py-controls.py is now passed in through the '-t' or '--template' command line argument instead of being a positional argument. This will allow multiple input files to be provided to the scripts in a future commit. Signed-off-by: Naushir Patuck <naush@raspberrypi.com> Reviewed-by: Jacopo Mondi <jacopo.mondi@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'utils')
-rwxr-xr-xutils/gen-controls.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/gen-controls.py b/utils/gen-controls.py
index c1172cb2..56e0c7ba 100755
--- a/utils/gen-controls.py
+++ b/utils/gen-controls.py
@@ -340,10 +340,10 @@ def main(argv):
help='Mode of operation')
parser.add_argument('--output', '-o', metavar='file', type=str,
help='Output file name. Defaults to standard output if not specified.')
+ parser.add_argument('--template', '-t', dest='template', type=str, required=True,
+ help='Template file name.')
parser.add_argument('input', type=str,
help='Input file name.')
- parser.add_argument('template', type=str,
- help='Template file name.')
args = parser.parse_args(argv[1:])