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_LIBRM
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_MEMTOP
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 
29 #ifdef __x86_64__
30 #define IOMAP_PAGES
31 #else
32 #define IOMAP_VIRT
33 #endif
34 
35 #define IMAGE_ELF /* ELF image support */
36 #define IMAGE_MULTIBOOT /* MultiBoot image support */
37 #define IMAGE_PXE /* PXE image support */
38 #define IMAGE_SCRIPT /* iPXE script image support */
39 #define IMAGE_BZIMAGE /* Linux bzImage image support */
40 
41 #define PXE_STACK /* PXE stack in iPXE - required for PXELINUX */
42 #define PXE_MENU /* PXE menu booting */
43 
44 #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
45 #define SANBOOT_PROTO_AOE /* AoE protocol */
46 #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
47 #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
48 #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
49 
50 #define USB_HCD_XHCI /* xHCI USB host controller */
51 #define USB_HCD_EHCI /* EHCI USB host controller */
52 #define USB_HCD_UHCI /* UHCI USB host controller */
53 #define USB_KEYBOARD /* USB keyboards */
54 #define USB_BLOCK /* USB block devices */
55 
56 #define REBOOT_CMD /* Reboot command */
57 #define CPUID_CMD /* x86 CPU feature detection command */
58 
59 #endif /* CONFIG_DEFAULTS_PCBIOS_H */
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)