This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: Linux
Hi,
I tried xorg sdk by using processor-sdk-04.01.00.06-x11-config.txt for am57xx machine. I created core image but I couldn't compile programs that use Xorg. I couldn't compile any package that depends on xorg because I get following error in bitbake:
ERROR: openbox was skipped: missing required distro feature 'x11' (not in DISTRO_FEATURES)
I tried to add that feature in conf/local.conf but it didn't change anything.
Will be support for that added in foreseable future?
Open <tisdk>/sources/meta-arago/meta-arago-distro/conf/distro/arago.conf and comment out DISTRO_FEATURES_remove = "x11".
Thanks, it helped a lot. This allowed me to compile system without problem.
But we found out that while X is running gstreamer ducati plugin doesn't work. After killing X I use it to play video via kmssink. It fails in initialization like here(I attached strace of that command):
gst-inspect-1.0 ducatijpegdec
...1
version : The codec version string
flags: ../git/libdce_linux.c:70: dce_init ERROR: Failed OmapDrm_FD > 0 error val -7readable
String. Default: null
Edit: It appears to work with a ugly hack of replacing drmopen by do { OmapDrm_FD = open("/dev/dri/card0", O_RDWR | O_CLOEXEC);} while (OmapDrm_FD < 0) ;