https://bugzilla.novell.com/show_bug.cgi?id=649461 https://bugzilla.novell.com/show_bug.cgi?id=649461#c10 --- Comment #10 from aladedragon aladedragon <aladedragon@gmail.com> 2010-10-27 13:42:48 UTC --- (In reply to comment #7)
xf86-video-unichrome/src/via_dri.c: [...] Bool VIADRIScreenInit(ScrnInfoPtr pScrn, ScreenPtr pScreen) { [...] switch (pVia->Chipset) { case VT3122: case VT7205: case VT3108: break; default: xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "%s: %s is not supported.\n", __func__, pScrn->chipset); return FALSE; } [...]
VT3344 is not among these.
Bool VIADRIScreenInit(ScreenPtr pScreen) { ScrnInfoPtr pScrn = xf86Screens[pScreen->myNum]; VIAPtr pVia = VIAPTR(pScrn); DRIInfoPtr pDRIInfo; VIADRIPtr pVIADRI; drmVersionPtr drmVer; /* If symbols or version check fails, we still want this to be NULL. */ pVia->pDRIInfo = NULL; /* Check that the GLX, DRI, and DRM modules have been loaded by testing * for canonical symbols in each module. */ if (!xf86LoaderCheckSymbol("GlxSetVisualConfigs")) return FALSE; if (!xf86LoaderCheckSymbol("drmAvailable")) return FALSE; if (!xf86LoaderCheckSymbol("DRIQueryVersion")) { xf86DrvMsg(pScreen->myNum, X_ERROR, "[dri] VIADRIScreenInit failed (libdri.a is too old).\n"); return FALSE; } (In reply to comment #9)
Ubuntu uses a complete different driver. openchrome instead of unichrome.
Yes but, i can compile it successful. Why I can't use it?: See any operating system documentation about shared libraries for more information, such as the ld(1) and ld.so(8) manual pages. ---------------------------------------------------------------------- make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/root/openchrome/libxvmc' make[1]: Leaving directory `/root/openchrome/libxvmc' make[1]: Entering directory `/root/openchrome' make[2]: Entering directory `/root/openchrome' make[2]: Nothing to be done for `install-exec-am'. make[2]: Nothing to be done for `install-data-am'. make[2]: Leaving directory `/root/openchrome' make[1]: Leaving directory `/root/openchrome' -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.