summaryrefslogtreecommitdiffstats
path: root/sys/boot/efi/libefi
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2015-03-13 09:41:27 +0000
committerjhb <jhb@FreeBSD.org>2015-03-13 09:41:27 +0000
commita61394dda9985c2ff2697ab318133299f73def3a (patch)
tree4eea61a8f5c813e47da6c7b7472c6d29b53d1d44 /sys/boot/efi/libefi
parent463cde403062e9ce4c2013da8a8e2717e85e575f (diff)
downloadFreeBSD-src-a61394dda9985c2ff2697ab318133299f73def3a.zip
FreeBSD-src-a61394dda9985c2ff2697ab318133299f73def3a.tar.gz
Enable bzipfs support in the EFI loader.
- Add bzipfs to the list of supported filesystems in the EFI loader. - Increase the heap size allocated for the EFI loader from 2MB to 3MB. Differential Revision: https://reviews.freebsd.org/D2053 Reviewed by: benno, emaste, imp MFC after: 2 weeks Sponsored by: Cisco Systems, Inc.
Diffstat (limited to 'sys/boot/efi/libefi')
-rw-r--r--sys/boot/efi/libefi/libefi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/boot/efi/libefi/libefi.c b/sys/boot/efi/libefi/libefi.c
index c6c01d3..3c66b04 100644
--- a/sys/boot/efi/libefi/libefi.c
+++ b/sys/boot/efi/libefi/libefi.c
@@ -102,7 +102,7 @@ efi_main(EFI_HANDLE image_handle, EFI_SYSTEM_TABLE *system_table)
(void)console_control->SetMode(console_control,
EfiConsoleControlScreenText);
- heapsize = 2 * 1024 * 1024;
+ heapsize = 3 * 1024 * 1024;
status = BS->AllocatePages(AllocateAnyPages, EfiLoaderData,
EFI_SIZE_TO_PAGES(heapsize), &heap);
if (status != EFI_SUCCESS)
OpenPOWER on IntegriCloud