mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
This can be used to check existing images but will be used in the future to find EFI ESP images placed in El Torito catalogs so they can be used for hybrid boot purposes. Reviewed by: imp (code), sbruno (man page), bcr (man page) Sponsored by: iXsystems, Inc. Differential Revision: https://reviews.freebsd.org/D14952
14 lines
263 B
Makefile
14 lines
263 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= etdump
|
|
|
|
MAKEFS_SRC= ${SRCTOP}/usr.sbin/makefs
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys/fs/cd9660 -I${MAKEFS_SRC} \
|
|
-I${MAKEFS_SRC}/cd9660
|
|
|
|
.PATH: ${MAKEFS_SRC}/cd9660
|
|
|
|
SRCS= etdump.c output_shell.c output_text.c cd9660_conversion.c
|
|
|
|
.include <bsd.prog.mk>
|