1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 15:27:35 +00:00

Kernel: Add kmalloc_init() to the init function of the aarch64 Kernel

With the previous commits, we are now able to call kmalloc() :^)
This commit is contained in:
Timon Kruiper 2022-05-03 00:25:03 +02:00 committed by Andreas Kling
parent 3b4d2d9b51
commit b464321618

View file

@ -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);