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

Prekernel: Make build on aarch64

Add a dummy Arch/aarch64/boot.S that for now does nothing but
let all processor cores sleep.

For now, none of the actual Prekernel code is built for aarch64.
This commit is contained in:
Nico Weber 2021-08-28 13:41:14 -04:00 committed by Linus Groh
parent da785bd4bd
commit 9c5e947e0e
3 changed files with 45 additions and 15 deletions

View file

@ -516,7 +516,5 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/kernel.map" DESTINATION res)
serenity_install_headers(Kernel)
serenity_install_sources(Kernel)
if (NOT "${SERENITY_ARCH}" STREQUAL "aarch64")
add_subdirectory(Prekernel)
endif()
add_subdirectory(Prekernel)
add_subdirectory(Modules)