bootloader: Actually, don't release the heap just yet.

The EFI loader still needs it inside platform_start_kernel,
unfortunately.
This commit is contained in:
Augustin Cavalier 2024-10-10 15:36:52 -04:00
parent 545ea51c99
commit 9e3eeba450

View File

@ -162,7 +162,8 @@ main(stage2_args *args)
gKernelArgs.boot_volume_size = gBootVolume.ContentSize();
platform_cleanup_devices();
heap_release(args);
// TODO: cleanup, heap_release() etc.
heap_print_statistics();
platform_start_kernel();
}
}