You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/cpu_templates/schema.json
+26
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,32 @@
5
5
"description": "Custom CPU template language description",
6
6
"type": "object",
7
7
"properties": {
8
+
"kvm_capabilities": {
9
+
"type": "array",
10
+
"items": {
11
+
"description": "Additional KVM capabilities can be added or existing (built-in) capabilities can be removed from the firecracker checks. To add KVM capability to the checklist specify decimal number of the corresponding KVM capability. To remove a KVM capability from the checklist specify decimal number of the corresponding KVM capability with '!' mark in the front. Works on both x86_64 and aarch64.",
12
+
"type": "string",
13
+
"examples": ["171", "!172"]
14
+
}
15
+
},
16
+
"vcpu_features": {
17
+
"type": "array",
18
+
"items": {
19
+
"description": "vCPU features to enable during vCPU initialization. Only for aarch64.",
20
+
"type": "object",
21
+
"properties": {
22
+
"index": {
23
+
"description": "Index into kvm_vcpu_init::features array. As of Linux kernel 6.4.10, only value 0 is allowed.",
24
+
"type": "integer"
25
+
},
26
+
"bitmap": {
27
+
"description": "Bitmap for modifying the 32 bit field in kvm_vcpu_init::features. Must be in the format `0b[01x]{1,32}`. Corresponding bits will be cleared (`0`), set (`1`) or left intact (`x`). (`_`) can be used as a separator.",
0 commit comments