Bootloader do some directory restructuring
This commit is contained in:
3
bootloader/.gitignore
vendored
3
bootloader/.gitignore
vendored
@@ -1,3 +0,0 @@
|
||||
test.img
|
||||
build/
|
||||
installer/build/
|
||||
@@ -1,18 +1,3 @@
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
|
||||
project(bootloader ASM)
|
||||
|
||||
set(BOOTLOADER_SOURCES
|
||||
boot.S
|
||||
command_line.S
|
||||
disk.S
|
||||
elf.S
|
||||
ext2.S
|
||||
framebuffer.S
|
||||
memory_map.S
|
||||
utils.S
|
||||
)
|
||||
|
||||
add_executable(bootloader ${BOOTLOADER_SOURCES})
|
||||
target_link_options(bootloader PUBLIC LINKER:-T,${CMAKE_CURRENT_SOURCE_DIR}/linker.ld)
|
||||
target_link_options(bootloader PUBLIC -nostdlib)
|
||||
add_subdirectory(bios)
|
||||
|
||||
18
bootloader/bios/CMakeLists.txt
Normal file
18
bootloader/bios/CMakeLists.txt
Normal file
@@ -0,0 +1,18 @@
|
||||
cmake_minimum_required(VERSION 3.26)
|
||||
|
||||
project(bootloader ASM)
|
||||
|
||||
set(BOOTLOADER_SOURCES
|
||||
boot.S
|
||||
command_line.S
|
||||
disk.S
|
||||
elf.S
|
||||
ext2.S
|
||||
framebuffer.S
|
||||
memory_map.S
|
||||
utils.S
|
||||
)
|
||||
|
||||
add_executable(bootloader ${BOOTLOADER_SOURCES})
|
||||
target_link_options(bootloader PRIVATE LINKER:-T,${CMAKE_CURRENT_SOURCE_DIR}/linker.ld)
|
||||
target_link_options(bootloader PRIVATE -nostdlib)
|
||||
1
bootloader/installer/.gitignore
vendored
Normal file
1
bootloader/installer/.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
build/
|
||||
Reference in New Issue
Block a user