Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
24 lines (19 sloc)
618 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#ifndef CONFIG_SETTINGS_H | |
#define CONFIG_SETTINGS_H | |
/** @file | |
* | |
* Configuration settings sources | |
* | |
*/ | |
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL ); | |
#define PCI_SETTINGS /* PCI device settings */ | |
//#define CPUID_SETTINGS /* CPUID settings */ | |
//#define MEMMAP_SETTINGS /* Memory map settings */ | |
//#define VMWARE_SETTINGS /* VMware GuestInfo settings */ | |
//#define VRAM_SETTINGS /* Video RAM dump settings */ | |
//#define ACPI_SETTINGS /* ACPI settings */ | |
#include <config/named.h> | |
#include NAMED_CONFIG(settings.h) | |
#include <config/local/settings.h> | |
#include LOCAL_NAMED_CONFIG(settings.h) | |
#endif /* CONFIG_SETTINGS_H */ |