Skip to content

Instantly share code, notes, and snippets.

@robinsmidsrod
Created April 29, 2013 16:26
Show Gist options
  • Save robinsmidsrod/5482749 to your computer and use it in GitHub Desktop.
Save robinsmidsrod/5482749 to your computer and use it in GitHub Desktop.
iPXE src/config/local/console.h for syslog logging
/* 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