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

Kernel: Move Prekernel{CPU, Exceptions}.cpp out of Prekernel directory

This lets us delete the Prekernel.h file, and gets us closer to deleting
the Prekernel from the aarch64 Kernel.
This commit is contained in:
Timon Kruiper 2022-05-09 23:20:57 +02:00 committed by Linus Groh
parent e7c5fd978b
commit e88cd338f1
7 changed files with 11 additions and 20 deletions

View file

@ -399,8 +399,6 @@ if (NOT "${SERENITY_ARCH}" STREQUAL "aarch64")
else()
set(PREKERNEL_SOURCES
Arch/aarch64/Prekernel/boot.S
Arch/aarch64/Prekernel/PrekernelExceptions.cpp
Arch/aarch64/Prekernel/PrekernelMMU.cpp
Prekernel/UBSanitizer.cpp
)
@ -420,9 +418,11 @@ else()
Arch/aarch64/BootPPMParser.cpp
Arch/aarch64/CrashHandler.cpp
Arch/aarch64/Dummy.cpp
Arch/aarch64/Exceptions.cpp
Arch/aarch64/init.cpp
Arch/aarch64/kprintf.cpp
Arch/aarch64/MainIdRegister.cpp
Arch/aarch64/MMU.cpp
Arch/aarch64/PageDirectory.cpp
Arch/aarch64/Panic.cpp
Arch/aarch64/Processor.cpp