mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 05:21:49 +03:00
Include config/local/$file in config/$file where it makes sense and create empty local configs during build if not present. Modified-by: Michael Brown <mcb30@etherboot.org> Signed-off-by: Michael Brown <mcb30@etherboot.org>
20 lines
242 B
C
20 lines
242 B
C
#ifndef CONFIG_NAP_H
|
|
#define CONFIG_NAP_H
|
|
|
|
/** @file
|
|
*
|
|
* CPU sleeping
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <config/defaults.h>
|
|
|
|
//#undef NAP_PCBIOS
|
|
//#define NAP_NULL
|
|
|
|
#include <config/local/nap.h>
|
|
|
|
#endif /* CONFIG_NAP_H */
|