summaryrefslogtreecommitdiffstats
path: root/src/include/gpxe/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/gpxe/image.h')
-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 */