summaryrefslogtreecommitdiff
path: root/kernel/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/config.h')
-rw-r--r--kernel/config.h14
1 files changed, 11 insertions, 3 deletions
diff --git a/kernel/config.h b/kernel/config.h
index 6c9e3d5..2d64db1 100644
--- a/kernel/config.h
+++ b/kernel/config.h
@@ -1,13 +1,16 @@
/********************************************
- * Fool OS Central Configuration File *
+ * F00l 0S Central Configuration File *
********************************************/
-#include "lib/logger/log.h"
-
#ifndef FOOLOS_CONFIG_H
#define FOOLOS_CONFIG_H
+#include "lib/logger/log.h"
+
+#define KERNEL_VERSION "FoolOS 0.3.2"
+#define FIFO_MAX_RINGBUFFERS 20
+
#define FOOLOS_CONSOLE_AUTOBREAK // add newline automatically at end of line
#define FOOLOS_LOG_OFF // do not log anything
@@ -20,5 +23,10 @@
#define LOG_BUF_SIZE 4069
#define LOG_SYSCALLS
+#define BIN_INIT "/bin/init"
+
+#define KMALLOC_MEM_SIZE 1024*1024*8 // 8MB for in kernel-memory
+#define NUMBER_SPINLOCKS 16
+
#endif