Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
86 changes: 0 additions & 86 deletions .github/workflows/ci-deb.yml

This file was deleted.

182 changes: 0 additions & 182 deletions .github/workflows/ci-docker.yml

This file was deleted.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,3 +176,8 @@ Every crate in `crates/` is publishable on its own. Build only what you need.
## Commercial support

Midstall offers paid integration work for Heimdall: new DUT drivers, custom transports, on-prem deployment, and bringup-as-a-service. Contact `inquire@midstall.com`.

## Community

- **Discord**: [Join the server](https://discord.gg/HRhetTVcHG)
- **Contact**: [inquire@midstall.com](mailto:inquire@midstall.com)
14 changes: 7 additions & 7 deletions crates/heimdall-eda/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,6 @@ path = "src/main.rs"
[dependencies]
heimdall = { workspace = true, features = ["fuzzer", "daemon", "tui", "river"] }
heimdall-daemon = { workspace = true, features = ["sqlite", "river"] }

# heimdall-daemon's `aegis` feature pulls in heimdall-transport/linux-cdev
# for chardev GPIO, which only builds on Linux. Darwin builds get a daemon
# without the Aegis factories. River works on both via OpenOCD over TCP.
[target.'cfg(target_os = "linux")'.dependencies]
heimdall = { workspace = true, features = ["aegis"] }
heimdall-daemon = { workspace = true, features = ["aegis"] }
heimdall-i18n = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
clap.workspace = true
Expand All @@ -38,3 +31,10 @@ async-trait = { workspace = true }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }

# heimdall-daemon's `aegis` feature pulls in heimdall-transport/linux-cdev
# for chardev GPIO, which only builds on Linux. Darwin gets a daemon
# without the Aegis factories. River works on both via OpenOCD over TCP.
[target.'cfg(target_os = "linux")'.dependencies]
heimdall = { workspace = true, features = ["aegis"] }
heimdall-daemon = { workspace = true, features = ["aegis"] }
2 changes: 1 addition & 1 deletion pkgs/heimdall-eda/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ craneLib.buildPackage (
homepage = "https://github.com/Midstall/heimdall";
license = lib.licenses.asl20;
mainProgram = "heimdall";
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}
)
4 changes: 2 additions & 2 deletions pkgs/heimdall-logo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ python3Packages.buildPythonPackage (finalAttrs: {
meta = with lib; {
description = "Rendered Heimdall logo SVGs.";
license = licenses.asl20;
platforms = platforms.linux;
platforms = platforms.unix;
};
};

meta = with lib; {
description = "Programmatic generator for the Heimdall project logo.";
license = licenses.asl20;
platforms = platforms.linux;
platforms = platforms.unix;
};
})
Loading