diff options
| author | Michael Brown | 2013-07-09 17:01:52 +0200 |
|---|---|---|
| committer | Michael Brown | 2013-07-13 12:44:48 +0200 |
| commit | 258195242b40526a4d2bc930cc425380f337918d (patch) | |
| tree | ff6cdd606c3db3618f5cf5b262630678a0c8626b /src/config/settings.h | |
| parent | [linux] Add support for accessing PCI configuration space via /proc/bus/pci (diff) | |
| download | ipxe-258195242b40526a4d2bc930cc425380f337918d.tar.gz ipxe-258195242b40526a4d2bc930cc425380f337918d.tar.xz ipxe-258195242b40526a4d2bc930cc425380f337918d.zip | |
[settings] Add config/settings.h
Move VMWARE_SETTINGS build configuration option from config/sideband.h
to a new config/settings.h.
Existing instances of config/local/sideband.h will not be affected,
since config.c still #includes config/sideband.h.
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config/settings.h')
| -rw-r--r-- | src/config/settings.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/config/settings.h b/src/config/settings.h new file mode 100644 index 000000000..331c7e3ab --- /dev/null +++ b/src/config/settings.h @@ -0,0 +1,16 @@ +#ifndef CONFIG_SETTINGS_H +#define CONFIG_SETTINGS_H + +/** @file + * + * Configuration settings sources + * + */ + +FILE_LICENCE ( GPL2_OR_LATER ); + +//#define VMWARE_SETTINGS /* VMware GuestInfo settings */ + +#include <config/local/settings.h> + +#endif /* CONFIG_SETTINGS_H */ |
