summaryrefslogtreecommitdiff
path: root/configs
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 /configs
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 'configs')
-rw-r--r--configs/default_aarch645
-rw-r--r--configs/default_x86_645
2 files changed, 10 insertions, 0 deletions
diff --git a/configs/default_aarch64 b/configs/default_aarch64
index 9835e87..a41ea11 100644
--- a/configs/default_aarch64
+++ b/configs/default_aarch64
@@ -9,6 +9,10 @@
# ── Basic ───────────────────────────────────────────────────────────────────
KERNEL_VERSION="v0.0.1"
+KERNEL_VERSION_MAJOR=0
+KERNEL_VERSION_MINOR=0
+KERNEL_VERSION_PATCH=1
+KERNEL_VERSION_NAME="Husky"
KERNEL_FILE_NAME="kernel.elf"
# ── Architecture ────────────────────────────────────────────────────────────
@@ -27,6 +31,7 @@ MAX_CPUS=4
KERNEL_STACK_SIZE=16384
PMM_TYPE=buddy
HEAP_TYPE=slab
+MAX_MEMORY_REGIONS=256
# ── Drivers ─────────────────────────────────────────────────────────────────
DRIVER_FBCON=y
diff --git a/configs/default_x86_64 b/configs/default_x86_64
index 9787046..b092c11 100644
--- a/configs/default_x86_64
+++ b/configs/default_x86_64
@@ -12,6 +12,10 @@
# ── Basic ───────────────────────────────────────────────────────────────────
KERNEL_VERSION="v0.0.1"
+KERNEL_VERSION_MAJOR=0
+KERNEL_VERSION_MINOR=0
+KERNEL_VERSION_PATCH=1
+KERNEL_VERSION_NAME="Husky"
KERNEL_FILE_NAME="kernel.elf"
# ── Architecture ────────────────────────────────────────────────────────────
@@ -30,6 +34,7 @@ MAX_CPUS=4
KERNEL_STACK_SIZE=16384
PMM_TYPE=buddy
HEAP_TYPE=slab
+MAX_MEMORY_REGIONS=256
# ── Drivers ─────────────────────────────────────────────────────────────────
DRIVER_FBCON=y