david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/gpxe/ramdisk.h
2007-01-30 22:53:59 +00:00

20 lines
238 B
C

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