On Mon, Oct 12, 2009 at 02:09:03PM -0600, Myles Watson wrote:
+config MAXIMUM_CONSOLE_LOGLEVEL_8
- bool "8: BIOS_SPEW"
BIOS_SPEW is 9, not 8. Could you fix it?
Hm, nope, I think all Config.lb files are wrong here, they should use 8.
From src/include/console/loglevel.h:
#define BIOS_EMERG 0 /* system is unusable */ #define BIOS_ALERT 1 /* action must be taken immediately */ #define BIOS_CRIT 2 /* critical conditions */ #define BIOS_ERR 3 /* error conditions */ #define BIOS_WARNING 4 /* warning conditions */ #define BIOS_NOTICE 5 /* normal but significant condition */ #define BIOS_INFO 6 /* informational */ #define BIOS_DEBUG 7 /* debug-level messages */ #define BIOS_SPEW 8 /* Way too many details */
Using 9 has the same effect as using 8 I guess.
Uwe.