From b46432161874cb1d3c39ab9577a5ae3fed312195 Mon Sep 17 00:00:00 2001 From: Timon Kruiper Date: Tue, 3 May 2022 00:25:03 +0200 Subject: [PATCH] Kernel: Add kmalloc_init() to the init function of the aarch64 Kernel With the previous commits, we are now able to call kmalloc() :^) --- Kernel/Arch/aarch64/init.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Kernel/Arch/aarch64/init.cpp b/Kernel/Arch/aarch64/init.cpp index fc8693e417..609556df07 100644 --- a/Kernel/Arch/aarch64/init.cpp +++ b/Kernel/Arch/aarch64/init.cpp @@ -43,6 +43,8 @@ extern "C" [[noreturn]] void init() dbgln("Observed deviations from that ideal are shortcomings of your imagination."); dbgln(); + kmalloc_init(); + auto firmware_version = query_firmware_version(); dbgln("Firmware version: {}", firmware_version);