Guest User

Untitled

a guest
Jul 17th, 2025
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #ifndef CONFIG_SETTINGS_H
  2. #define CONFIG_SETTINGS_H
  3.  
  4. /** @file
  5. *
  6. * Configuration settings sources
  7. *
  8. */
  9.  
  10. FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
  11.  
  12. #define PCI_SETTINGS /* PCI device settings */
  13. //#define CPUID_SETTINGS /* CPUID settings */
  14. //#define MEMMAP_SETTINGS /* Memory map settings */
  15. //#define VMWARE_SETTINGS /* VMware GuestInfo settings */
  16. //#define VRAM_SETTINGS /* Video RAM dump settings */
  17. //#define ACPI_SETTINGS /* ACPI settings */
  18.  
  19. #include <config/named.h>
  20. #include NAMED_CONFIG(settings.h)
  21. #include <config/local/settings.h>
  22. #include LOCAL_NAMED_CONFIG(settings.h)
  23.  
  24. #endif /* CONFIG_SETTINGS_H */
  25.  
Advertisement
Add Comment
Please, Sign In to add comment