From c468c68661b78660d5cf82d68e66024afb2218b0 Mon Sep 17 00:00:00 2001 From: Michael Brown Date: Thu, 11 Jan 2007 21:19:29 +0000 Subject: [PATCH] Add command line that can be passed to executed images. --- src/include/gpxe/image.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/include/gpxe/image.h b/src/include/gpxe/image.h index 22f8939f..65f7e764 100644 --- a/src/include/gpxe/image.h +++ b/src/include/gpxe/image.h @@ -25,6 +25,9 @@ struct image { int ( * execute ) ( struct image *image ); /** Entry point */ physaddr_t entry; + + /** Command line to pass to image */ + const char *cmdline; }; /** An executable or loadable image type */