diff options
author | David Timber <mieabby@gmail.com> | 2021-08-10 19:43:33 +1000 |
---|---|---|
committer | David Timber <mieabby@gmail.com> | 2021-08-10 19:43:33 +1000 |
commit | bbd889f13f94d59a5b78f3c3bc93499d523b8264 (patch) | |
tree | f107ac94e0b926476d8a3d8cc8c1f61672c836af /.vscode/launch.json | |
parent | c008231406e43f314a19a3d34c1218d06815dc8a (diff) |
Impl M2M binary update ...
* Use getopt in proone-bne
* Call pth_yield() where necessary
* htbt: truncate downloaded binary if actual size of data transfered is
less than alloc_len
* prne_rcb_param.self is not optional as proone-bne uses nybin
* Add --vercmp option for proone-bne to test M2M bin update
* Refactor proone-htbtclient
* Protocol change: prne_htbt_bin_meta.alloc_len is now size_t
* Add convenience functions: prne_realloc_str(), prne_redup_str()
Diffstat (limited to '.vscode/launch.json')
-rw-r--r-- | .vscode/launch.json | 33 |
1 files changed, 5 insertions, 28 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json index 9bf7391..537323d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -60,33 +60,6 @@ "miDebuggerPath": "/usr/bin/gdb" }, { - "name": "pack", - "type": "cppdbg", - "request": "launch", - "program": "${workspaceFolder}/src/proone-pack", - "args": [ - "tmp/pack-test/exec", - "src/dvault.bin", - "src/data/pack-test/exec.aarch64", - "src/data/pack-test/exec.armv4t", - "src/data/pack-test/exec.armv7", - "src/data/pack-test/exec.i686", - "src/data/pack-test/exec.mips", - "src/data/pack-test/exec.mpsl", - "src/data/pack-test/exec.ppc", - "src/data/pack-test/exec.sh4", - "src/data/pack-test/exec.x86_64" - ], - "stopAtEntry": false, - "cwd": "${workspaceFolder}", - "environment": [], - "externalConsole": false, - "MIMode": "gdb", - "setupCommands": [], - "preLaunchTask": "Build pack", - "miDebuggerPath": "/usr/bin/gdb" - }, - { "name": "rnd", "type": "cppdbg", "request": "launch", @@ -144,9 +117,13 @@ "request": "launch", "program": "${workspaceFolder}/src/proone-bne", "args": [ + "--cdict", "./src/data/cred_dict.bin", + "--nybin", "./builds/proone/proone.nybin", - "192.0.2.1" // CHANGE + "--vercmp", + "0", + "192.0.2.1" // CHANGE ME ], "stopAtEntry": false, "cwd": "${workspaceFolder}", |