Skip to content

Commit 71c543b

Browse files
committed
fix: bump install() heap to 2.5 GiB and version to 0.12.1
Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent ca1a6fe commit 71c543b

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

host/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

host/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyperlight-unikraft"
3-
version = "0.12.0"
3+
version = "0.12.1"
44
edition = "2021"
55
description = "Embedded Hyperlight host for running Unikraft unikernels"
66
license = "MIT OR Apache-2.0"

host/src/pyhl.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ pub fn install(opts: &InstallOptions<'_>) -> Result<InstallReport> {
224224
{
225225
let mut builder = Sandbox::builder(&dst_kernel)
226226
.initrd_file(&dst_initrd)
227-
.heap_size(1280 * 1024 * 1024);
227+
.heap_size(2560 * 1024 * 1024);
228228
for p in opts.mounts {
229229
builder = builder.preopen(p.clone());
230230
}

0 commit comments

Comments
 (0)