Hi list,
after reducing the log-levels to 0 the build did not compile anymore. Looks like there are some typos in the source:
Index: src/include/console/console.h =================================================================== --- src/include/console/console.h (Revision 2100) +++ src/include/console/console.h (Arbeitskopie) @@ -45,7 +45,7 @@ #endif #if MAXIMUM_CONSOLE_LOGLEVEL <= BIOS_ALERT #undef printk_alert -#define printk_alart(fmt, arg...) do {} while(0) +#define printk_alert(fmt, arg...) do {} while(0) #endif #if MAXIMUM_CONSOLE_LOGLEVEL <= BIOS_CRIT #undef printk_crit Index: src/arch/i386/lib/console.c =================================================================== --- src/arch/i386/lib/console.c (Revision 2100) +++ src/arch/i386/lib/console.c (Arbeitskopie) @@ -191,7 +191,7 @@ #endif #if MAXIMUM_CONSOLE_LOGLEVEL <= BIOS_ALERT #undef printk_alert -#define printk_alart(fmt, arg...) do {} while(0) +#define printk_alert(fmt, arg...) do {} while(0) #endif #if MAXIMUM_CONSOLE_LOGLEVEL <= BIOS_CRIT #undef printk_crit
Someone might change this in the tree.
Martin