diff options
| author | Michael Brown | 2012-07-20 11:37:24 +0200 |
|---|---|---|
| committer | Michael Brown | 2012-07-20 13:44:40 +0200 |
| commit | d3c660b6718c8d85b34d5c7ca8c4ed12659e1cc7 (patch) | |
| tree | c2c20f097fc46b59a02a903186fc1f9c30fa89cc /src/include/ipxe | |
| parent | [libc] Add missing wchar.h header (diff) | |
| download | ipxe-d3c660b6718c8d85b34d5c7ca8c4ed12659e1cc7.tar.gz ipxe-d3c660b6718c8d85b34d5c7ca8c4ed12659e1cc7.tar.xz ipxe-d3c660b6718c8d85b34d5c7ca8c4ed12659e1cc7.zip | |
[image] Add "--autofree" option
Allow images to be automatically freed after execution completes
(successfully or otherwise).
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/include/ipxe')
| -rw-r--r-- | src/include/ipxe/image.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/include/ipxe/image.h b/src/include/ipxe/image.h index ac97137bd..6022dce66 100644 --- a/src/include/ipxe/image.h +++ b/src/include/ipxe/image.h @@ -67,6 +67,9 @@ struct image { /** Image is trusted */ #define IMAGE_TRUSTED 0x0004 +/** Image will be automatically unregistered after execution */ +#define IMAGE_AUTO_UNREGISTER 0x0008 + /** An executable image type */ struct image_type { /** Name of this image type */ |
