http://git.etherboot.org
/
gpxe.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
db2fde4
)
Missing check-in
author
Michael Brown
<mcb30@etherboot.org>
Tue, 30 Jan 2007 22:53:59 +0000
(22:53 +0000)
committer
Michael Brown
<mcb30@etherboot.org>
Tue, 30 Jan 2007 22:53:59 +0000
(22:53 +0000)
src/include/gpxe/ramdisk.h
[new file with mode: 0644]
patch
|
blob
diff --git a/src/include/gpxe/ramdisk.h
b/src/include/gpxe/ramdisk.h
new file mode 100644
(file)
index 0000000..
c231759
--- /dev/null
+++ b/
src/include/gpxe/ramdisk.h
@@ -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 */