On or around (I've been debugging the code a bit) line 520 of
src/nsc_driver.c is the call to xf86GetPciVideoInfo .
It is intended to detect wether or not PCI is available at all. I
changed this to if (1).
If PCI is NOT available, the xf86MatchPciInstances calls in the
following lines will silently return "no devices found". I actually
tested that because I cut out too much of my machine's bootsequence, so
that PCI wasn't available anymore.
/* PCI BUS */
if (xf86GetPciVideoInfo ()) {
numUsed = xf86MatchPciInstances(NSC_NAME, PCI_VENDOR_ID_NS,
becomes:
/* PCI BUS */
if (1) {
numUsed = xf86MatchPciInstances(NSC_NAME, PCI_VENDOR_ID_NS,
More info needed? Mail me... :-)
--
Xorg -configure breaks on undefined symbol: xf86GetPciVideoInfo
https://bugs.launchpad.net/bugs/265035
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
--
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs