blob: 97be89c3db2a355e6c167f01f0a53b894dcb51d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/********************************************
* F00l 0S Central Configuration File *
********************************************/
#ifndef FOOLOS_CONFIG_H
#define FOOLOS_CONFIG_H
#define KERNEL_NAME "F00l-Os"
#define BIN_INIT "/bin/init"
#define FIFO_MAX_RINGBUFFERS 20
#define MAX_FIFOS 20
#define MAX_FD 20
#define MAX_TASKS 255
#define MEM_PRINT_MEMORYMAP
//#define FOOLOS_LOG_OFF // do not log anything
//#define LOG_SYSCALLS
#define KMALLOC_MEM_SIZE 1024*1024*8 // 8MB for in kernel-memory
#define NUMBER_SPINLOCKS 16
#endif
|