mirror of
https://github.com/ipxe/ipxe
synced 2025-12-29 11:03:15 +03:00
20 lines
238 B
C
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 */
|