Squashed commit of the following:

video/edid:  Add some initial EDID logic ported from FreeBSD.
    video/:  Add basic configure and build support for a video subsystem.
This commit is contained in:
Gregory Nutt
2019-07-07 16:40:24 -06:00
parent 8edff9d295
commit dbf286472b
13 changed files with 1230 additions and 98 deletions

View File

@@ -119,6 +119,12 @@ ifeq ($(CONFIG_AUDIO),y)
NUTTXLIBS += staging$(DELIM)libaudio$(LIBEXT)
endif
# Add libraries for the Video sub-system
ifeq ($(CONFIG_VIDEO),y)
NUTTXLIBS += staging$(DELIM)libvideo$(LIBEXT)
endif
# Add libraries for the Wireless sub-system
ifeq ($(CONFIG_WIRELESS),y)