summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2014-11-12 22:00:59 +0100
committerMichal Idziorek <m.i@gmx.at>2014-11-12 22:00:59 +0100
commit529c47d944fa382c64b572ca60b8090b16cf418a (patch)
tree825a48915ebf78fc02d4dd348473f4560aad97d0
parent28cb14425e11059cadd8f166ed996638d25e2127 (diff)
minor cleanup
-rw-r--r--kernel/config.h12
-rw-r--r--kernel/kernel.c1
-rw-r--r--lib/logger/log.h1
3 files changed, 9 insertions, 5 deletions
diff --git a/kernel/config.h b/kernel/config.h
index 019ef34..0f62abb 100644
--- a/kernel/config.h
+++ b/kernel/config.h
@@ -1,4 +1,10 @@
-//#define FOOLOS_COMPILE_FLOPPY
-#define FOOLOS_CONSOLE_AUTOBREAK //add newline automatically at end of line
-#define FOOLOS_LOG_OFF // do not log anythong
+/********************************************
+ *
+ * Fool OS Central Configuration File
+ *
+ ********************************************/
+
+//#define FOOLOS_COMPILE_FLOPPY // compile floppy drivers
+#define FOOLOS_CONSOLE_AUTOBREAK // add newline automatically at end of line
+//#define FOOLOS_LOG_OFF // do not log anything
diff --git a/kernel/kernel.c b/kernel/kernel.c
index f3c20e9..7cafc49 100644
--- a/kernel/kernel.c
+++ b/kernel/kernel.c
@@ -100,7 +100,6 @@ void kernel_main(uint32_t initial_stack, int mp)
log_log();
-
//
// Print initial address of the esp stack pointer
//
diff --git a/lib/logger/log.h b/lib/logger/log.h
index 251c66f..b00f462 100644
--- a/lib/logger/log.h
+++ b/lib/logger/log.h
@@ -9,4 +9,3 @@ void log(char *module_name, int prio, char *format_string, ...);
void panic(char *module_name, char *format_string);
#endif
-