Skip to content

Commit c6c8078

Browse files
committed
[png] Add support for PNG images
Signed-off-by: Michael Brown <mcb30@ipxe.org>
1 parent f4d2342 commit c6c8078

File tree

7 files changed

+3185
-0
lines changed

7 files changed

+3185
-0
lines changed

src/config/config.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,9 @@ REQUIRE_OBJECT ( sdi );
200200
#ifdef IMAGE_PNM
201201
REQUIRE_OBJECT ( pnm );
202202
#endif
203+
#ifdef IMAGE_PNG
204+
REQUIRE_OBJECT ( png );
205+
#endif
203206

204207
/*
205208
* Drag in all requested commands

src/config/general.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,7 @@ FILE_LICENCE ( GPL2_OR_LATER );
104104
//#define IMAGE_EFI /* EFI image support */
105105
//#define IMAGE_SDI /* SDI image support */
106106
//#define IMAGE_PNM /* PNM image support */
107+
//#define IMAGE_PNG /* PNG image support */
107108

108109
/*
109110
* Command-line commands to include

0 commit comments

Comments
 (0)