Browse Source

[image] Allow for non-executable image formats

Signed-off-by: Michael Brown <mcb30@ipxe.org>
tags/v1.20.1
Michael Brown 11 years ago
parent
commit
2c161283d5
1 changed files with 2 additions and 0 deletions
  1. 2
    0
      src/core/image.c

+ 2
- 0
src/core/image.c View File

409
 	/* Check that this image can be executed */
409
 	/* Check that this image can be executed */
410
 	if ( ( rc = image_probe ( image ) ) != 0 )
410
 	if ( ( rc = image_probe ( image ) ) != 0 )
411
 		return rc;
411
 		return rc;
412
+	if ( ! image->type->exec )
413
+		return -ENOEXEC;
412
 
414
 
413
 	/* Mark image as selected */
415
 	/* Mark image as selected */
414
 	image->flags |= IMAGE_SELECTED;
416
 	image->flags |= IMAGE_SELECTED;

Loading…
Cancel
Save