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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. #ifdef __x86_64__
  22. #define IOMAP_PAGES
  23. #else
  24. #define IOMAP_VIRT
  25. #endif
  26. #define IMAGE_ELF /* ELF image support */
  27. #define IMAGE_MULTIBOOT /* MultiBoot image support */
  28. #define IMAGE_PXE /* PXE image support */
  29. #define IMAGE_SCRIPT /* iPXE script image support */
  30. #define IMAGE_BZIMAGE /* Linux bzImage image support */
  31. #define PXE_STACK /* PXE stack in iPXE - required for PXELINUX */
  32. #define PXE_MENU /* PXE menu booting */
  33. #define SANBOOT_PROTO_ISCSI /* iSCSI protocol */
  34. #define SANBOOT_PROTO_AOE /* AoE protocol */
  35. #define SANBOOT_PROTO_IB_SRP /* Infiniband SCSI RDMA protocol */
  36. #define SANBOOT_PROTO_FCP /* Fibre Channel protocol */
  37. #define SANBOOT_PROTO_HTTP /* HTTP SAN protocol */
  38. #define USB_HCD_XHCI /* xHCI USB host controller */
  39. #define USB_HCD_EHCI /* EHCI USB host controller */
  40. #define USB_HCD_UHCI /* UHCI USB host controller */
  41. #define USB_KEYBOARD /* USB keyboards */
  42. #define REBOOT_CMD /* Reboot command */
  43. #define CPUID_CMD /* x86 CPU feature detection command */
  44. #endif /* CONFIG_DEFAULTS_PCBIOS_H */