26f14d6b5d
Use EDID when available to configure the frame buffer driver with good settings for the attached display. Change-Id: I69a78155a93e55ffa1ca3ff6621a879a56cdbceb
22 lines
498 B
Makefile
22 lines
498 B
Makefile
# Makefile for the framebuffer driver.
|
|
PROG= fb
|
|
|
|
.include "arch/${MACHINE_ARCH}/Makefile.inc"
|
|
|
|
SRCS+= fb_edid.c fb.c
|
|
|
|
# re-use EDID parsing/validation code from NetBSD.
|
|
.PATH: ${NETBSDSRCDIR}/sys/dev/videomode
|
|
SRCS+= edid.c pickmode.c videomode.c vesagtf.c
|
|
|
|
# Put this dir and the EDID headers (dev/videomode/*.h) in the search path.
|
|
CPPFLAGS+= -I${.CURDIR} -I${NETBSDSRCDIR}/sys
|
|
|
|
DPADD+= ${LIBCHARDRIVER} ${LIBSYS}
|
|
LDADD+= -lchardriver -lsys
|
|
|
|
MAN=
|
|
|
|
BINDIR?= /usr/sbin
|
|
|
|
.include <minix.service.mk>
|