Blame SOURCES/seabios-smbios-set-bios-vendor-version-fields-to-Seabios-0.5.patch

ce227c
From e56e4275b3c4e8af573e9beb4b8d45f303e05ecd Mon Sep 17 00:00:00 2001
ce227c
From: Gerd Hoffmann <kraxel@redhat.com>
ce227c
Date: Mon, 28 Jul 2014 12:29:01 +0200
ce227c
Subject: [PATCH] smbios: set bios vendor/version fields to Seabios/0.5.1
ce227c
ce227c
Message-id: <1406550541-26947-2-git-send-email-kraxel@redhat.com>
ce227c
Patchwork-id: 60265
ce227c
O-Subject: [RHEL-7.0.z seabios PATCH 1/1] smbios: set bios vendor/version fields to Seabios/0.5.1
ce227c
Bugzilla: 1124216
ce227c
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
ce227c
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
ce227c
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
ce227c
ce227c
Mimic rhel6/seabios commit 1389643dad35a63362cd7d8357693f01175ef473.
ce227c
Affects all 6.x and 7.0 machine types.
ce227c
ce227c
Note: 7.1+ machine types will switch over to the new-style smbios
ce227c
handling in qemu 2.1 + seabios 1.7.5 (and ovmf), where seabios will
ce227c
fill in the actual version information instead of the bogous 0.5.1
ce227c
which we are using here for backward compatibility reasons.
ce227c
ce227c
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
ce227c
---
ce227c
 src/smbios.c | 4 ++--
ce227c
 1 file changed, 2 insertions(+), 2 deletions(-)
ce227c
ce227c
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
ce227c
---
ce227c
 src/smbios.c |    4 ++--
ce227c
 1 files changed, 2 insertions(+), 2 deletions(-)
ce227c
ce227c
diff --git a/src/smbios.c b/src/smbios.c
ce227c
index 4e6df14..2ff4d98 100644
ce227c
--- a/src/smbios.c
ce227c
+++ b/src/smbios.c
ce227c
@@ -110,8 +110,8 @@ smbios_init_type_0(void *start)
ce227c
     p->header.length = sizeof(struct smbios_type_0);
ce227c
     p->header.handle = 0;
ce227c
 
ce227c
-    load_str_field_with_default(0, vendor_str, CONFIG_APPNAME);
ce227c
-    load_str_field_with_default(0, bios_version_str, CONFIG_APPNAME);
ce227c
+    load_str_field_with_default(0, vendor_str, "Seabios");
ce227c
+    load_str_field_with_default(0, bios_version_str, "0.5.1");
ce227c
 
ce227c
     p->bios_starting_address_segment = 0xe800;
ce227c
 
ce227c
-- 
ce227c
1.7.1
ce227c