Revert "ecore-drm: Don't init tty unless we are Not using systemd"

This reverts commit 28e4901d04.

This broke vt switching in drm so revert (for now) until we get the
systemd vt and setup handlers
This commit is contained in:
Chris Michael 2015-01-19 12:55:50 -05:00
parent 28e4901d04
commit 205430ceb4
1 changed files with 5 additions and 15 deletions

View File

@ -123,15 +123,10 @@ ecore_drm_launcher_connect(Ecore_Drm_Device *dev)
}
}
/* NB: Hmmm, appears we don't need to open a tty if we are running
* with systemd support */
if (!logind)
if (!ecore_drm_tty_open(dev, NULL))
{
if (!ecore_drm_tty_open(dev, NULL))
{
ERR("Launcher: failed to open tty\n");
return EINA_FALSE;
}
ERR("Launcher: failed to open tty\n");
return EINA_FALSE;
}
/* setup handler for signals */
@ -158,13 +153,8 @@ ecore_drm_launcher_disconnect(Ecore_Drm_Device *dev)
if (dev->tty.switch_hdlr) ecore_event_handler_del(dev->tty.switch_hdlr);
dev->tty.switch_hdlr = NULL;
/* NB: Hmmm, appears we don't need to open a tty if we are running
* with systemd support */
if (!logind)
{
if (!ecore_drm_tty_close(dev))
ERR("Launcher: failed to close tty\n");
}
if (!ecore_drm_tty_close(dev))
ERR("Launcher: failed to close tty\n");
if (logind)
{