您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #ifndef CONFIG_DEFAULTS_EFI_H
  2. #define CONFIG_DEFAULTS_EFI_H
  3. /** @file
  4. *
  5. * Configuration defaults for EFI
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #define UACCESS_EFI
  10. #define IOMAP_VIRT
  11. #define PCIAPI_EFI
  12. #define CONSOLE_EFI
  13. #define TIMER_EFI
  14. #define UMALLOC_EFI
  15. #define SMBIOS_EFI
  16. #define SANBOOT_NULL
  17. #define BOFM_EFI
  18. #define ENTROPY_EFI
  19. #define TIME_EFI
  20. #define REBOOT_EFI
  21. #define DOWNLOAD_PROTO_FILE /* Local filesystem access */
  22. #define IMAGE_EFI /* EFI image support */
  23. #define IMAGE_SCRIPT /* iPXE script image support */
  24. #define USB_HCD_XHCI /* xHCI USB host controller */
  25. #define USB_HCD_EHCI /* EHCI USB host controller */
  26. #define USB_HCD_UHCI /* UHCI USB host controller */
  27. #define USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
  28. #define REBOOT_CMD /* Reboot command */
  29. #if defined ( __i386__ ) || defined ( __x86_64__ )
  30. #define IOAPI_X86
  31. #define NAP_EFIX86
  32. #define CPUID_CMD /* x86 CPU feature detection command */
  33. #endif
  34. #if defined ( __arm__ )
  35. #define IOAPI_ARM
  36. #define NAP_EFIARM
  37. #endif
  38. #endif /* CONFIG_DEFAULTS_EFI_H */