![]() |
|
|
#3 | |
|
Junior Member
Join Date: Mar 2014
Posts: 2
|
Quote:
I cannot give you an explanation specific to ubuntu, but generically you need: 1. X with support for xrandr1.4 2. kernel 3.6 or newer 3. the "modesetting" X driver As the kernel driver has bound you need the generic driver for framebuffers with kernel modesetting. That is the "modesetting" driver. Generally, if you've installed it, it will be loaded when you start X. In addition you need to slave the second graphics device to the first. Before you do that xrandr will <b>not</b> show the attached monitors. Hence your trouble with xrandr. For example: xrandr --listproviders Providers: number : 2 Provider 0: id: 0x5a cap: 0xf, Source Output, Sink Output, Source Offload, Sink Offload crtcs: 6 outputs: 5 associated providers: 0 name:radeon Provider 1: id: 0x4ae cap: 0x2, Sink Output crtcs: 1 outputs: 1 associated providers: 0 name:modesetting That lists the devices. In my case I need to slave provider 1 to provider 0: xrandr --setprovideroutputsource 1 0 After that xrandr will list the display and you use it like a second monitor on a primary graphics device. |
|
|
|
|
|
|