Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 6 Sep 2016 17:58:58 +0000 (UTC)
From:      Will Andrews <will@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r305484 - head/sys/boot/efi/loader
Message-ID:  <201609061758.u86HwwR0053263@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: will
Date: Tue Sep  6 17:58:58 2016
New Revision: 305484
URL: https://svnweb.freebsd.org/changeset/base/305484

Log:
  loader.efi: Bump the staging size to 64M.
  
  This is required on my system, which loads nvidia, vmm, and zfs, and 48M is
  no longer enough for that.  nvidia-driver's recent update increased its size
  by several megabytes.
  
  Reviewed by:	jhb
  MFC after:	1 week

Modified:
  head/sys/boot/efi/loader/copy.c

Modified: head/sys/boot/efi/loader/copy.c
==============================================================================
--- head/sys/boot/efi/loader/copy.c	Tue Sep  6 17:22:25 2016	(r305483)
+++ head/sys/boot/efi/loader/copy.c	Tue Sep  6 17:58:58 2016	(r305484)
@@ -40,7 +40,7 @@ __FBSDID("$FreeBSD$");
 #include "loader_efi.h"
 
 #ifndef EFI_STAGING_SIZE
-#define	EFI_STAGING_SIZE	48
+#define	EFI_STAGING_SIZE	64
 #endif
 
 #define	STAGE_PAGES	EFI_SIZE_TO_PAGES((EFI_STAGING_SIZE) * 1024 * 1024)



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