svn commit: r343008 - head/stand/i386/libi386

Oleksandr Tymoshenko gonzo at FreeBSD.org
Mon Jan 14 01:30:49 UTC 2019


Author: gonzo
Date: Mon Jan 14 01:30:48 2019
New Revision: 343008
URL: https://svnweb.freebsd.org/changeset/base/343008

Log:
  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 at site.uottawa.ca>
  MFC after:	1 week

Modified:
  head/stand/i386/libi386/biosmem.c

Modified: head/stand/i386/libi386/biosmem.c
==============================================================================
--- head/stand/i386/libi386/biosmem.c	Sun Jan 13 23:41:56 2019	(r343007)
+++ head/stand/i386/libi386/biosmem.c	Mon Jan 14 01:30:48 2019	(r343008)
@@ -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}
 };
 


More information about the svn-src-all mailing list