mirror of
https://github.com/ipxe/ipxe
synced 2025-12-30 13:11:11 +03:00
15 lines
217 B
C
15 lines
217 B
C
|
|
#ifndef _INITRD_H
|
||
|
|
#define _INITRD_H
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @file
|
||
|
|
*
|
||
|
|
* Linux initrd image format
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
#include <gpxe/image.h>
|
||
|
|
extern struct image_type initrdimage_image_type __image_type ( PROBE_NORMAL );
|
||
|
|
|
||
|
|
#endif /* _INITRD_H */
|