diff options
-rw-r--r-- | src/config/Config.lb | 7 | ||||
-rw-r--r-- | src/config/Options.lb | 10 |
2 files changed, 12 insertions, 5 deletions
diff --git a/src/config/Config.lb b/src/config/Config.lb index f896cb77a7..279fe8c9b8 100644 --- a/src/config/Config.lb +++ b/src/config/Config.lb @@ -148,11 +148,10 @@ makerule clean action "rm -f linuxbios.* *~" action "rm -f linuxbios" action "rm -f ldscript.ld" - action "rm -f a.out *.s *.l *.o" - action "rm -f TAGS tags" - action "rm -f docipl" + action "rm -f a.out *.s *.l *.o *.E *.inc" + action "rm -f TAGS tags romcc" + action "rm -f docipl buildrom chips.c *chip.c linuxbios_c* linuxbios_pay*" action "rm -f build_opt_tbl option_table.c crt0.S" - action "rm -f chip_*.c" end # do standard config files that the user need not specify diff --git a/src/config/Options.lb b/src/config/Options.lb index eb3c4e16ab..60bdd23b4d 100644 --- a/src/config/Options.lb +++ b/src/config/Options.lb @@ -324,11 +324,19 @@ define SERIAL_CONSOLE export used comment "Log messages to serial console" end + +define DEFAULT_CONSOLE_LOGLEVEL + default 7 + export always + comment "Console will log at this level unless changed" +end + define MAXIMUM_CONSOLE_LOGLEVEL default 7 export always - comment "Console will log at this level" + comment "Error messages up to this level can be printed" end + define NO_POST default none export always |