Skip to content

Commit

Permalink
Initial integration of bootupd
Browse files Browse the repository at this point in the history
- Enable building the code as part of our workspace
- Switch over some dependencies to be workspace deps
- Change our bootloader invocation to call into this code

TODO:

 - Expose bootupd state as part of status
 - Add option to take over the binaries

Signed-off-by: Colin Walters <[email protected]>
  • Loading branch information
cgwalters committed Nov 5, 2024
1 parent 57d008a commit 8c5a10a
Show file tree
Hide file tree
Showing 13 changed files with 268 additions and 1,344 deletions.
181 changes: 179 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[workspace]
members = ["cli", "lib", "xtask", "tests-integration"]
members = ["cli", "lib", "bootupd", "xtask", "tests-integration"]
resolver = "2"

[profile.dev]
Expand All @@ -21,7 +21,7 @@ lto = "yes"
anyhow = "1.0.82"
camino = "1.1.6"
cap-std-ext = "4.0.2"
chrono = { version = "0.4.38", default-features = false }
chrono = { version = "0.4.38", features = ["serde"] }
clap = "4.5.4"
indoc = "2.0.5"
fn-error-context = "0.2.1"
Expand Down
Loading

0 comments on commit 8c5a10a

Please sign in to comment.