Hi
For extend screen ,you need disable dual.dtb, and try like this:
•Extended desktop is an interesting approach, as 2 screen framebuffers will be combined into a single one that will be shown across multiple displays.
•
•This functionality is only supported using the GAL2D blitter, in order to enable a multiple desktop approach, you need to pass the following parameters to your weston command:
•/etc/init.d/weston stop
•echo 0 > /sys/class/graphics/fb4/blank
•weston --tty=1 --use-gal2d=1 --use-gl=0 --device=/dev/fb0,/dev/fb4 &
•
•With this, 2 contiguous surfaces will be created, and the gal2d compositor will output the 2 main buffers to their respective display. And when a surface is shared between the 2 displays, the compositor will divide it so a fragment of each screen is shown on each buffer.
BR