mirror of
https://github.com/ipxe/ipxe
synced 2025-12-25 17:12:40 +03:00
Add FILE_LICENCE declarations to almost all files that make up the various standard builds of gPXE.
18 lines
300 B
C
18 lines
300 B
C
#ifndef CONFIG_IOAPI_H
|
|
#define CONFIG_IOAPI_H
|
|
|
|
/** @file
|
|
*
|
|
* I/O API configuration
|
|
*
|
|
*/
|
|
|
|
FILE_LICENCE ( GPL2_OR_LATER );
|
|
|
|
#include <config/defaults.h>
|
|
|
|
//#undef PCIAPI_PCBIOS /* Access via PCI BIOS */
|
|
//#define PCIAPI_DIRECT /* Direct access via Type 1 accesses */
|
|
|
|
#endif /* CONFIG_IOAPI_H */
|