Skip to content

Commit

Permalink
update falcon spec
Browse files Browse the repository at this point in the history
  • Loading branch information
Eliza Weisman committed Jan 11, 2024
1 parent 81eee6b commit 8887282
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions openapi/propolis-server-falcon.json
Original file line number Diff line number Diff line change
Expand Up @@ -631,6 +631,14 @@
"$ref": "#/components/schemas/PciPciBridge"
}
},
"qemu_pvpanic": {
"nullable": true,
"allOf": [
{
"$ref": "#/components/schemas/QemuPvpanic"
}
]
},
"serial_ports": {
"type": "object",
"additionalProperties": {
Expand Down Expand Up @@ -1405,6 +1413,19 @@
],
"additionalProperties": false
},
"QemuPvpanic": {
"type": "object",
"properties": {
"enable_isa": {
"description": "Enable the QEMU PVPANIC ISA bus device (I/O port 0x505).",
"type": "boolean"
}
},
"required": [
"enable_isa"
],
"additionalProperties": false
},
"SerialPort": {
"description": "A serial port device.",
"type": "object",
Expand Down

0 comments on commit 8887282

Please sign in to comment.