2022-12-04 11:47:08 +00:00
|
|
|
# The Moon kernel for Luna.
|
|
|
|
|
2023-01-23 19:07:17 +00:00
|
|
|
file(GLOB_RECURSE HEADERS src/*.h)
|
|
|
|
|
2022-11-13 09:09:09 +00:00
|
|
|
set(SOURCES
|
2023-01-23 19:07:17 +00:00
|
|
|
${HEADERS}
|
2022-11-13 09:09:09 +00:00
|
|
|
src/main.cpp
|
2022-11-30 12:29:28 +00:00
|
|
|
src/Log.cpp
|
2023-08-12 19:38:25 +00:00
|
|
|
src/Pledge.cpp
|
2023-01-13 17:56:05 +00:00
|
|
|
src/cxxabi.cpp
|
2023-10-13 20:11:52 +00:00
|
|
|
src/Symbols.cpp
|
2022-11-19 16:59:39 +00:00
|
|
|
src/video/Framebuffer.cpp
|
2022-11-20 16:55:22 +00:00
|
|
|
src/video/TextConsole.cpp
|
2022-11-19 16:59:39 +00:00
|
|
|
src/memory/MemoryManager.cpp
|
2022-11-20 14:15:26 +00:00
|
|
|
src/memory/Heap.cpp
|
2022-12-05 19:36:24 +00:00
|
|
|
src/memory/KernelVM.cpp
|
2023-07-09 18:38:04 +00:00
|
|
|
src/memory/AddressSpace.cpp
|
2022-12-04 14:45:13 +00:00
|
|
|
src/memory/MemoryMap.cpp
|
2023-08-02 20:18:36 +00:00
|
|
|
src/memory/SharedMemory.cpp
|
2022-11-19 16:59:39 +00:00
|
|
|
src/boot/Init.cpp
|
2022-11-13 09:30:10 +00:00
|
|
|
src/arch/Serial.cpp
|
2023-01-23 19:07:17 +00:00
|
|
|
src/arch/PCI.cpp
|
2023-09-20 05:05:33 +00:00
|
|
|
src/lib/Mutex.cpp
|
2022-12-07 14:03:34 +00:00
|
|
|
src/thread/Thread.cpp
|
2023-03-16 21:44:58 +00:00
|
|
|
src/thread/ThreadImage.cpp
|
2022-12-07 14:03:34 +00:00
|
|
|
src/thread/Scheduler.cpp
|
2023-11-15 22:50:04 +00:00
|
|
|
src/thread/Clock.cpp
|
2023-01-05 21:39:56 +00:00
|
|
|
src/sys/Syscall.cpp
|
|
|
|
src/sys/exit.cpp
|
2023-01-06 23:21:08 +00:00
|
|
|
src/sys/clock_gettime.cpp
|
2023-03-14 19:43:15 +00:00
|
|
|
src/sys/mmap.cpp
|
2023-01-22 14:00:20 +00:00
|
|
|
src/sys/usleep.cpp
|
2023-03-11 16:45:20 +00:00
|
|
|
src/sys/open.cpp
|
2023-03-16 21:44:58 +00:00
|
|
|
src/sys/exec.cpp
|
2023-03-11 17:02:50 +00:00
|
|
|
src/sys/file.cpp
|
2023-03-11 21:19:58 +00:00
|
|
|
src/sys/id.cpp
|
2023-03-12 14:32:09 +00:00
|
|
|
src/sys/mkdir.cpp
|
2023-05-18 19:48:47 +00:00
|
|
|
src/sys/pstat.cpp
|
2023-03-23 21:42:24 +00:00
|
|
|
src/sys/waitpid.cpp
|
2023-03-28 19:28:56 +00:00
|
|
|
src/sys/getdents.cpp
|
2023-04-10 17:56:03 +00:00
|
|
|
src/sys/stat.cpp
|
2023-04-11 20:15:21 +00:00
|
|
|
src/sys/chdir.cpp
|
2023-04-12 16:11:36 +00:00
|
|
|
src/sys/link.cpp
|
2023-04-24 18:34:44 +00:00
|
|
|
src/sys/uname.cpp
|
2023-05-17 18:30:15 +00:00
|
|
|
src/sys/mount.cpp
|
2023-05-20 10:48:07 +00:00
|
|
|
src/sys/resource.cpp
|
2023-07-10 17:46:57 +00:00
|
|
|
src/sys/signal.cpp
|
2023-07-27 14:37:10 +00:00
|
|
|
src/sys/socket.cpp
|
2023-08-02 12:48:20 +00:00
|
|
|
src/sys/poll.cpp
|
2023-11-16 20:48:18 +00:00
|
|
|
src/sys/setitimer.cpp
|
2023-08-12 19:38:25 +00:00
|
|
|
src/sys/pledge.cpp
|
2023-08-17 18:15:32 +00:00
|
|
|
src/sys/memstat.cpp
|
2023-02-03 21:18:52 +00:00
|
|
|
src/fs/VFS.cpp
|
2023-05-10 20:48:31 +00:00
|
|
|
src/fs/Pipe.cpp
|
2023-05-17 17:40:37 +00:00
|
|
|
src/fs/Mount.cpp
|
2023-05-26 21:28:51 +00:00
|
|
|
src/fs/MBR.cpp
|
2023-06-17 10:03:37 +00:00
|
|
|
src/fs/GPT.cpp
|
2023-08-16 12:54:13 +00:00
|
|
|
src/fs/StorageCache.cpp
|
2023-10-23 18:13:11 +00:00
|
|
|
src/fs/OpenFileDescription.cpp
|
2023-10-23 20:47:49 +00:00
|
|
|
src/fs/FSRegistry.cpp
|
2023-07-27 14:37:10 +00:00
|
|
|
src/net/UnixSocket.cpp
|
2023-02-03 21:18:52 +00:00
|
|
|
src/fs/tmpfs/FileSystem.cpp
|
2023-06-18 09:33:40 +00:00
|
|
|
src/fs/tmpfs/Inode.cpp
|
2023-09-16 09:46:52 +00:00
|
|
|
src/fs/devpts/FileSystem.cpp
|
|
|
|
src/fs/devpts/Inode.cpp
|
2023-06-20 19:39:41 +00:00
|
|
|
src/fs/ext2/FileSystem.cpp
|
2023-06-21 19:32:28 +00:00
|
|
|
src/fs/ext2/Inode.cpp
|
2023-03-18 08:10:33 +00:00
|
|
|
src/fs/devices/DeviceRegistry.cpp
|
2023-08-16 12:54:13 +00:00
|
|
|
src/fs/devices/BlockDevice.cpp
|
2023-03-18 08:10:33 +00:00
|
|
|
src/fs/devices/NullDevice.cpp
|
2023-03-30 19:19:16 +00:00
|
|
|
src/fs/devices/ZeroDevice.cpp
|
2023-05-27 08:42:45 +00:00
|
|
|
src/fs/devices/FullDevice.cpp
|
2023-03-18 08:10:33 +00:00
|
|
|
src/fs/devices/ConsoleDevice.cpp
|
2023-04-21 16:18:15 +00:00
|
|
|
src/fs/devices/FramebufferDevice.cpp
|
2023-07-21 12:09:37 +00:00
|
|
|
src/fs/devices/UARTDevice.cpp
|
2023-08-02 09:55:45 +00:00
|
|
|
src/fs/devices/MouseDevice.cpp
|
2023-08-02 15:20:13 +00:00
|
|
|
src/fs/devices/KeyboardDevice.cpp
|
2023-09-16 09:46:52 +00:00
|
|
|
src/fs/devices/PTYMultiplexer.cpp
|
|
|
|
src/fs/devices/MasterPTY.cpp
|
|
|
|
src/fs/devices/SlavePTY.cpp
|
2023-10-14 17:00:10 +00:00
|
|
|
src/fs/devices/TTYLink.cpp
|
2023-04-28 13:55:06 +00:00
|
|
|
src/fs/InitRD.cpp
|
2023-07-30 16:25:44 +00:00
|
|
|
src/binfmt/ELF.cpp
|
|
|
|
src/binfmt/BinaryFormat.cpp
|
2023-07-30 16:46:19 +00:00
|
|
|
src/binfmt/Script.cpp
|
2022-11-13 09:30:10 +00:00
|
|
|
)
|
|
|
|
|
2023-01-21 21:44:16 +00:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 17:00:45 +00: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
|
2023-11-15 22:50:04 +00:00
|
|
|
src/arch/x86_64/Clock.cpp
|
2022-12-07 14:03:34 +00:00
|
|
|
src/arch/x86_64/Thread.cpp
|
2023-01-23 19:07:17 +00:00
|
|
|
src/arch/x86_64/PCI.cpp
|
2023-03-19 10:17:43 +00:00
|
|
|
src/arch/x86_64/Keyboard.cpp
|
2023-05-10 17:15:47 +00:00
|
|
|
src/arch/x86_64/disk/ATA.cpp
|
2022-12-17 14:45:06 +00:00
|
|
|
src/arch/x86_64/init/GDT.cpp
|
|
|
|
src/arch/x86_64/init/IDT.cpp
|
|
|
|
src/arch/x86_64/init/PIC.cpp
|
2023-08-02 09:55:45 +00:00
|
|
|
src/arch/x86_64/PS2Mouse.cpp
|
2022-11-19 17:00:45 +00:00
|
|
|
)
|
2022-11-19 16:46:53 +00:00
|
|
|
endif()
|
2022-11-13 09:09:09 +00:00
|
|
|
|
2022-11-15 18:10:32 +00:00
|
|
|
add_executable(moon ${SOURCES})
|
2022-11-13 09:09:09 +00:00
|
|
|
|
2023-01-21 21:44:16 +00:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 16:59:39 +00:00
|
|
|
set(ASM_SOURCES
|
|
|
|
src/arch/x86_64/CPU.asm
|
2022-11-19 17:38:32 +00:00
|
|
|
src/arch/x86_64/Entry.asm
|
2022-11-19 16:59:39 +00:00
|
|
|
)
|
|
|
|
add_library(moon-asm STATIC ${ASM_SOURCES})
|
|
|
|
target_link_libraries(moon moon-asm)
|
2022-11-19 16:46:53 +00:00
|
|
|
endif()
|
|
|
|
|
|
|
|
target_link_libraries(moon luna-freestanding)
|
2022-11-13 09:09:09 +00:00
|
|
|
|
2022-11-15 18:36:50 +00:00
|
|
|
target_compile_definitions(moon PRIVATE IN_MOON)
|
|
|
|
|
2023-04-07 10:02:49 +00:00
|
|
|
target_compile_options(moon PRIVATE ${COMMON_FLAGS})
|
2023-10-23 20:47:49 +00:00
|
|
|
target_compile_options(moon PRIVATE -nostdlib -mcmodel=kernel -ffreestanding -fno-threadsafe-statics)
|
2022-11-15 18:10:32 +00:00
|
|
|
|
2023-01-21 21:44:16 +00:00
|
|
|
if("${LUNA_ARCH}" MATCHES "x86_64")
|
2022-11-19 16:59:39 +00: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 16:46:53 +00:00
|
|
|
endif()
|
2022-11-15 18:10:32 +00:00
|
|
|
|
2023-04-07 10:07:08 +00:00
|
|
|
if(MOON_DEBUG)
|
2023-01-09 16:59:52 +00:00
|
|
|
include(debug.cmake)
|
2022-12-04 09:27:25 +00:00
|
|
|
endif()
|
|
|
|
|
2023-07-10 11:04:26 +00:00
|
|
|
if(EXISTS ${CMAKE_CURRENT_LIST_DIR}/config.cmake)
|
|
|
|
message(STATUS "Using custom config.cmake file")
|
2023-06-18 18:18:19 +00:00
|
|
|
include(config.cmake)
|
|
|
|
endif()
|
|
|
|
|
2023-07-21 12:09:37 +00:00
|
|
|
if(BUILD_TESTS)
|
|
|
|
target_compile_definitions(moon PRIVATE MOON_ENABLE_TESTING_FEATURES)
|
|
|
|
endif()
|
|
|
|
|
2022-11-15 18:10:32 +00:00
|
|
|
target_link_options(moon PRIVATE -lgcc -Wl,--build-id=none -z max-page-size=0x1000 -mcmodel=kernel)
|
|
|
|
|
2022-11-13 10:25:15 +00:00
|
|
|
set_target_properties(moon PROPERTIES CXX_STANDARD 20)
|
|
|
|
|
2022-11-13 09:30:10 +00:00
|
|
|
target_include_directories(moon PRIVATE ${CMAKE_CURRENT_LIST_DIR}/src)
|
2023-01-06 23:21:08 +00:00
|
|
|
target_include_directories(moon PRIVATE ${LUNA_BASE}/usr/include)
|
2022-11-13 09:09:09 +00:00
|
|
|
|
2022-12-03 16:25:25 +00: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 09:09:09 +00:00
|
|
|
target_link_options(moon PRIVATE LINKER:-T ${CMAKE_CURRENT_LIST_DIR}/moon.ld -nostdlib -nodefaultlibs)
|
|
|
|
|
2023-10-13 20:11:52 +00:00
|
|
|
add_custom_command(TARGET moon POST_BUILD COMMAND ${LUNA_ROOT}/tools/generate-symbols.sh)
|
|
|
|
|
2023-01-05 21:39:56 +00:00
|
|
|
install(FILES "${CMAKE_CURRENT_BINARY_DIR}/moon" DESTINATION ${LUNA_ROOT}/initrd/boot)
|