From 4206747c1727d46d88abb0dffd43cc83aeb357bc Mon Sep 17 00:00:00 2001 From: fastium Date: Sat, 28 Feb 2026 16:12:39 +0100 Subject: [PATCH] chore(lab01): add command for zed --- .zed/tasks.json | 54 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 .zed/tasks.json diff --git a/.zed/tasks.json b/.zed/tasks.json new file mode 100644 index 0000000..edeed87 --- /dev/null +++ b/.zed/tasks.json @@ -0,0 +1,54 @@ +// Project tasks configuration. See https://zed.dev/docs/tasks for documentation. +// +// Example: +[ + { + "label": "Get buildroot", + "command": "/usr/local/bin/get-buildroot.sh", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "reveal_target": "dock", + "hide": "never", + "shell": "system", + "show_summary": true, + "show_command": true, + }, + { + "label": "Build linux", + "command": "cd /buildroot && make", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "reveal_target": "dock", + "hide": "never", + "shell": "system", + "show_summary": true, + "show_command": true, + }, + { + "label": "Extract rootfs", + "command": "/usr/local/bin/extract-rootfs.sh", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "reveal_target": "dock", + "hide": "never", + "shell": "system", + "show_summary": true, + "show_command": true, + }, + { + "label": "Sync image (sd card)", + "command": "/usr/local/bin/sync-images.sh", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "reveal_target": "dock", + "hide": "never", + "shell": "system", + "show_summary": true, + "show_command": true, + }, + +]