xf86-video-vesa has the following snippet of code in src/vesa.c: >#ifdef __linux__ > if (VESAFileExistsPrefix("/dev", "fb") || > VESAFileExistsPrefix("/dev/dri", "card")) { > ErrorF("vesa: Refusing to run, Framebuffer or dri device present\n"); > return FALSE; > } >#endif This code checks if there are files matching /dev/fb* or /dev/dri/card*, and if there are any, refuses to run. This requirement is needlessly strict. I have a framebuffer at /dev/fb0, yet I can also use the vesa driver if I remove this check. --- a/src/vesa.c 2024-12-18 13:20:50.976466197 +0200 +++ b/src/vesa.c 2024-12-18 13:21:15.869427641 +0200 @@ -478,6 +478,7 @@ { ScrnInfoPtr pScrn; +#if 0 #ifdef __linux__ if (VESAFileExistsPrefix("/dev", "fb") || VESAFileExistsPrefix("/dev/dri", "card")) { @@ -485,6 +486,7 @@ return FALSE; } #endif +#endif pScrn = xf86ConfigPciEntity(NULL, 0, entity_num, NULL, NULL, NULL, NULL, NULL, NULL); If I apply the above patch, the vesa driver works without issue.
See: https://gitlab.freedesktop.org/xorg/driver/xf86-video-vesa/-/issues/6