svn commit: r351166 - head/stand/efi/loader

Tom Jones thj at FreeBSD.org
Sat Aug 17 06:47:43 UTC 2019


Author: thj
Date: Sat Aug 17 06:47:43 2019
New Revision: 351166
URL: https://svnweb.freebsd.org/changeset/base/351166

Log:
  Reduce size of EFI_STAGING_SIZE to 32 on arm
  
  Reduce the size of the EFI_STAGING area we allocate on arm to 32. On arm SBC
  such as the NanoPi-NEOLTS the staging area allocation will fail on the 256MB
  model with a staging size of 64.
  
  Reviewed by:    bcran, manu
  Approved by:    bz (mentor)
  MFC after:      2 weeks
  Differential Revision: https://reviews.freebsd.org/D21016

Modified:
  head/stand/efi/loader/copy.c

Modified: head/stand/efi/loader/copy.c
==============================================================================
--- head/stand/efi/loader/copy.c	Sat Aug 17 06:44:11 2019	(r351165)
+++ head/stand/efi/loader/copy.c	Sat Aug 17 06:47:43 2019	(r351166)
@@ -178,6 +178,8 @@ out:
 #ifndef EFI_STAGING_SIZE
 #if defined(__amd64__)
 #define	EFI_STAGING_SIZE	100
+#elif defined(__arm__)
+#define	EFI_STAGING_SIZE	32
 #else
 #define	EFI_STAGING_SIZE	64
 #endif


More information about the svn-src-all mailing list