summaryrefslogtreecommitdiff
path: root/src/ukify
diff options
context:
space:
mode:
Diffstat (limited to 'src/ukify')
-rwxr-xr-xsrc/ukify/ukify.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ukify/ukify.py b/src/ukify/ukify.py
index 3fbeb2b215..fc9c4767b1 100755
--- a/src/ukify/ukify.py
+++ b/src/ukify/ukify.py
@@ -4,7 +4,7 @@
# pylint: disable=missing-docstring,invalid-name,import-outside-toplevel
# pylint: disable=consider-using-with,unspecified-encoding,line-too-long
# pylint: disable=too-many-locals,too-many-statements,too-many-return-statements
-# pylint: disable=too-many-branches
+# pylint: disable=too-many-branches,fixme
import argparse
import collections
@@ -658,7 +658,7 @@ def parse_args(args=None):
description='Build and sign Unified Kernel Images',
allow_abbrev=False,
usage='''\
-usage: ukify [options…] [linux [initrd…]]
+ukify [options…] [LINUX INITRD…]
ukify -h | --help
''')
@@ -666,10 +666,12 @@ usage: ukify [options…] [linux [initrd…]]
p.error = lambda message: p.exit(2, f'{p.prog}: error: {message}\n')
p.add_argument('linux',
+ metavar='LINUX',
type=pathlib.Path,
nargs="?",
help='vmlinuz file [.linux section]')
p.add_argument('initrd',
+ metavar='INITRD…',
type=pathlib.Path,
nargs='*',
help='initrd files [.initrd section]')