diff options
| author | Felix Morgner <felix.morgner@ost.ch> | 2026-04-07 14:01:18 +0200 |
|---|---|---|
| committer | Felix Morgner <felix.morgner@ost.ch> | 2026-04-07 14:01:18 +0200 |
| commit | 3bf3c748eec38c776dd3c54cbb30be1d44ffb5c3 (patch) | |
| tree | 9700ccca2924d263da341e141543507dd07a26a6 /.vscode | |
| parent | 482f431213b77b3ec72d4cfb5c77e23b34e8e68f (diff) | |
| download | teachos-3bf3c748eec38c776dd3c54cbb30be1d44ffb5c3.tar.xz teachos-3bf3c748eec38c776dd3c54cbb30be1d44ffb5c3.zip | |
ide: simplify overall configuration
Diffstat (limited to '.vscode')
| -rw-r--r-- | .vscode/tasks.json | 36 |
1 files changed, 7 insertions, 29 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json index d673a7a..1aa53d9 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -6,23 +6,10 @@ "command": "${workspaceFolder}/scripts/qemu-wrapper.sh", "type": "shell", "args": [ - "-s", - "-m", - "32M", - "-machine", - "q35", - "-smp", - "4,sockets=1,cores=4,threads=1", - "-display", - "curses", - "-debugcon", - "file:${workspaceFolder}/qemu-debugcon-${command:cmake.buildType}.log", - "-no-reboot", - "-d", - "int,cpu_reset", - "-cdrom", + "${workspaceFolder}", + "${command:cmake.buildType}", "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso", - "2>${workspaceFolder}/qemu-stderr-${command:cmake.buildType}.log" + "1" ], "isBackground": true, "presentation": { @@ -47,22 +34,13 @@ }, { "label": "QEMU", - "command": "qemu-system-x86_64", + "command": "${workspaceFolder}/scripts/qemu-wrapper.sh", "type": "shell", "args": [ - "-m", - "32M", - "-machine", - "q35", - "-smp", - "4,sockets=1,cores=4,threads=1", - "-display", - "curses", - "-debugcon", - "file:${workspaceFolder}/qemu-debugcon-${command:cmake.buildType}.log", - "-cdrom", + "${workspaceFolder}", + "${command:cmake.buildType}", "${command:cmake.buildDirectory}/bin/${command:cmake.buildType}/kernel.iso", - "2>${workspaceFolder}/qemu-stderr-${command:cmake.buildType}.log" + "0" ], "isBackground": true, "presentation": { |
