summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorArseney300 <Arseney300@gmail.com>2026-04-11 17:48:52 +0700
committerArseney300 <Arseney300@gmail.com>2026-04-11 17:48:52 +0700
commit496246c92dabe6757480147016490ea6ae43bb66 (patch)
treecb922a0b1569410db44f6da17862b7e949df9fad /scripts
parent2f95320e0859029f520d46f777591751dcd39634 (diff)
bastion: add Kernel, Processor, AcpiTables, DeviceTree classesHEADmaster
Kernel: main singleton object, that provide access to core kernel entities Processor: empty class, that will be used later for per-CPU entities AcpiTables: class for acpi access (can be obtained through the kernel object) DeviceTree: class for dt access (can be obtained through the kernel object)
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/configure.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/configure.py b/scripts/configure.py
index 053aac9..b1be550 100755
--- a/scripts/configure.py
+++ b/scripts/configure.py
@@ -63,6 +63,10 @@ VALID_VALUES = {
# ============================================================================
DEFAULTS = {
+ "KERNEL_VERSION_MAJOR": "0",
+ "KERNEL_VERSION_MINOR": "0",
+ "KERNEL_VERSION_PATCH": "1",
+ "KERNEL_VERSION_NAME": "Husky",
"DEBUG_SERIAL": "n",
"DEBUG_VERBOSE_BOOT": "n",
"DEBUG_PAGE_ALLOC": "n",
@@ -70,6 +74,7 @@ DEFAULTS = {
"DEBUG_SYSCALL_TRACE": "n",
"MAX_CPUS": "4",
"KERNEL_STACK_SIZE": "16384",
+ "MAX_MEMORY_REGIONS": "256",
"PMM_TYPE": "buddy",
"HEAP_TYPE": "slab",
"DRIVER_FBCON": "y",