Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 3 Feb 2019 14:54:29 +0000 (UTC)
From:      Oleksandr Tymoshenko <gonzo@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r343715 - stable/12/stand/i386/libi386
Message-ID:  <201902031454.x13EsTOG016574@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: gonzo
Date: Sun Feb  3 14:54:29 2019
New Revision: 343715
URL: https://svnweb.freebsd.org/changeset/base/343715

Log:
  MFC r343008:
  
  Add Dell Chromebook to the list of devices with E820 extmem quirk enabled
  
  Just like for Acer C270 chromebook the E820 extmem workaround is required for
  FreeBSD to boot on Dell chromebook.
  
  PR:		204916
  Submitted by:	Keith White <kwhite@site.uottawa.ca>

Modified:
  stable/12/stand/i386/libi386/biosmem.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/stand/i386/libi386/biosmem.c
==============================================================================
--- stable/12/stand/i386/libi386/biosmem.c	Sun Feb  3 14:47:22 2019	(r343714)
+++ stable/12/stand/i386/libi386/biosmem.c	Sun Feb  3 14:54:29 2019	(r343715)
@@ -74,6 +74,7 @@ struct bios_getmem_quirks {
 
 static struct bios_getmem_quirks quirks[] = {
 	{"coreboot", "Acer", "Peppy", BQ_DISTRUST_E820_EXTMEM},
+	{"coreboot", "Dell", "Wolf", BQ_DISTRUST_E820_EXTMEM},
 	{NULL, NULL, NULL, 0}
 };
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201902031454.x13EsTOG016574>