aboutsummaryrefslogtreecommitdiff
path: root/src/usr/imgmgmt.c
diff options
context:
space:
mode:
authorMichael Brown <mcb30@etherboot.org>2007-06-09 19:00:34 +0100
committerMichael Brown <mcb30@etherboot.org>2007-06-09 19:00:34 +0100
commitb256900d4f6fe187cb93ed91bbf12c723e6b9364 (patch)
treef1fb4b41383c157e48e37d7f3d9b55ea3ee042ee /src/usr/imgmgmt.c
parent2c569fb240513b229384bf425f4708888b7880cf (diff)
downloadipxe-b256900d4f6fe187cb93ed91bbf12c723e6b9364.zip
ipxe-b256900d4f6fe187cb93ed91bbf12c723e6b9364.tar.gz
ipxe-b256900d4f6fe187cb93ed91bbf12c723e6b9364.tar.bz2
Scripts temporarily deregister themselves while executing. This
allows us to avoid execution loops without having to hack around the image registration order.
Diffstat (limited to 'src/usr/imgmgmt.c')
-rw-r--r--src/usr/imgmgmt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/imgmgmt.c b/src/usr/imgmgmt.c
index 28801fe..9fe2e14 100644
--- a/src/usr/imgmgmt.c
+++ b/src/usr/imgmgmt.c
@@ -89,7 +89,8 @@ int imgload ( struct image *image ) {
return rc;
/* If we succeed, move the image to the start of the list */
- promote_image ( image );
+#warning "No longer exists"
+ // promote_image ( image );
return 0;
}