Skip to content

Commit 08e0ae8

Browse files
committed
temporarily set epoch to 3
1 parent 23ce7e7 commit 08e0ae8

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Cargo.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,17 +118,18 @@ zip = { version = "0.6", default-features = false, features = ["bzip2"] }
118118
# Oxide forks and repos
119119
attest-data = { git = "https://github.com/oxidecomputer/dice-util", default-features = false, version = "0.1.0" }
120120
dice-mfg-msgs = { git = "https://github.com/oxidecomputer/dice-util", default-features = false, version = "0.2.1" }
121+
# TODO: update after merge of hubtools epoch branch
121122
#gateway-messages = { git = "https://github.com/oxidecomputer/management-gateway-service", default-features = false, features = ["smoltcp"] }
122-
# XXX fix before push
123-
# gateway-messages = { path = "/home/stoltz/Oxide/src/mgs/epoch/gateway-messages", default-features = false, features = ["smoltcp"] }
124123
gateway-messages = { git = "https://github.com/oxidecomputer/management-gateway-service", default-features = false, features = ["smoltcp"], branch = "epoch" }
124+
#gateway-messages = { path = "/home/stoltz/Oxide/src/mgs/epoch/gateway-messages", default-features = false, features = ["smoltcp"] }
125125
gimlet-inspector-protocol = { git = "https://github.com/oxidecomputer/gimlet-inspector-protocol", version = "0.1.0" }
126126
hif = { git = "https://github.com/oxidecomputer/hif", default-features = false }
127127
humpty = { git = "https://github.com/oxidecomputer/humpty", default-features = false, version = "0.1.3" }
128+
# XXX Update after merge of hubtools epoch branch
128129
#hubtools = { git = "https://github.com/oxidecomputer/hubtools", default-features = false, version = "0.4.1" }
129-
# XXX fix before push
130130
hubtools = { git = "https://github.com/oxidecomputer/hubtools", default-features = false, branch = "epoch", version = "0.4.7" }
131131
#hubtools = { path = "/home/stoltz/Oxide/src/hubtools/epoch/hubtools" }
132+
132133
idol = { git = "https://github.com/oxidecomputer/idolatry.git", default-features = false }
133134
idol-runtime = { git = "https://github.com/oxidecomputer/idolatry.git", default-features = false }
134135
lpc55_sign = { git = "https://github.com/oxidecomputer/lpc55_support", default-features = false }

app/oxide-rot-1/app.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ board = "oxide-rot-1"
44
chip = "../../chips/lpc55"
55
stacksize = 1024
66
image-names = ["a", "b"]
7-
epoch = 0
7+
epoch = 1
88
version = 0
99
fwid = true
1010

app/rot-carrier/app.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ board = "rot-carrier-2"
44
chip = "../../chips/lpc55"
55
stacksize = 1024
66
image-names = ["a", "b"]
7-
epoch = 0
7+
epoch = 3
88
version = 0
99
fwid = true
1010

build/xtask/src/dist.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,7 @@ pub fn package(
611611
// The Git hash is included in the default caboose under the key
612612
// `GITC`, so we don't include it in the pseudo-version.
613613
archive
614-
.write_default_caboose(None, None)
614+
.write_default_caboose(None, Some(&cfg.toml.epoch.to_string()))
615615
.context("writing caboose into archive")?;
616616
archive.overwrite().context("overwriting archive")?;
617617
}

0 commit comments

Comments
 (0)