Default BIOS console

Name

  CONSOLE_PCBIOS

Header file

Configured via config/console.h.

Examples

Enable default BIOS console

  #define CONSOLE_PCBIOS        /* Default BIOS console */

Disable default BIOS console

  #undef CONSOLE_PCBIOS        /* Default BIOS console */

Exclude debug messages from the default BIOS console

  #undef CONSOLE_PCBIOS
  #define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_DEBUG )

Description

This build option enables support for the default BIOS console.

See also

Notes

Most BIOSes assume a US keyboard map. You can use the build option KEYBOARD_MAP to change the keyboard map used by iPXE.

The BIOS console is usually enabled by default. If you want to change the console usages associated with the default BIOS console, you will need to use #undef CONSOLE_PCBIOS before specifying your preferred usages. For example:

  #undef CONSOLE_PCBIOS
  #define CONSOLE_PCBIOS ( CONSOLE_USAGE_ALL & ~CONSOLE_USAGE_DEBUG )
buildcfg/console_pcbios.txt ยท Last modified: 2012/04/18 15:53 by mcb30
Recent changes RSS feed CC Attribution-Share Alike 4.0 International Driven by DokuWiki
All uses of this content must include an attribution to the iPXE project and the URL https://ipxe.org
References to "iPXE" may not be altered or removed.