aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2013-09-03 11:41:56 +0200
committerGerd Hoffmann <kraxel@redhat.com>2013-09-19 11:48:59 +0200
commitb923d305dc0695a357d3b37b9199c440e5a9a7f6 (patch)
tree09ac6ccca9bb7572be54a52a0da0ce21a8fddc21
parentebfece8e85d18190846c622d540e8aa96303ca31 (diff)
downloadseabios-b923d305dc0695a357d3b37b9199c440e5a9a7f6.tar.gz
Drop coreboot qemu detection
Not needed any more, the new qemu_detect() function does the job instead. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r--src/fw/coreboot.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/fw/coreboot.c b/src/fw/coreboot.c
index a234e97..70a99a0 100644
--- a/src/fw/coreboot.c
+++ b/src/fw/coreboot.c
@@ -190,10 +190,6 @@ coreboot_preinit(void)
if (cbmb) {
CBvendor = &cbmb->strings[cbmb->vendor_idx];
CBpart = &cbmb->strings[cbmb->part_idx];
- if (strcmp(CBvendor, "Emulation") == 0 &&
- memcmp(CBpart, "QEMU", 4) == 0) {
- PlatformRunningOn |= PF_QEMU;
- }
dprintf(1, "Found mainboard %s %s\n", CBvendor, CBpart);
}