From 3e69c9ce8fe56a70ac32a8c09fe752f266307f0c Mon Sep 17 00:00:00 2001 From: GHOSCHT <31184695+GHOSCHT@users.noreply.github.com> Date: Sun, 26 Nov 2023 16:39:11 +0100 Subject: [PATCH] Add TrentOS shell abbreviations --- modules/shell/fish.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/shell/fish.nix b/modules/shell/fish.nix index 15e12db..9f86155 100644 --- a/modules/shell/fish.nix +++ b/modules/shell/fish.nix @@ -21,6 +21,12 @@ slp = "systemctl suspend"; sdn = "shutdown 0"; }; + shellAbbrs = { + hx = "~/Documents/heliox-cli/target/debug/heliox-cli --mode"; + build = "bash sdk/scripts/open_trentos_build_env.sh sdk/build-system.sh sdk/demos/demo_hello_world rpi3 build-rpi3-Debug-demo_hello_world -DCMAKE_BUILD_TYPE=Debug"; + simbuild = "bash sdk/scripts/open_trentos_build_env.sh sdk/build-system.sh sdk/demos/demo_hello_world zynq7000 build-zynq7000-Debug-demo_hello_world -DCMAKE_BUILD_TYPE=Debug"; + sim = "sudo bash ../sdk/scripts/open_trentos_test_env.sh ./simulate"; + }; }; }; }