X.Org Foundation Membership Renewal

2017-02-02 Thread Alex Deucher
On January 19th all xorg members were expired as part of the regular process to remove inactive members. If you would still like to be a member of the X.Org Foundation, please renew your membership. To renew or to become a first time member, go to https://members.x.org/ . For renewals, log in and

Re: weston sometime fails to start using systemd unit file

2017-02-02 Thread Matt Hoosier
Hi; I think that you might rather have more success if you just instruct your weston.service unit file that Weston isn't allowed to start until the DRI device appears. E.g., [Unit] ... Requires=dev-dri-card0.device # or dev-drm-card0.device as appropriate for your board After=dev-dri-card

[PATCH weston 2/2] compositor-drm: don't pass option_connector to create_outputs

2017-02-02 Thread Ucan, Emre (ADITG/SW1)
The connector option is a part of drm_backend struct. Therefore, it is not needed to pass it as an argument to create_outputs function. Signed-off-by: Emre Ucan --- libweston/compositor-drm.c |9 - 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/libweston/compositor-drm

[PATCH weston 1/2] compositor-drm: update connectors with connector config

2017-02-02 Thread Ucan, Emre (ADITG/SW1)
weston can be started with --connector option to be initialized with a particular output. But in the update_outputs this option is not considered and output is created for all the available connectors. This patch fixes this issue by considering the option for connectors in the update_outputs. Sign