mirror of
https://github.com/ipxe/ipxe
synced 2025-12-17 10:01:03 +03:00
Use systematic names for XXX_IMAGE.
Add scripts as an image format (since it's trivial to do).
This commit is contained in:
@@ -122,21 +122,24 @@ REQUIRE_OBJECT ( elf );
|
||||
#ifdef COFF_IMAGE
|
||||
REQUIRE_OBJECT ( coff );
|
||||
#endif
|
||||
#ifdef IMAGE_FREEBSD
|
||||
#ifdef FREEBSD_IMAGE
|
||||
REQUIRE_OBJECT ( freebsd );
|
||||
#endif
|
||||
#ifdef IMAGE_MULTIBOOT
|
||||
#ifdef MULTIBOOT_IMAGE
|
||||
REQUIRE_OBJECT ( multiboot );
|
||||
#endif
|
||||
#ifdef AOUT_IMAGE
|
||||
#ifdef AOUT_IMAGE
|
||||
REQUIRE_OBJECT ( aout );
|
||||
#endif
|
||||
#ifdef WINCE_IMAGE
|
||||
#ifdef WINCE_IMAGE
|
||||
REQUIRE_OBJECT ( wince );
|
||||
#endif
|
||||
#ifdef PXE_IMAGE
|
||||
#ifdef PXE_IMAGE
|
||||
REQUIRE_OBJECT ( pxe );
|
||||
#endif
|
||||
#ifdef SCRIPT_IMAGE
|
||||
REQUIRE_OBJECT ( script );
|
||||
#endif
|
||||
|
||||
/*
|
||||
* Drag in all requested commands
|
||||
|
||||
Reference in New Issue
Block a user