https://bugs.freedesktop.org/show_bug.cgi?id=108038

--- Comment #4 from Olivier Fourdan <four...@xfce.org> ---
That "authenicate failed" (with the typo in "authenicate") is typical of drm
authentication in Mesa:

175 static void
176 drm_authenticate(struct wl_client *client,
177                  struct wl_resource *resource, uint32_t id)
178 {
179         struct wl_drm *drm = wl_resource_get_user_data(resource);
180 
181         if (drm->callbacks.authenticate(drm->user_data, id) < 0)
182                 wl_resource_post_error(resource,
183                                        WL_DRM_ERROR_AUTHENTICATE_FAIL,
184                                        "authenicate failed");
185         else
186                 wl_resource_post_event(resource, WL_DRM_AUTHENTICATED);
187 }


https://cgit.freedesktop.org/mesa/mesa/tree/src/egl/wayland/wayland-drm/wayland-drm.c#n175

Does the issue occurs if you wait for the X client to start before switching to
another tty?

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
wayland-bugs mailing list
wayland-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-bugs

Reply via email to