I'm starting from scratch and following the docs and looking for clarification. I'm confused by the nVidia pci address changing when entered as a BusID.
In the example, it shows this output of
Then it has the sample
The nvidia BusID
Is this intentional, i.e. in
I'm configuring X on a Lenovo P14S type 21AK-0044us
In
In the example, it shows this output of
pciconf -lv | grep -B3 displayvgapci0@pci0:0:2:0: [snip} vendor = 'Intel Corporation'[snip]--vgapci0@pci0:1:0:0: [snip] vendor = 'NVIDIA Corporation'[snip]Then it has the sample
20-drivers.conf
Code:
Section "Device"
Identifier "Card0"
Driver "intel"
BusID "pci0:0:2:0"
EndSection
Section "Device"
Identifier "Card1"
Driver "nvidia"
BusID "pci0:0:2:1"
EndSection
The nvidia BusID
vgapci0@pci0:1:0:0 changes to BusID "pci0:0:2:1"Is this intentional, i.e. in
20-drivers.conf is the second card's BusID a +1 of the first entry, or should the nvidia's BusID actually be pci0:1:0:0 matching the output of pciconf -lv | grep -B3 display?I'm configuring X on a Lenovo P14S type 21AK-0044us
pciconf gives Intel Corporation at pci0:0:2:0 and NVIDIA Corporation at pci0:3:0:0. In
20-drivers.conf would I put nvidia at pci0:3:0:0 from the output of pciconf or at pci0:0:2:1 like in the handbook?