diff options
| author | Michael Brown | 2014-01-06 18:59:21 +0100 |
|---|---|---|
| committer | Michael Brown | 2014-01-12 22:53:16 +0100 |
| commit | c6c80789642c866250bfdce474b3037351bf4fb1 (patch) | |
| tree | 4e665a8c6796f5afa8625f26dfa3ff26864906ce /src/config | |
| parent | [test] Generalise pnm_ok() to pixbuf_ok() (diff) | |
| download | ipxe-c6c80789642c866250bfdce474b3037351bf4fb1.tar.gz ipxe-c6c80789642c866250bfdce474b3037351bf4fb1.tar.xz ipxe-c6c80789642c866250bfdce474b3037351bf4fb1.zip | |
[png] Add support for PNG 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 898096798..1f17fb268 100644 --- a/src/config/config.c +++ b/src/config/config.c @@ -200,6 +200,9 @@ REQUIRE_OBJECT ( sdi ); #ifdef IMAGE_PNM REQUIRE_OBJECT ( pnm ); #endif +#ifdef IMAGE_PNG +REQUIRE_OBJECT ( png ); +#endif /* * Drag in all requested commands diff --git a/src/config/general.h b/src/config/general.h index e73a640e9..0b45edfb1 100644 --- a/src/config/general.h +++ b/src/config/general.h @@ -104,6 +104,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); //#define IMAGE_EFI /* EFI image support */ //#define IMAGE_SDI /* SDI image support */ //#define IMAGE_PNM /* PNM image support */ +//#define IMAGE_PNG /* PNG image support */ /* * Command-line commands to include |
