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 ); 11 12 #define UACCESS_LIBRM 13 #define IOAPI_X86 14 #define PCIAPI_PCBIOS 15 #define TIMER_PCBIOS 16 #define CONSOLE_PCBIOS 17 #define NAP_PCBIOS 18 #define UMALLOC_MEMTOP 19 #define SMBIOS_PCBIOS 20 21 #define IMAGE_ELF /* ELF image support */ 22 #define IMAGE_MULTIBOOT /* MultiBoot image support */ 23 #define IMAGE_PXE /* PXE image support */ 24 #define IMAGE_SCRIPT /* gPXE script image support */ 25 #define IMAGE_BZIMAGE /* Linux bzImage image support */ 26 #define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */ 27 28 #define PXE_STACK /* PXE stack in gPXE - required for PXELINUX */ 29 #define PXE_MENU /* PXE menu booting */ 30 #define PXE_CMD /* PXE commands */ 31 32 #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */ 33 #define SANBOOT_PROTO_AOE /* AoE protocol */ 34 35 #endif /* CONFIG_DEFAULTS_PCBIOS_H */ 36