diff options
author | Ian Moffett <ian@osmora.org> | 2025-07-19 03:32:03 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-07-19 03:32:26 -0400 |
commit | 41ffd6fc5b7df86d748dbdc49f73431b72240e71 (patch) | |
tree | 9cb787023dbb6d7f245d8ecae70b35b298e7c66c /sys/conf | |
parent | 43722f2591aaa6b93108f276555aa854440a914d (diff) |
kernel: kconf: Seperate shared options to sys/conf
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'sys/conf')
-rw-r--r-- | sys/conf/BLACKLIST | 1 | ||||
-rw-r--r-- | sys/conf/GENERIC | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/sys/conf/BLACKLIST b/sys/conf/BLACKLIST new file mode 100644 index 0000000..4eb32d8 --- /dev/null +++ b/sys/conf/BLACKLIST @@ -0,0 +1 @@ +xhci ahci nvme diff --git a/sys/conf/GENERIC b/sys/conf/GENERIC new file mode 100644 index 0000000..5734c43 --- /dev/null +++ b/sys/conf/GENERIC @@ -0,0 +1,9 @@ +// Kernel options +option PANIC_SCR no // Clear screen on panic + +// Kernel constants +setval SCHED_NQUEUE 4 // Number of scheduler queues (for MLFQ) + +// Console attributes +setval CONSOLE_BG 0x000000 +setval CONSOLE_FG 0xB57614 |