Skip to content

Commit

Permalink
Merge pull request tiiuae#905 from maaharko/add_camera_cmd_tools
Browse files Browse the repository at this point in the history
Add camera related tools for test automation
  • Loading branch information
maaharko authored Nov 29, 2024
2 parents 3d83681 + c98ad3f commit 5178a89
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions modules/common/development/debug-tools.nix
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ in
iperf
tree
file
# to build ghaf on target

# to build ghaf on target
git

# Grpc testing
Expand Down Expand Up @@ -89,9 +89,11 @@ in
++ lib.optional (config.nixpkgs.hostPlatform.system == "riscv64-linux") perf-test-script-icicle
# runtimeShell (unixbench dependency) not available on RISC-V nor on cross-compiled Orin AGX/NX
++ lib.optional (pkgs.stdenv.hostPlatform == pkgs.stdenv.buildPlatform) pkgs.unixbench
# Build VLC only on x86
# Build VLC only on x86. Ffmpeg7 and v4l for camera related testing only on x86
++ lib.optionals (config.nixpkgs.hostPlatform.system == "x86_64-linux") (rmDesktopEntries [
pkgs.vlc
pkgs.ffmpeg_7
pkgs.v4l-utils
]);
};
}

0 comments on commit 5178a89

Please sign in to comment.