Skip to content

Commit ca8744c

Browse files
committed
dnm
1 parent 9cb9438 commit ca8744c

6 files changed

Lines changed: 13 additions & 13 deletions

File tree

.vscode/settings.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@
88
"clippy",
99
"--quiet",
1010
"--message-format=json",
11-
"--target=aarch64-unknown-none-softfloat",
12-
"--target=riscv64imac-unknown-none-elf",
11+
// "--target=aarch64-unknown-none-softfloat",
12+
// "--target=riscv64imac-unknown-none-elf",
1313
"--target=x86_64-unknown-none",
14-
"--target=x86_64-unknown-uefi",
14+
// "--target=x86_64-unknown-uefi",
1515
],
1616
"rust-analyzer.check.targets": [
17-
"aarch64-unknown-none-softfloat",
18-
"riscv64imac-unknown-none-elf",
17+
// "aarch64-unknown-none-softfloat",
18+
// "riscv64imac-unknown-none-elf",
1919
"x86_64-unknown-none",
20-
"x86_64-unknown-uefi",
20+
// "x86_64-unknown-uefi",
2121
]
2222
}

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ built = { version = "0.8", features = ["git2", "chrono"] }
4646
# FIXME: When target-specific features exist, remove the workaround features.
4747
# https://github.com/rust-lang/cargo/issues/1197
4848
[features]
49-
default = []
49+
default = ["x86_64-linux"]
5050
elf = []
5151
linux = []
5252
multiboot = []

data/x86_64/hello_world

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:eeb3809d55f20293260ced7efefa3cb5debea8b465990b505a6252ee729766c6
3-
size 921816
2+
oid sha256:be3c1014088e5e56cd30b16126633e0596d1686cb4ad55aa4212cbaaadd69fe7
3+
size 924128

data/x86_64/hello_world-microvm

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version https://git-lfs.github.com/spec/v1
2-
oid sha256:f79a47ec86044cacf471e65875d48a66017cf269bd42a33b4e21def2b3b229d6
3-
size 920976
2+
oid sha256:6cd50fd386ece311aa8db3e9adebe762347ebc979762f150c19d6764694887dc
3+
size 875544

xtask/src/ci/firecracker_vm_config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"drives": [],
88
"machine-config": {{
99
"vcpu_count": 1,
10-
"mem_size_mib": 256,
10+
"mem_size_mib": 8196,
1111
"smt": false
1212
}}
1313
}}

xtask/src/ci/qemu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ impl Qemu {
288288
}
289289
_ => {}
290290
}
291-
memory
291+
8196
292292
}
293293

294294
fn memory_args(&self) -> [String; 2] {

0 commit comments

Comments
 (0)