mirror of
https://github.com/ipxe/ipxe
synced 2025-12-21 04:20:17 +03:00
23 lines
403 B
C
23 lines
403 B
C
#ifndef CONFIG_DEFAULTS_EFI_H
|
|
#define CONFIG_DEFAULTS_EFI_H
|
|
|
|
/** @file
|
|
*
|
|
* Configuration defaults for EFI
|
|
*
|
|
*/
|
|
|
|
#define UACCESS_EFI
|
|
#define IOAPI_EFI
|
|
#define PCIAPI_EFI
|
|
#define CONSOLE_EFI
|
|
#define TIMER_EFI
|
|
#define NAP_EFIX86
|
|
#define UMALLOC_EFI
|
|
#define SMBIOS_EFI
|
|
|
|
#define IMAGE_EFI /* EFI image support */
|
|
#define IMAGE_SCRIPT /* iPXE script image support */
|
|
|
|
#endif /* CONFIG_DEFAULTS_EFI_H */
|