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

Kernel: Merge x86_64 and aarch64 init.cpp files

This commit is contained in:
Timon Kruiper 2023-04-01 02:10:19 +02:00 committed by Andrew Kaster
parent c31dc82b17
commit bd2011406e
4 changed files with 62 additions and 217 deletions

View file

@ -17,6 +17,7 @@ set(KERNEL_HEAP_SOURCES
set(KERNEL_SOURCES
AddressSanitizer.cpp
Arch/init.cpp
Arch/PageFault.cpp
Arch/DeferredCallPool.cpp
Bus/PCI/Controller/HostController.cpp
@ -361,8 +362,6 @@ set(KERNEL_SOURCES
if ("${SERENITY_ARCH}" STREQUAL "x86_64")
set(KERNEL_SOURCES
${KERNEL_SOURCES}
Arch/x86_64/init.cpp
Arch/Processor.cpp
Arch/x86_64/CMOS.cpp
@ -462,7 +461,6 @@ elseif("${SERENITY_ARCH}" STREQUAL "aarch64")
Arch/aarch64/CPUID.cpp
Arch/aarch64/CurrentTime.cpp
Arch/aarch64/Dummy.cpp
Arch/aarch64/init.cpp
Arch/aarch64/InterruptManagement.cpp
Arch/aarch64/Interrupts.cpp
Arch/aarch64/kprintf.cpp