add DRM video driver

This commit is contained in:
Vincent Wei
2019-06-10 16:10:59 +08:00
parent 3601fa4868
commit 59e79143fb
2 changed files with 6 additions and 0 deletions
+3
View File
@@ -313,6 +313,9 @@ extern VideoBootStrap STGFB_bootstrap;
#ifdef _MGGAL_USVFB
extern VideoBootStrap USVFB_bootstrap;
#endif
#ifdef _MGGAL_DRM
extern VideoBootStrap DRM_bootstrap;
#endif
/* This is the current video device */
extern GAL_VideoDevice *current_video;
+3
View File
@@ -143,6 +143,9 @@ static VideoBootStrap *bootstrap[] = {
#endif
#ifdef _MGGAL_USVFB
&USVFB_bootstrap,
#endif
#ifdef _MGGAL_DRM
&DRM_bootstrap,
#endif
NULL
};