Skip to content

Commit b83640c

Browse files
committed
chore: update aws-lc-sys
New version of aws-lc-sys needs faccessat syscall on aarch64, so add it to the seccomp filter. Signed-off-by: Egor Lazarchuk <[email protected]>
1 parent 4100110 commit b83640c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

Cargo.lock

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

resources/seccomp/aarch64-unknown-linux-musl.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,10 @@
7474
"syscall": "fstat",
7575
"comment": "Used for drive patching & rescanning, for reading the local timezone from /etc/localtime"
7676
},
77+
{
78+
"syscall": "faccessat",
79+
"comment": "Used by aws-lc-sys"
80+
},
7781
{
7882
"syscall": "ftruncate",
7983
"comment": "Used for snapshotting"

src/vmm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bench = false
1111
[dependencies]
1212
acpi_tables = { path = "../acpi-tables" }
1313
aes-gcm = { version = "0.10.1", default-features = false, features = ["aes"] }
14-
aws-lc-rs = { version = "1.7.3", features = ["bindgen"] }
14+
aws-lc-rs = { version = "1.8.0", features = ["bindgen"] }
1515
base64 = "0.22.1"
1616
bincode = "1.2.1"
1717
bitflags = "2.6.0"

0 commit comments

Comments
 (0)