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

Kernel: Move x86-specific init sequence code to the x86/Arch directory

The code in init.cpp is specific to the x86 initialization sequence, so
move it to the Arch/x86 directory in the same fashion like the aarch64
pattern.
This commit is contained in:
Liav A 2022-09-03 19:57:09 +03:00 committed by Linus Groh
parent 1b7b360ca1
commit 76aace6f19
2 changed files with 2 additions and 1 deletions

View file

@ -309,13 +309,14 @@ set(KERNEL_SOURCES
UserOrKernelBuffer.cpp
WaitQueue.cpp
WorkQueue.cpp
init.cpp
kprintf.cpp
)
if ("${SERENITY_ARCH}" STREQUAL "i686" OR "${SERENITY_ARCH}" STREQUAL "x86_64")
set(KERNEL_SOURCES
${KERNEL_SOURCES}
Arch/x86/init.cpp
Arch/Processor.cpp
Arch/x86/common/Interrupts/APIC.cpp