Skip to content

Commit 10aa695

Browse files
Add Ignition UI
1 parent d4a6537 commit 10aa695

File tree

4 files changed

+598
-2
lines changed

4 files changed

+598
-2
lines changed

Cargo.lock

Lines changed: 62 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ cmd-gpio = { path = "./cmd/gpio", package = "humility-cmd-gpio" }
115115
cmd-hash = { path = "./cmd/hash", package = "humility-cmd-hash" }
116116
cmd-hiffy = { path = "./cmd/hiffy", package = "humility-cmd-hiffy" }
117117
cmd-i2c = { path = "./cmd/i2c", package = "humility-cmd-i2c" }
118+
cmd-ignition = { path = "./cmd/ignition", package = "humility-cmd-ignition" }
118119
cmd-isp = { path = "./cmd/isp", package = "humility-cmd-isp" }
119120
cmd-itm = { path = "./cmd/itm", package = "humility-cmd-itm" }
120121
cmd-jefe = { path = "./cmd/jefe", package = "humility-cmd-jefe" }

cmd/ignition/Cargo.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "humility-cmd-ignition"
3+
version = "0.1.0"
4+
edition = "2021"
5+
description = "Interact with the Igntion subsystem"
6+
7+
[dependencies]
8+
anyhow = {version = "1.0.44", features = ["backtrace"] }
9+
clap = {version = "3.0.12", features = ["derive", "env"] }
10+
colored = "2.0"
11+
log = {version = "0.4.8", features = ["std"]}
12+
parse_int = "0.4.0"
13+
14+
drv-ignition-api = {git = "https://github.com/oxidecomputer/hubris", branch = "ignition", default-features = false}
15+
16+
humility = {path = "../../humility-core", package = "humility-core"}
17+
humility-cmd = {path = "../../humility-cmd"}
18+
humility-cmd-hiffy = {path = "../hiffy" }
19+
20+
hif = {git = "https://github.com/oxidecomputer/hif"}
21+
idol = {git = "https://github.com/oxidecomputer/idolatry.git"}

0 commit comments

Comments
 (0)