Browse Source

Missing check-in

tags/v0.9.3
Michael Brown 17 years ago
parent
commit
b3e4418ea8
1 changed files with 19 additions and 0 deletions
  1. 19
    0
      src/include/gpxe/ramdisk.h

+ 19
- 0
src/include/gpxe/ramdisk.h View File

@@ -0,0 +1,19 @@
1
+#ifndef _GPXE_RAMDISK_H
2
+#define _GPXE_RAMDISK_H
3
+
4
+/**
5
+ * @file
6
+ *
7
+ * RAM disks
8
+ *
9
+ */
10
+
11
+#include <gpxe/uaccess.h>
12
+#include <gpxe/blockdev.h>
13
+
14
+struct ramdisk {
15
+	struct block_device blockdev;
16
+	userptr_t data;
17
+};
18
+
19
+#endif /* _GPXE_RAMDISK_H */

Loading…
Cancel
Save