Initial commit

This commit is contained in:
Stone_Red
2026-06-08 12:30:37 +02:00
commit 2ba87a113d
310 changed files with 4457 additions and 0 deletions
+217
View File
@@ -0,0 +1,217 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Build x64",
"type": "shell",
"command": "dotnet",
"args": [
"publish",
"-c", "Debug",
"-r", "linux-x64",
"-o", "${workspaceFolder}/output-x64",
"--verbosity", "minimal"
],
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": ["$msCompile"],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Build ARM64",
"type": "shell",
"command": "dotnet",
"args": [
"publish",
"-c", "Debug",
"-r", "linux-arm64",
"-o", "${workspaceFolder}/output-arm64",
"--verbosity", "minimal"
],
"group": "build",
"problemMatcher": ["$msCompile"],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Build Release x64",
"type": "shell",
"command": "dotnet",
"args": [
"publish",
"-c", "Release",
"-r", "linux-x64",
"-o", "${workspaceFolder}/output-x64",
"--verbosity", "minimal"
],
"group": "build",
"problemMatcher": ["$msCompile"],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Build Release ARM64",
"type": "shell",
"command": "dotnet",
"args": [
"publish",
"-c", "Release",
"-r", "linux-arm64",
"-o", "${workspaceFolder}/output-arm64",
"--verbosity", "minimal"
],
"group": "build",
"problemMatcher": ["$msCompile"],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Run QEMU x64",
"type": "shell",
"dependsOn": "Build x64",
"command": "qemu-system-x86_64",
"args": [
"-M", "q35",
"-cpu", "max",
"-m", "512M",
"-serial", "stdio",
"-cdrom", "${workspaceFolder}/output-x64/RemSox.iso",
"-vga", "std",
"-no-reboot",
"-no-shutdown"
],
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Run QEMU ARM64",
"type": "shell",
"dependsOn": "Build ARM64",
"command": "qemu-system-aarch64",
"args": [
"-M", "virt",
"-cpu", "cortex-a72",
"-m", "1G",
"-bios", "/usr/share/AAVMF/AAVMF_CODE.fd",
"-drive", "if=none,id=cd,file=${workspaceFolder}/output-arm64/RemSox.iso",
"-device", "virtio-scsi-pci",
"-device", "scsi-cd,drive=cd,bootindex=0",
"-device", "virtio-keyboard-device",
"-device", "ramfb",
"-serial", "stdio"
],
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Debug QEMU x64",
"dependsOn": "Build x64",
"dependsOrder": "sequence",
"type": "shell",
"command": "bash",
"args": [
"-c",
"qemu-system-x86_64 -M q35 -cpu max -m 512M -serial stdio -cdrom ${workspaceFolder}/output-x64/RemSox.iso -vga std -s -S -no-reboot -no-shutdown & sleep 1 && echo QEMU-DEBUG-READY && wait"
],
"isBackground": true,
"problemMatcher": {
"owner": "qemu-debug",
"fileLocation": ["relative", "${workspaceFolder}"],
"background": {
"activeOnStart": true,
"beginsPattern": "^qemu",
"endsPattern": "QEMU-DEBUG-READY"
},
"pattern": { "regexp": ".*" }
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Debug QEMU ARM64",
"dependsOn": "Build ARM64",
"dependsOrder": "sequence",
"type": "shell",
"command": "bash",
"args": [
"-c",
"qemu-system-aarch64 -M virt -cpu cortex-a72 -m 1G -bios /usr/share/AAVMF/AAVMF_CODE.fd -drive if=none,id=cd,file=${workspaceFolder}/output-arm64/RemSox.iso -device virtio-scsi-pci -device scsi-cd,drive=cd,bootindex=0 -device virtio-keyboard-device -device ramfb -serial stdio -s -S & sleep 1 && echo QEMU-ARM64-DEBUG-READY && wait"
],
"isBackground": true,
"problemMatcher": {
"owner": "qemu-arm64-debug",
"fileLocation": ["relative", "${workspaceFolder}"],
"background": {
"activeOnStart": true,
"beginsPattern": "^qemu",
"endsPattern": "QEMU-ARM64-DEBUG-READY"
},
"pattern": { "regexp": ".*" }
},
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
},
{
"label": "Stop QEMU x64",
"type": "shell",
"command": "pkill",
"args": ["-f", "qemu-system-x86_64.*RemSox"],
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
},
{
"label": "Stop QEMU ARM64",
"type": "shell",
"command": "pkill",
"args": ["-f", "qemu-system-aarch64.*RemSox"],
"problemMatcher": [],
"presentation": {
"reveal": "never"
}
},
{
"label": "Check Tools",
"type": "shell",
"command": "cosmos",
"args": ["check"],
"problemMatcher": [],
"presentation": {
"reveal": "always",
"panel": "shared"
}
},
{
"label": "Clean Build",
"type": "shell",
"command": "rm",
"args": ["-rf", "${workspaceFolder}/output-x64", "${workspaceFolder}/output-arm64", "${workspaceFolder}/bin", "${workspaceFolder}/obj"],
"problemMatcher": [],
"presentation": {
"reveal": "silent"
}
}
]
}