1
0
mirror of https://github.com/mbirth/tcl_ota_check.git synced 2024-09-19 22:33:25 +01:00

More pimping.

This commit is contained in:
Markus Birth 2017-12-27 00:48:01 +01:00
parent 6afefd5c63
commit f5659aeb96
Signed by: mbirth
GPG Key ID: A9928D7A098C3A9A

View File

@ -18,9 +18,9 @@ dp.description = """
version specified as fvver. version specified as fvver.
""" """
dp.add_argument("prd", nargs=1, help="CU Reference #, e.g. PRD-63117-011") dp.add_argument("prd", nargs=1, help="CU Reference #, e.g. PRD-63117-011")
dp.add_argument("fvver", nargs="?", help="Firmware version to check for updates, e.g. AAM481", default="AAA000") dp.add_argument("fvver", nargs="?", help="Firmware version to check for OTA updates, e.g. AAM481 (omit to run FULL check)", default="AAA000")
dp.add_argument("--mode", help="type of update to check for (auto, full, ota), defaults to auto", default="auto") dp.add_argument("--mode", help="force type of update to check for", default="auto", type=str ,choices=["full", "ota"])
dp.add_argument("--type", help="type of check to run (auto, desktop, mobile), defaults to auto", default="auto") dp.add_argument("--type", help="force type of check to run", default="auto", type=str, choices=["desktop", "mobile"])
args = dp.parse_args(sys.argv[1:]) args = dp.parse_args(sys.argv[1:])
def sel_mode(txtmode, autoval): def sel_mode(txtmode, autoval):