david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/config/named.h

27 lines
517 B
C

#ifndef CONFIG_NAMED_H
#define CONFIG_NAMED_H
/** @file
*
* Named configurations
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
/* config/<name>/<header>.h */
#ifdef CONFIG
#define NAMED_CONFIG(_header) <config/CONFIG/_header>
#else
#define NAMED_CONFIG(_header) <config/_header>
#endif
/* config/local/<name>/<header>.h */
#ifdef LOCAL_CONFIG
#define LOCAL_NAMED_CONFIG(_header) <config/local/LOCAL_CONFIG/_header>
#else
#define LOCAL_NAMED_CONFIG(_header) <config/_header>
#endif
#endif /* CONFIG_NAMED_H */