Browse Source

API change: the raw image will no longer be (hypothetically) discarded

after a call to load().
tags/v0.9.3
Michael Brown 17 years ago
parent
commit
48e0fc3447
1 changed files with 2 additions and 4 deletions
  1. 2
    4
      src/include/gpxe/image.h

+ 2
- 4
src/include/gpxe/image.h View File

@@ -55,10 +55,8 @@ struct image_type {
55 55
 	 * @v image		Executable/loadable image
56 56
 	 * @ret rc		Return status code
57 57
 	 *
58
-	 * Load the image into memory.  The file image may be
59
-	 * discarded after this call; the method must preserve any
60
-	 * information it may require later (e.g. the execution
61
-	 * address) within the @c image structure.
58
+	 * Load the image into memory at the correct location as
59
+	 * determined by the file format.
62 60
 	 *
63 61
 	 * If the file image is in the correct format, the method must
64 62
 	 * update @c image->type to point to its own type (unless @c

Loading…
Cancel
Save