diff options
| author | Chenyi Qiang <chenyi.qiang@intel.com> | 2022-09-15 17:10:35 +0800 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2022-09-26 17:23:47 +0200 |
| commit | d525f73f9186a5bc641b8caf0b2c9bb94e5aa963 (patch) | |
| tree | 97bf687812bc54f7d809c043b3ab37461cf8fd3e /include/standard-headers/asm-x86/bootparam.h | |
| parent | 28d01b1d69e947a50b9ab9b45113fda1c4f96ac9 (diff) | |
| download | focaccia-qemu-d525f73f9186a5bc641b8caf0b2c9bb94e5aa963.tar.gz focaccia-qemu-d525f73f9186a5bc641b8caf0b2c9bb94e5aa963.zip | |
Update linux headers to v6.0-rc4
commit 7e18e42e4b280c85b76967a9106a13ca61c16179 Signed-off-by: Chenyi Qiang <chenyi.qiang@intel.com> Reviewed-by: Cornelia Huck <cohuck@redhat.com> Message-Id: <20220915091035.3897-3-chenyi.qiang@intel.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/standard-headers/asm-x86/bootparam.h')
| -rw-r--r-- | include/standard-headers/asm-x86/bootparam.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/include/standard-headers/asm-x86/bootparam.h b/include/standard-headers/asm-x86/bootparam.h index b2aaad10e5..0b06d2bff1 100644 --- a/include/standard-headers/asm-x86/bootparam.h +++ b/include/standard-headers/asm-x86/bootparam.h @@ -10,12 +10,13 @@ #define SETUP_EFI 4 #define SETUP_APPLE_PROPERTIES 5 #define SETUP_JAILHOUSE 6 +#define SETUP_CC_BLOB 7 +#define SETUP_IMA 8 #define SETUP_RNG_SEED 9 +#define SETUP_ENUM_MAX SETUP_RNG_SEED #define SETUP_INDIRECT (1<<31) - -/* SETUP_INDIRECT | max(SETUP_*) */ -#define SETUP_TYPE_MAX (SETUP_INDIRECT | SETUP_JAILHOUSE) +#define SETUP_TYPE_MAX (SETUP_ENUM_MAX | SETUP_INDIRECT) /* ram_size flags */ #define RAMDISK_IMAGE_START_MASK 0x07FF |