Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Ignition UI #260

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
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"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
description = "Interact with the Igntion subsystem"
description = "Interact with the Ignition 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