david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Missing check-in

This commit is contained in:
Michael Brown 2007-01-30 22:53:59 +00:00
parent db2fde474e
commit b3e4418ea8
1 changed files with 19 additions and 0 deletions

View File

@ -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 */