Skip to content

Commit

Permalink
Update mtk.py
Browse files Browse the repository at this point in the history
  • Loading branch information
shmu1i authored Sep 19, 2024
1 parent 7986969 commit 236db70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"plstage": "Run stage2 payload via preloader mode (send_da)",
"da": "Run da xflash/legacy special commands",

This comment has been minimized.

Copy link
@kafi05

kafi05 Dec 6, 2024

jhh

"script": "Run multiple commands using text script",
"multi": 'Run multiple commands using a comma-separated list (enclose list in quotes)'
"multi": 'Run multiple commands using a semicolon-separated list (enclose list in quotes)'
}


Expand All @@ -53,8 +53,8 @@ def main():
'gettargetconfig, peek, stage, plstage, da, script\n')

parser_script = subparsers.add_parser("script", help="Run text script")
parser_multi = subparsers.add_parser("multi", help='Run multiple commands using a comma-separated list (enclose list in quotes)')
parser_multi.add_argument('commands', help='Comma-separated list of commands to run')
parser_multi = subparsers.add_parser("multi", help='Run multiple commands using a semicolon-separatedlist (enclose list in quotes)')
parser_multi.add_argument('commands', help='semicolon-separated list of commands to run')


parser_printgpt = subparsers.add_parser("printgpt", help="Print GPT Table information")
Expand Down

0 comments on commit 236db70

Please sign in to comment.