You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.7 KiB
51 lines
1.7 KiB
3 weeks ago
|
From a498476ecdb2b81b7feae6bf496f0b8caa68d2e7 Mon Sep 17 00:00:00 2001
|
||
|
From: Sebastian Ott <sebott@redhat.com>
|
||
|
Date: Thu, 5 Sep 2024 13:58:44 +0200
|
||
|
Subject: [PATCH 1/9] x86: create new pc-q35 machine type for rhel 9.6
|
||
|
|
||
|
RH-Author: Sebastian Ott <sebott@redhat.com>
|
||
|
RH-MergeRequest: 270: RHEL10 machine types
|
||
|
RH-Jira: RHEL-29002 RHEL-29003 RHEL-35587 RHEL-38411 RHEL-45141 RHEL-52318 RHEL-52320
|
||
|
RH-Acked-by: Thomas Huth <thuth@redhat.com>
|
||
|
RH-Acked-by: Cornelia Huck <cohuck@redhat.com>
|
||
|
RH-Acked-by: Eric Auger <eric.auger@redhat.com>
|
||
|
RH-Commit: [1/7] 3c735a074e629eee589d5acf8fdace6517c57c54 (seott1/cos-qemu-kvm)
|
||
|
|
||
|
Signed-off-by: Sebastian Ott <sebott@redhat.com>
|
||
|
---
|
||
|
hw/i386/pc_q35.c | 14 +++++++++++++-
|
||
|
1 file changed, 13 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/hw/i386/pc_q35.c b/hw/i386/pc_q35.c
|
||
|
index a05df61cfc..6ee032e91e 100644
|
||
|
--- a/hw/i386/pc_q35.c
|
||
|
+++ b/hw/i386/pc_q35.c
|
||
|
@@ -672,11 +672,23 @@ DEFINE_Q35_MACHINE(2, 4);
|
||
|
|
||
|
/* Red Hat Enterprise Linux machine types */
|
||
|
|
||
|
-static void pc_q35_rhel_machine_9_4_0_options(MachineClass *m)
|
||
|
+static void pc_q35_rhel_machine_9_6_0_options(MachineClass *m)
|
||
|
{
|
||
|
PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
|
||
|
pc_q35_machine_options(m);
|
||
|
+ m->desc = "RHEL-9.6.0 PC (Q35 + ICH9, 2009)";
|
||
|
+ pcmc->smbios_stream_product = "RHEL";
|
||
|
+ pcmc->smbios_stream_version = "9.6.0";
|
||
|
+}
|
||
|
+
|
||
|
+DEFINE_Q35_MACHINE_BUGFIX(9, 6, 0);
|
||
|
+
|
||
|
+static void pc_q35_rhel_machine_9_4_0_options(MachineClass *m)
|
||
|
+{
|
||
|
+ PCMachineClass *pcmc = PC_MACHINE_CLASS(m);
|
||
|
+ pc_q35_rhel_machine_9_6_0_options(m);
|
||
|
m->desc = "RHEL-9.4.0 PC (Q35 + ICH9, 2009)";
|
||
|
+ m->alias = NULL;
|
||
|
pcmc->smbios_stream_product = "RHEL";
|
||
|
pcmc->smbios_stream_version = "9.4.0";
|
||
|
|
||
|
--
|
||
|
2.39.3
|
||
|
|