mirror of https://github.com/ipxe/ipxe.git
Missing check-in
parent
db2fde474e
commit
b3e4418ea8
|
@ -0,0 +1,19 @@
|
||||||
|
#ifndef _GPXE_RAMDISK_H
|
||||||
|
#define _GPXE_RAMDISK_H
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file
|
||||||
|
*
|
||||||
|
* RAM disks
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <gpxe/uaccess.h>
|
||||||
|
#include <gpxe/blockdev.h>
|
||||||
|
|
||||||
|
struct ramdisk {
|
||||||
|
struct block_device blockdev;
|
||||||
|
userptr_t data;
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif /* _GPXE_RAMDISK_H */
|
Loading…
Reference in New Issue