xf86AutoConfig: Enabled autoselction of the scfb driver for DragonFlyBSD.

scfb driver is the native frame-buffer driver used on both FreeBSD and DragonFlyBSD,
It was not enabled as a fallback on DragonFlyBSD, so enabled it.

The driver:
https://github.com/rayddteam/xf86-video-scfb
Signed-off-by: b-aaz <b-aazbsd@proton.me>
This commit is contained in:
b-aaz
2025-09-07 19:21:56 +00:00
committed by Enrico Weigelt
parent 6415fdf2db
commit 8d4c9270ea

View File

@@ -303,7 +303,7 @@ listPossibleVideoDrivers(XF86MatchedDrivers *md)
#if defined(__linux__)
xf86AddMatchedDriver(md, "fbdev");
#endif
#if defined(__FreeBSD__)
#if defined(__FreeBSD__) || defined(__DragonFly__)
xf86AddMatchedDriver(md, "scfb");
#endif