2022-12-04 12:47:08 +01:00
|
|
|
# The Moon kernel for Luna.
|
|
|
|
|
2023-01-23 20:07:17 +01:00
|
|
|
file(GLOB_RECURSE HEADERS src/*.h)
|
|
|
|
|
2022-11-13 10:09:09 +01:00
|
|
|
set(SOURCES
|
2023-01-23 20:07:17 +01:00
|
|
|
${HEADERS}
|
2022-11-13 10:09:09 +01:00
|
|
|
src/main.cpp
|
2022-11-30 13:29:28 +01:00
|
|
|
src/Log.cpp
|
2023-01-13 18:56:05 +01:00
|
|
|
src/cxxabi.cpp
|
2022-11-19 17:59:39 +01:00
|
|
|
src/video/Framebuffer.cpp
|
2022-11-20 17:55:22 +01:00
|
|
|
src/video/TextConsole.cpp
|
2022-11-19 17:59:39 +01:00
|
|
|
src/memory/MemoryManager.cpp
|
2022-11-20 15:15:26 +01:00
|
|
|
src/memory/Heap.cpp
|
2022-12-05 20:36:24 +01:00
|
|
|
src/memory/KernelVM.cpp
|
2023-01-13 19:05:20 +01:00
|
|
|
src/memory/UserVM.cpp
|
2022-12-04 15:45:13 +01:00
|
|
|
src/memory/MemoryMap.cpp
|
2022-11-19 17:59:39 +01:00
|
|
|
src/boot/Init.cpp
|
2022-11-13 10:30:10 +01:00
|
|
|
src/arch/Serial.cpp
|
2022-11-19 20:01:01 +01:00
|
|
|
src/arch/Timer.cpp
|
2023-01-23 20:07:17 +01:00
|
|
|
src/arch/PCI.cpp
|
2022-12-07 15:03:34 +01:00
|
|
|
src/thread/Thread.cpp
|
2023-03-16 22:44:58 +01:00
|
|
|
src/thread/ThreadImage.cpp
|
2022-12-07 15:03:34 +01:00
|
|
|
src/thread/Scheduler.cpp
|
2023-01-05 22:39:56 +01:00
|
|
|
src/sys/Syscall.cpp
|
|
|
|
src/sys/exit.cpp
|
2023-01-07 00:21:08 +01:00
|
|
|
src/sys/clock_gettime.cpp
|
2023-03-14 20:43:15 +01:00
|
|
|
src/sys/mmap.cpp
|
2023-01-22 15:00:20 +01:00
|
|
|
src/sys/usleep.cpp
|
2023-03-11 17:45:20 +01:00
|
|
|
src/sys/open.cpp
|
2023-03-16 22:44:58 +01:00
|
|
|
src/sys/exec.cpp
|
2023-03-11 18:02:50 +01:00
|
|
|
src/sys/file.cpp
|
2023-03-11 22:19:58 +01:00
|
|
|
src/sys/id.cpp
|
2023-03-12 15:32:09 +01:00
|
|
|
src/sys/mkdir.cpp
|
2023-03-18 09:10:33 +01:00
|
|
|
src/sys/mknod.cpp
|
2023-03-23 22:42:24 +01:00
|
|
|
src/sys/waitpid.cpp
|
2023-03-28 21:28:56 +02:00
|
|
|
src/sys/getdents.cpp
|
2023-04-10 19:56:03 +02:00
|
|
|
src/sys/stat.cpp
|
2023-02-03 22:18:52 +01:00
|
|
|
src/fs/VFS.cpp
|
|
|
|
src/fs/tmpfs/FileSystem.cpp
|
2023-03-18 09:10:33 +01:00
|
|
|
src/fs/devices/DeviceRegistry.cpp
|
|
|
|
src/fs/devices/NullDevice.cpp
|
2023-03-30 21:19:16 +02:00
|
|
|
src/fs/devices/ZeroDevice.cpp
|
2023-03-18 09:10:33 +01:00
|
|
|
src/fs/devices/ConsoleDevice.cpp
|
2022-12-23 11:33:23 +01:00
|
|
|
src/InitRD.cpp
|
2022-12-23 13:09:21 +01:00
|
|
|
src/ELF.cpp
|
2022-11-13 10:30:10 +01:00
|
|
|
)
|
|
|
|
|
2023-01-21 22:44:16 +01:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 18:00:45 +01:00
|
|
|
set(SOURCES
|
|
|
|
${SOURCES}
|
|
|
|
src/arch/x86_64/IO.cpp
|
|
|
|
src/arch/x86_64/Serial.cpp
|
|
|
|
src/arch/x86_64/MMU.cpp
|
|
|
|
src/arch/x86_64/CPU.cpp
|
2022-11-19 20:01:01 +01:00
|
|
|
src/arch/x86_64/Timer.cpp
|
2022-12-07 15:03:34 +01:00
|
|
|
src/arch/x86_64/Thread.cpp
|
2023-01-23 20:07:17 +01:00
|
|
|
src/arch/x86_64/PCI.cpp
|
2023-03-19 11:17:43 +01:00
|
|
|
src/arch/x86_64/Keyboard.cpp
|
2022-12-17 15:45:06 +01:00
|
|
|
src/arch/x86_64/init/GDT.cpp
|
|
|
|
src/arch/x86_64/init/IDT.cpp
|
|
|
|
src/arch/x86_64/init/PIC.cpp
|
2022-11-19 18:00:45 +01:00
|
|
|
)
|
2022-11-19 17:46:53 +01:00
|
|
|
endif()
|
2022-11-13 10:09:09 +01:00
|
|
|
|
2022-11-15 19:10:32 +01:00
|
|
|
add_executable(moon ${SOURCES})
|
2022-11-13 10:09:09 +01:00
|
|
|
|
2023-01-21 22:44:16 +01:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 17:59:39 +01:00
|
|
|
set(ASM_SOURCES
|
|
|
|
src/arch/x86_64/CPU.asm
|
2022-11-19 18:38:32 +01:00
|
|
|
src/arch/x86_64/Entry.asm
|
2022-11-19 17:59:39 +01:00
|
|
|
)
|
|
|
|
add_library(moon-asm STATIC ${ASM_SOURCES})
|
|
|
|
target_link_libraries(moon moon-asm)
|
2022-11-19 17:46:53 +01:00
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(moon luna-freestanding)
|
2022-11-13 10:09:09 +01:00
|
|
|
|
2022-11-15 19:36:50 +01:00
|
|
|
target_compile_definitions(moon PRIVATE IN_MOON)
|
|
|
|
|
2023-04-07 12:02:49 +02:00
|
|
|
target_compile_options(moon PRIVATE ${COMMON_FLAGS})
|
|
|
|
target_compile_options(moon PRIVATE -nostdlib -mcmodel=kernel -ffreestanding)
|
2022-11-15 19:10:32 +01:00
|
|
|
|
2023-01-21 22:44:16 +01:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 17:59:39 +01:00
|
|
|
target_compile_options(moon PRIVATE -mno-red-zone)
|
|
|
|
target_compile_options(moon PRIVATE -mno-80387 -mno-mmx -mno-sse -mno-sse2)
|
|
|
|
target_link_options(moon PRIVATE -mno-red-zone)
|
2022-11-19 17:46:53 +01:00
|
|
|
endif()
|
2022-11-15 19:10:32 +01:00
|
|
|
|
2023-04-07 12:07:08 +02:00
|
|
|
if(MOON_DEBUG)
|
2023-01-09 17:59:52 +01:00
|
|
|
include(debug.cmake)
|
2022-12-04 10:27:25 +01:00
|
|
|
endif()
|
|
|
|
|
2022-11-15 19:10:32 +01:00
|
|
|
target_link_options(moon PRIVATE -lgcc -Wl,--build-id=none -z max-page-size=0x1000 -mcmodel=kernel)
|
|
|
|
|
2022-11-13 11:25:15 +01:00
|
|
|
set_target_properties(moon PROPERTIES CXX_STANDARD 20)
|
|
|
|
|
2022-11-13 10:30:10 +01:00
|
|
|
target_include_directories(moon PRIVATE ${CMAKE_CURRENT_LIST_DIR}/src)
|
2023-01-07 00:21:08 +01:00
|
|
|
target_include_directories(moon PRIVATE ${LUNA_BASE}/usr/include)
|
2022-11-13 10:09:09 +01:00
|
|
|
|
2022-12-03 17:25:25 +01:00
|
|
|
configure_file(src/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/gen/config.h @ONLY)
|
|
|
|
|
|
|
|
target_include_directories(moon PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/gen)
|
|
|
|
|
2022-11-13 10:09:09 +01:00
|
|
|
target_link_options(moon PRIVATE LINKER:-T ${CMAKE_CURRENT_LIST_DIR}/moon.ld -nostdlib -nodefaultlibs)
|
|
|
|
|
2023-01-05 22:39:56 +01:00
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/moon" DESTINATION ${LUNA_ROOT}/initrd/boot)
|