summaryrefslogtreecommitdiff
path: root/kernel/config.h
blob: 4923a0ec4b04be9908bca9f4e0a568c11c04ce45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26

/********************************************
 *					    *
 *  Fool OS Central Configuration File	    *
 *					    *
 ********************************************/

#include <lib/logger/log.h>

#ifndef FOOLOS_CONFIG_H
#define FOOLOS_CONFIG_H

#define FOOLOS_CONSOLE_AUTOBREAK    // add newline automatically at end of line

#define FOOLOS_LOG_OFF				// do not log anything 
#define FOOLOS_LOG_WHITELIST "" //,"elf","ext2",""	// make exceptions for these modules. wmpty string marks the end
#define FOOLOS_LOG_LEVEL FOOLOS_LOG_DEBUG	// minimal severity level to log

#define FOOLOS_CONSOLE		    // otherwise VESA will be used!	
#define FOOLSOS_SHOW_VESAMODES
#define MEM_PRINT_MEMORYMAP
#define LOG_BUF_SIZE 4069
#define LOG_SYSCALLS 

#endif