first commit

This commit is contained in:
teasiu
2025-11-03 15:27:16 +08:00
commit 125598252c
1115 changed files with 60648 additions and 0 deletions

76
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,76 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Python Debugger: split",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"split",
"test\full.bin"
]
},
{
"name": "Python Debugger: merge",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"merge",
".\\test"
]
},
{
"name": "Python Debugger: unpack firmware",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"unpack",
".\\test\\full.bin"
]
},
{
"name": "Python Debugger: unpack mtd4",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"unpack",
".\\test\\4.rootfs"
]
},
{
"name": "Python Debugger: repack firmware",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"repack",
".\\test\\4_0-2abe5c.rootfs",
".\\test\\full.bin"
]
},
{
"name": "Python Debugger: repack mtd4",
"type": "debugpy",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
"args": [
"repack",
".\\test\\4_0-2abe5c.rootfs",
".\\test\\4.rootfs"
]
}
]
}