You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

pcbios.h 1.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #ifndef CONFIG_DEFAULTS_PCBIOS_H
  2. #define CONFIG_DEFAULTS_PCBIOS_H
  3. /** @file
  4. *
  5. * Configuration defaults for PCBIOS
  6. *
  7. */
  8. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  9. #define UACCESS_LIBRM
  10. #define IOAPI_X86
  11. #define PCIAPI_PCBIOS
  12. #define TIMER_PCBIOS
  13. #define CONSOLE_PCBIOS
  14. #define NAP_PCBIOS
  15. #define UMALLOC_MEMTOP
  16. #define SMBIOS_PCBIOS
  17. #define SANBOOT_PCBIOS
  18. #define ENTROPY_RTC
  19. #define TIME_RTC
  20. #define REBOOT_PCBIOS
  21. #define ACPI_RSDP
  22. #ifdef __x86_64__
  23. #define IOMAP_PAGES
  24. #else
  25. #define IOMAP_VIRT
  26. #endif
  27. #define IMAGE_ELF /* ELF image support */
  28. #define IMAGE_MULTIBOOT /* MultiBoot image support */
  29. #define IMAGE_PXE /* PXE image support */
  30. #define IMAGE_SCRIPT /* iPXE script image support */
  31. #define IMAGE_BZIMAGE /* Linux bzImage image support */
  32. #define PXE_STACK /* PXE stack in iPXE - required for PXELINUX */
  33. #define PXE_MENU /* PXE menu booting */
  34. #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
  35. #define SANBOOT_PROTO_AOE /* AoE protocol */
  36. #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
  37. #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
  38. #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
  39. #define USB_HCD_XHCI /* xHCI USB host controller */
  40. #define USB_HCD_EHCI /* EHCI USB host controller */
  41. #define USB_HCD_UHCI /* UHCI USB host controller */
  42. #define USB_KEYBOARD /* USB keyboards */
  43. #define REBOOT_CMD /* Reboot command */
  44. #define CPUID_CMD /* x86 CPU feature detection command */
  45. #endif /* CONFIG_DEFAULTS_PCBIOS_H */