diff options
| author | Michal Idziorek <m.i@gmx.at> | 2014-12-08 17:27:34 +0100 |
|---|---|---|
| committer | Michal Idziorek <m.i@gmx.at> | 2014-12-08 17:27:34 +0100 |
| commit | 3a3485c695e5d2dbfebbd572ba4f71c19197e5e1 (patch) | |
| tree | a8ebf0b3b14eea99a67aedf90df1ec94f0adfe7a | |
| parent | 0525be68f261e37ad827238a0ca17dc46e03d691 (diff) | |
disabled kernel logging and removed minor debug from foolshell
| -rw-r--r-- | kernel/config.h | 2 | ||||
| -rw-r--r-- | userspace/foolshell.c | 2 |
2 files changed, 1 insertions, 3 deletions
diff --git a/kernel/config.h b/kernel/config.h index 60c650a..a741c4a 100644 --- a/kernel/config.h +++ b/kernel/config.h @@ -8,7 +8,7 @@ #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_OFF // do not log anything #define FOOLOS_CONSOLE // otherwise VESA will be used! #define MEM_PRINT_MEMORYMAP #define LOG_BUF_SIZE 4069 diff --git a/userspace/foolshell.c b/userspace/foolshell.c index b1259b8..3a87158 100644 --- a/userspace/foolshell.c +++ b/userspace/foolshell.c @@ -42,8 +42,6 @@ int main(int argc, char **argv) if(!strcmp(argv[i],"--silent"))silent=true; } - printf("\n%i\n",argc); - if(!silent)hello(); char *buf=malloc(256); |
