The tools recently got the --all option to probe on all devices. This
option also needs to be added ot the shell autocompletion.
Reported-by: Michael Adler <
michae...@siemens.com>
Signed-off-by: Felix Moessbauer <
felix.mo...@siemens.com>
---
completion/common.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/completion/common.py b/completion/common.py
index e75f85e..42d789a 100644
--- a/completion/common.py
+++ b/completion/common.py
@@ -16,6 +16,7 @@ def add_common_opts(parser):
parser.add_argument(
"-f", "--filepath", metavar="ENVFILE", help="Environment to use. Expects a file name, usually called BGENV.DAT."
).complete = shtab.FILE
+ parser.add_argument("-A", "--all", action="store_true", help="Probe all partitions for ebg environments")
parser.add_argument("-p", "--part", metavar="ENV_PART", type=int, help="Set environment partition to use")
parser.add_argument("-v", "--verbose", action="store_true", help="Be verbose")
parser.add_argument("-V", "--version", action="store_true", help="Print version")
--
2.39.2