1
0
Fork 0

fix/kernel: Fixed ACPI tables

This commit is contained in:
Kevin Alavik 2025-06-01 14:46:22 +02:00
parent c15b93e001
commit 49867193d5
Signed by: cmpsb
GPG key ID: 10D1CC0526FDC6D7
6 changed files with 73 additions and 63 deletions

View file

@ -5,15 +5,15 @@ menu "Build"
prompt "Build Mode"
default BUILD_MODE_DEBUG
config BUILD_MODE_DEBUG
bool "Debug"
help
Build with debug symbols and no optimizations.
config BUILD_MODE_DEBUG
bool "Debug"
help
Build with debug symbols and no optimizations.
config BUILD_MODE_RELEASE
bool "Release"
help
Build with optimizations and no debug symbols.
config BUILD_MODE_RELEASE
bool "Release"
help
Build with optimizations and no debug symbols.
endchoice
endmenu
@ -23,10 +23,10 @@ menu "Memory"
prompt "Kernel Heap Algorithm"
default KERNEL_HEAP_FF
config KERNEL_HEAP_FF
bool "First-Fit"
help
Use the First-Fit memory allocation algorithm (ff.c).
config KERNEL_HEAP_FF
bool "First-Fit"
help
Use the First-Fit memory allocation algorithm (ff.c).
endchoice
@ -52,3 +52,12 @@ menu "Extras"
help
Includes support for the Flanterm terminal emulator. Useful for debugging real hardware.
endmenu
menu "Experimental"
comment "These features are experimental and might break the kernel. Don't expect stability."
config LARGE_PAGES
bool "Enable 2M Pages"
help
Adds support for vmap_large()
endmenu