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.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h
index b953e1509..cb3bb361b 100644
--- a/src/include/gpxe/image.h
+++ b/src/include/gpxe/image.h
@@ -123,9 +123,12 @@ struct image_type {
*/
#define PROBE_PXE 03
+/** Executable or loadable image type table */
+#define IMAGE_TYPES "image_types"
+
/** An executable or loadable image type */
#define __image_type( probe_order ) \
- __table ( struct image_type, image_types, probe_order )
+ __table ( struct image_type, IMAGE_TYPES, probe_order )
extern struct list_head images;