選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

efi.h 1.3KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_EFI
  17. #define BOFM_EFI
  18. #define ENTROPY_EFI
  19. #define TIME_EFI
  20. #define REBOOT_EFI
  21. #define ACPI_NULL
  22. #define DOWNLOAD_PROTO_FILE /* Local filesystem access */
  23. #define IMAGE_EFI /* EFI image support */
  24. #define IMAGE_SCRIPT /* iPXE script image support */
  25. #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
  26. #define SANBOOT_PROTO_AOE /* AoE protocol */
  27. #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
  28. #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
  29. #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
  30. #define USB_HCD_XHCI /* xHCI USB host controller */
  31. #define USB_HCD_EHCI /* EHCI USB host controller */
  32. #define USB_HCD_UHCI /* UHCI USB host controller */
  33. #define USB_EFI /* Provide EFI_USB_IO_PROTOCOL interface */
  34. #define REBOOT_CMD /* Reboot command */
  35. #if defined ( __i386__ ) || defined ( __x86_64__ )
  36. #define IOAPI_X86
  37. #define NAP_EFIX86
  38. #define CPUID_CMD /* x86 CPU feature detection command */
  39. #endif
  40. #if defined ( __arm__ ) || defined ( __aarch64__ )
  41. #define IOAPI_ARM
  42. #define NAP_EFIARM
  43. #endif
  44. #endif /* CONFIG_DEFAULTS_EFI_H */