diff options
author | Michael Brown <mcb30@ipxe.org> | 2013-11-26 16:29:30 +0000 |
---|---|---|
committer | Michael Brown <mcb30@ipxe.org> | 2013-11-27 11:27:51 +0000 |
commit | 0ee89338dd0e50744ed6003d2e04ef6770b2b63c (patch) | |
tree | 05163c310eefb2661990054f17c5dc8778ca5dda /src/config | |
parent | 09f31e9fc4fd728f7c51b092a1ea158abe20f864 (diff) | |
download | ipxe-0ee89338dd0e50744ed6003d2e04ef6770b2b63c.tar.gz |
[pnm] Add support for PNM images
Signed-off-by: Michael Brown <mcb30@ipxe.org>
Diffstat (limited to 'src/config')
-rw-r--r-- | src/config/config.c | 3 | ||||
-rw-r--r-- | src/config/general.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/config/config.c b/src/config/config.c index 6d19370a..89af88ac 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -194,6 +194,9 @@ REQUIRE_OBJECT ( efi_image ); #ifdef IMAGE_SDI REQUIRE_OBJECT ( sdi ); #endif +#ifdef IMAGE_PNM +REQUIRE_OBJECT ( pnm ); +#endif /* * Drag in all requested commands diff --git a/src/config/general.h b/src/config/general.h index 2af521e2..0b1196c5 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -103,6 +103,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#define IMAGE_COMBOOT /* SYSLINUX COMBOOT image support */ //#define IMAGE_EFI /* EFI image support */ //#define IMAGE_SDI /* SDI image support */ +//#define IMAGE_PNM /* PNM image support */ /* * Command-line commands to include |