Skip to content

Instantly share code, notes, and snippets.

@robinsmidsrod
Created December 4, 2016 21:32
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robinsmidsrod/fd86b4d723aef2b37634f15867dbe85f to your computer and use it in GitHub Desktop.
Save robinsmidsrod/fd86b4d723aef2b37634f15867dbe85f to your computer and use it in GitHub Desktop.
console.h:/* Everything but DEBUG and LOG output to BIOS console */
console.h:#undef CONSOLE_PCBIOS
console.h://#define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_DEBUG & ~CONSOLE_USAGE_LOG )
console.h:#define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_LOG )
console.h:#define CONSOLE_VESAFB
console.h:/* Everything but TUI output to syslog console */
console.h:#undef CONSOLE_SYSLOG
console.h:#define CONSOLE_SYSLOG ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_TUI )
console.h:#undef LOG_LEVEL
console.h:#define LOG_LEVEL LOG_ALL /* Full syslog logging */
console.h://#undef KEYBOARD_MAP
console.h://#define KEYBOARD_MAP no_latin1 /* Norwegian keymap */
general.h:#undef BANNER_TIMEOUT
general.h:#define BANNER_TIMEOUT 20 /* Tenths of a second before shell */
general.h:/* Stuff I don't need */
general.h:#undef SANBOOT_PROTO_AOE /* AoE protocol */
general.h:#undef SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
general.h:#undef SANBOOT_PROTO_FCP /* Fibre Channel protocol */
general.h:#undef CRYPTO_80211_WEP /* WEP encryption (deprecated and insecure!) */
general.h:#undef CRYPTO_80211_WPA /* WPA Personal, authenticating with passphrase */
general.h:#undef CRYPTO_80211_WPA2 /* Add support for stronger WPA cryptography */
general.h:#undef IWMGMT_CMD /* Wireless interface management commands */
general.h:#undef FCMGMT_CMD /* Fibre Channel management commands */
general.h:/* Stuff I need */
general.h:#define DOWNLOAD_PROTO_NFS /* Enable NFS download protocol */
general.h:#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */
general.h:#define REBOOT_CMD /* Reboot command */
general.h:#define POWEROFF_CMD /* APM shutdown command */
general.h:#define PCI_CMD /* PCI commands */
general.h:#define PARAM_CMD /* Form parameter commands */
general.h:#define NEIGHBOUR_CMD /* Neighbour management commands */
general.h:#define PING_CMD /* Ping command */
general.h:#define CONSOLE_CMD /* Console command */
general.h:#define IMAGE_PNM /* PNM image support */
general.h:#define IMAGE_PNG /* PNG image support */
general.h:/* For driver testing */
general.h:#define DIGEST_CMD /* Image crypto digest commands */
general.h:#define LOTEST_CMD /* Loopback testing commands */
general.h:#define TIME_CMD /* Time commands */
general.h:#define VLAN_CMD /* VLAN commands */
general.h:/* For network diagnostics */
general.h:#define NEIGHBOUR_CMD /* Neighbour management commands */
general.h:#define IPSTAT_CMD /* IP statistics commands */
general.h:#define PROFSTAT_CMD /* Profiling commands */
general.h:#define NET_PROTO_IPV6 /* IPv6 protocol */
general.h:#define NET_PROTO_LLDP /* LLDP protocol */
settings.h:#define CPUID_SETTINGS /* CPUID settings */
settings.h:#define MEMMAP_SETTINGS /* Memory map settings */
settings.h:#define VRAM_SETTINGS /* Video RAM dump settings */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment