Skip to content

Commit

Permalink
Add Ignition UI
Browse files Browse the repository at this point in the history
  • Loading branch information
arjenroodselaar committed Nov 16, 2022
1 parent d4a6537 commit 01bbdb5
Show file tree
Hide file tree
Showing 4 changed files with 609 additions and 2 deletions.
64 changes: 62 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ cmd-gpio = { path = "./cmd/gpio", package = "humility-cmd-gpio" }
cmd-hash = { path = "./cmd/hash", package = "humility-cmd-hash" }
cmd-hiffy = { path = "./cmd/hiffy", package = "humility-cmd-hiffy" }
cmd-i2c = { path = "./cmd/i2c", package = "humility-cmd-i2c" }
cmd-ignition = { path = "./cmd/ignition", package = "humility-cmd-ignition" }
cmd-isp = { path = "./cmd/isp", package = "humility-cmd-isp" }
cmd-itm = { path = "./cmd/itm", package = "humility-cmd-itm" }
cmd-jefe = { path = "./cmd/jefe", package = "humility-cmd-jefe" }
Expand Down
21 changes: 21 additions & 0 deletions cmd/ignition/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
[package]
name = "humility-cmd-ignition"
version = "0.1.0"
edition = "2021"
description = "Interact with the Igntion subsystem"

[dependencies]
anyhow = {version = "1.0.44", features = ["backtrace"] }
clap = {version = "3.0.12", features = ["derive", "env"] }
colored = "2.0"
log = {version = "0.4.8", features = ["std"]}
parse_int = "0.4.0"

drv-ignition-api = {git = "https://github.com/oxidecomputer/hubris", branch = "ignition", default-features = false}

humility = {path = "../../humility-core", package = "humility-core"}
humility-cmd = {path = "../../humility-cmd"}
humility-cmd-hiffy = {path = "../hiffy" }

hif = {git = "https://github.com/oxidecomputer/hif"}
idol = {git = "https://github.com/oxidecomputer/idolatry.git"}
Loading

0 comments on commit 01bbdb5

Please sign in to comment.