Files
Yaya48 cf256aa081 Import QEMU upstream snapshot d2e570c
Upstream: https://gitlab.com/qemu-project/qemu.git

Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
2026-08-31 02:15:30 +02:00

36 lines
869 B
JSON

# -*- Mode: Python -*-
# vim: filetype=python
# SPDX-License-Identifier: GPL-2.0-or-later
##
# == GHESv2 CPER Error Injection
#
# Defined since ACPI Specification 6.1, section 18.3.2.8 Generic
# Hardware Error Source version 2. See:
#
# https://uefi.org/sites/default/files/resources/ACPI_6_1.pdf
##
##
# @inject-ghes-v2-error:
#
# Inject an error with additional ACPI 6.1 GHESv2 error information
#
# @cper: contains a base64 encoded string with raw data for a single
# CPER record with Generic Error Status Block, Generic Error Data
# Entry and generic error data payload, as described at
# https://uefi.org/specs/UEFI/2.10/Apx_N_Common_Platform_Error_Record.html#format
#
# Features:
#
# @unstable: This command is experimental.
#
# Since: 10.2
##
{ 'command': 'inject-ghes-v2-error',
'data': {
'cper': 'str'
},
'features': [ 'unstable' ]
}