Created
April 29, 2013 16:26
-
-
Save robinsmidsrod/5482749 to your computer and use it in GitHub Desktop.
iPXE src/config/local/console.h for syslog logging
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Everything but DEBUG and LOG output to BIOS console */ | |
#undef CONSOLE_PCBIOS | |
#define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_DEBUG & ~CONSOLE_USAGE_LOG ) | |
/* Everything but TUI output to syslog console */ | |
#undef CONSOLE_SYSLOG | |
#define CONSOLE_SYSLOG ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_TUI ) | |
#undef LOG_LEVEL | |
#define LOG_LEVEL LOG_ALL /* Full syslog logging */ | |
//#undef KEYBOARD_MAP | |
//#define KEYBOARD_MAP no_latin1 /* Norwegian keymap */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment