iPXE
pcbios.h
Go to the documentation of this file.
1#ifndef CONFIG_DEFAULTS_PCBIOS_H
2#define CONFIG_DEFAULTS_PCBIOS_H
3
4/** @file
5 *
6 * Configuration defaults for PCBIOS
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11
12#define UACCESS_OFFSET
13#define IOAPI_X86
14#define PCIAPI_PCBIOS
15#define DMAAPI_FLAT
16#define TIMER_PCBIOS
17#define NAP_PCBIOS
18#define UMALLOC_UHEAP
19#define MEMMAP_INT15
20#define SMBIOS_PCBIOS
21#define SANBOOT_PCBIOS
22#define ENTROPY_RTC
23#define ENTROPY_RDRAND
24#define TIME_RTC
25#define REBOOT_PCBIOS
26#define ACPI_RSDP
27#define MPAPI_PCBIOS
28#define SERIAL_SPCR
29#define FDT_NULL
30
31#ifdef __x86_64__
32#define IOMAP_PAGES
33#else
34#define IOMAP_VIRT
35#endif
36
37#endif /* CONFIG_DEFAULTS_PCBIOS_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896