From c680da735e2eba73062b4caced26b2eb3379a27c Mon Sep 17 00:00:00 2001 From: emaste Date: Thu, 7 Jan 2016 02:41:57 +0000 Subject: MFC r287934: Increase EFI staging size from 32MB to 48MB The EFI boot loader allocates a single chunk of contiguous memory to hold the kernel, modules, and any other loaded data. This memory block is relocated to the kernel's expected location during the transfer of control from the loader to the kernel. PR: 201679 --- sys/boot/efi/loader/copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/boot/efi/loader/copy.c') diff --git a/sys/boot/efi/loader/copy.c b/sys/boot/efi/loader/copy.c index 1da3f43..1e54418 100644 --- a/sys/boot/efi/loader/copy.c +++ b/sys/boot/efi/loader/copy.c @@ -38,7 +38,7 @@ __FBSDID("$FreeBSD$"); #include #ifndef EFI_STAGING_SIZE -#define EFI_STAGING_SIZE 32 +#define EFI_STAGING_SIZE 48 #endif #define STAGE_PAGES ((EFI_STAGING_SIZE) * 1024 * 1024 / 4096) -- cgit v1.1