From c15925a24efe14f437d8a2699500241a58fdc8f9 Mon Sep 17 00:00:00 2001 From: Miguel Date: Fri, 17 Aug 2018 21:41:21 +0200 Subject: cleanup and working on fifo pipes --- kernel/config.h | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'kernel/config.h') 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 -- cgit v1.2.3