diff options
-rw-r--r-- | sys/arch/aarch64/conf/GENERIC | 4 | ||||
-rw-r--r-- | sys/arch/amd64/conf/GENERIC | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/aarch64/conf/GENERIC b/sys/arch/aarch64/conf/GENERIC index a716ac2..eeb9d9d 100644 --- a/sys/arch/aarch64/conf/GENERIC +++ b/sys/arch/aarch64/conf/GENERIC @@ -4,3 +4,7 @@ option USER_KMSG yes // Show kmsg in user consoles // Kernel constants setval SCHED_NQUEUE 4 // Number of scheduler queues (for MLFQ) + +// Console attributes +setval CONSOLE_BG 0x000000 +setval CONSOLE_FG 0xB57614 diff --git a/sys/arch/amd64/conf/GENERIC b/sys/arch/amd64/conf/GENERIC index 7a28038..69e071a 100644 --- a/sys/arch/amd64/conf/GENERIC +++ b/sys/arch/amd64/conf/GENERIC @@ -14,4 +14,4 @@ setval SCHED_NQUEUE 4 // Number of scheduler queues (for MLFQ) // Console attributes setval CONSOLE_BG 0x000000 -setval CONSOLE_FG 0x009800 +setval CONSOLE_FG 0xB57614 |