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 
10 FILE_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 CONSOLE_PCBIOS
18 #define NAP_PCBIOS
19 #define UMALLOC_UHEAP
20 #define MEMMAP_INT15
21 #define SMBIOS_PCBIOS
22 #define SANBOOT_PCBIOS
23 #define ENTROPY_RTC
24 #define ENTROPY_RDRAND
25 #define TIME_RTC
26 #define REBOOT_PCBIOS
27 #define ACPI_RSDP
28 #define MPAPI_PCBIOS
29 #define SERIAL_SPCR
30 
31 #ifdef __x86_64__
32 #define IOMAP_PAGES
33 #else
34 #define IOMAP_VIRT
35 #endif
36 
37 #define IMAGE_ELF /* ELF image support */
38 #define IMAGE_MULTIBOOT /* MultiBoot image support */
39 #define IMAGE_PXE /* PXE image support */
40 #define IMAGE_SCRIPT /* iPXE script image support */
41 #define IMAGE_BZIMAGE /* Linux bzImage image support */
42 
43 #define PXE_STACK /* PXE stack in iPXE - required for PXELINUX */
44 #define PXE_MENU /* PXE menu booting */
45 
46 #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
47 #define SANBOOT_PROTO_AOE /* AoE protocol */
48 #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
49 #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
50 #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
51 
52 #define USB_HCD_XHCI /* xHCI USB host controller */
53 #define USB_HCD_EHCI /* EHCI USB host controller */
54 #define USB_HCD_UHCI /* UHCI USB host controller */
55 #define USB_KEYBOARD /* USB keyboards */
56 #define USB_BLOCK /* USB block devices */
57 
58 #define REBOOT_CMD /* Reboot command */
59 #define CPUID_CMD /* x86 CPU feature detection command */
60 
61 #endif /* CONFIG_DEFAULTS_PCBIOS_H */
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)