]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
Revert "main: force frame-buffer plugin at shutdown"
authorRay Strode <rstrode@redhat.com>
Tue, 5 Jun 2012 17:03:06 +0000 (13:03 -0400)
committerRay Strode <rstrode@redhat.com>
Wed, 6 Jun 2012 14:13:00 +0000 (10:13 -0400)
This reverts commit 3f14f2700e031e6fbb674ebb1ab86a73b4469dc8.

Forcing frame-buffer plugin makes multi-monitor look really bad.
Instead, depend on the init system to make sure we stay alive
until the end.

src/main.c

index db0ac3190de65f47941aec20d8ec094ecca7930d..073908850df39b2c1f84bcf86a30baf92d1b178c 100644 (file)
@@ -1498,11 +1498,7 @@ add_default_displays_and_keyboard (state_t *state)
 
   state->local_console_terminal = ply_terminal_new (state->default_tty);
 
-  /* force frame-buffer plugin for shutdown so it sticks around after getting killed */
-  if (state->mode == PLY_MODE_SHUTDOWN)
-    renderer = ply_renderer_new (PLYMOUTH_PLUGIN_PATH "renderers/frame-buffer.so", NULL, state->local_console_terminal);
-  else
-    renderer = ply_renderer_new (NULL, NULL, state->local_console_terminal);
+  renderer = ply_renderer_new (NULL, NULL, state->local_console_terminal);
 
   if (!ply_renderer_open (renderer))
     {