summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe
diff options
context:
space:
mode:
authorMichael Brown2007-01-14 05:04:28 +0100
committerMichael Brown2007-01-14 05:04:28 +0100
commit797edf28b7e2f0f6fe374bbe230e68b2ab05cbdc (patch)
treef267383b9a9a21c8092afe9f2aadb5f00e7f33b5 /src/include/gpxe
parentMostly updated. Won't work yet. (diff)
downloadipxe-797edf28b7e2f0f6fe374bbe230e68b2ab05cbdc.tar.gz
ipxe-797edf28b7e2f0f6fe374bbe230e68b2ab05cbdc.tar.xz
ipxe-797edf28b7e2f0f6fe374bbe230e68b2ab05cbdc.zip
Replace image->entry with image->priv.
Diffstat (limited to 'src/include/gpxe')
-rw-r--r--src/include/gpxe/image.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h
index de10c369e..3bfe834e4 100644
--- a/src/include/gpxe/image.h
+++ b/src/include/gpxe/image.h
@@ -35,8 +35,11 @@ struct image {
/** Image type, if known */
struct image_type *type;
- /** Entry point */
- physaddr_t entry;
+ /** Image type private data */
+ union {
+ physaddr_t phys;
+ userptr_t user;
+ } priv;
};
/** Image is loaded */