Store full log in file

This commit is contained in:
Sparchatus 2022-05-04 15:43:21 +00:00
parent 689e045b9c
commit 2751ed3a15

4
.vscode/tasks.json vendored
View File

@ -13,7 +13,7 @@
{ {
"label": "Build and Run QEMU", "label": "Build and Run QEMU",
"type": "shell", "type": "shell",
"command": "cd ${BFBUILD_QEMU} && make qemu_a57", "command": "cd ${BFBUILD_QEMU} && make qemu_a57 | tee ${BFBUILD_QEMU}/full_output.log",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true
@ -31,7 +31,7 @@
{ {
"label": "Build and Run Toradex", "label": "Build and Run Toradex",
"type": "shell", "type": "shell",
"command": "cd ${BFBUILD} && make -j7 imx8x && make usbboot_imx8x", "command": "cd ${BFBUILD} && make -j7 imx8x && make usbboot_imx8x | tee ${BFBUILD}/full_output.log",
"group": { "group": {
"kind": "build", "kind": "build",
"isDefault": true "isDefault": true