From 8d4c9270eac5588bb54e834581943bab67e4b972 Mon Sep 17 00:00:00 2001 From: b-aaz <85005689+b-aaz@users.noreply.github.com> Date: Sun, 7 Sep 2025 19:21:56 +0000 Subject: [PATCH] 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 --- hw/xfree86/common/xf86AutoConfig.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xfree86/common/xf86AutoConfig.c b/hw/xfree86/common/xf86AutoConfig.c index f1f09a977c..8e77c42edd 100644 --- a/hw/xfree86/common/xf86AutoConfig.c +++ b/hw/xfree86/common/xf86AutoConfig.c @@ -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