blob: 7e7a9a3a4202c901690eb68e436f6bae4c0c879e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef _IPXE_SCRIPT_H
#define _IPXE_SCRIPT_H
/** @file
*
* iPXE scripts
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/image.h>
extern struct image_type script_image_type __image_type ( PROBE_NORMAL );
#endif /* _IPXE_SCRIPT_H */
|