We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d05c63 commit baeee0eCopy full SHA for baeee0e
Kernel/CMakeLists.txt
@@ -736,6 +736,14 @@ install(FILES "${CMAKE_CURRENT_BINARY_DIR}/Kernel" DESTINATION boot)
736
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/Kernel.debug" DESTINATION boot)
737
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/kernel.map" DESTINATION res)
738
739
+if ("${SERENITY_ARCH}" STREQUAL "aarch64")
740
+ add_custom_command(
741
+ TARGET Kernel POST_BUILD
742
+ COMMAND ${CMAKE_OBJCOPY} -O binary Kernel kernel8.img
743
+ BYPRODUCTS ${CMAKE_CURRENT_BINARY_DIR}/kernel8.img
744
+ )
745
+endif()
746
+
747
serenity_install_headers(Kernel)
748
serenity_install_sources(Kernel)
749
0 commit comments