diff options
| author | Ray Strode <rstrode@redhat.com> | 2008-05-19 23:18:42 -0400 |
|---|---|---|
| committer | Ray Strode <rstrode@redhat.com> | 2008-05-19 23:18:42 -0400 |
| commit | 227418f36bdcbd9f065657d7656f763f24c191ba (patch) | |
| tree | 4ff28547ef92209759754d508f1e5a65d1cca433 /src | |
| parent | 038d5d6dd32d43e3c173aae13c60ba3b5cd28fcd (diff) | |
| download | plymouth-227418f36bdcbd9f065657d7656f763f24c191ba.tar.gz plymouth-227418f36bdcbd9f065657d7656f763f24c191ba.tar.xz plymouth-227418f36bdcbd9f065657d7656f763f24c191ba.zip | |
use "details" stub plugin when user presses escape
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.c | 2 | ||||
| -rw-r--r-- | src/splash-plugins/Makefile.am | 2 | ||||
| -rw-r--r-- | src/splash-plugins/details/Makefile.am | 10 |
3 files changed, 7 insertions, 7 deletions
@@ -153,7 +153,7 @@ on_escape_pressed (state_t *state) ply_boot_splash_hide (state->boot_splash); ply_boot_splash_free (state->boot_splash); - state->boot_splash = start_boot_splash (state, PLYMOUTH_PLUGIN_PATH "text.so"); + state->boot_splash = start_boot_splash (state, PLYMOUTH_PLUGIN_PATH "details.so"); } static ply_window_t * diff --git a/src/splash-plugins/Makefile.am b/src/splash-plugins/Makefile.am index 19de569..446356d 100644 --- a/src/splash-plugins/Makefile.am +++ b/src/splash-plugins/Makefile.am @@ -1,2 +1,2 @@ -SUBDIRS = fedora-fade-in text tests +SUBDIRS = fedora-fade-in text details tests MAINTAINERCLEANFILES = Makefile.in diff --git a/src/splash-plugins/details/Makefile.am b/src/splash-plugins/details/Makefile.am index ed2b6e9..9df50b4 100644 --- a/src/splash-plugins/details/Makefile.am +++ b/src/splash-plugins/details/Makefile.am @@ -5,12 +5,12 @@ INCLUDES = -I$(top_srcdir) \ -I$(srcdir) plugindir = $(libdir)/plymouth -plugin_LTLIBRARIES = text.la +plugin_LTLIBRARIES = details.la -text_la_CFLAGS = $(PLYMOUTH_CFLAGS) -text_la_LDFLAGS = -module -avoid-version -export-dynamic -text_la_LIBADD = $(PLYMOUTH_LIBS) ../../libply/libply.la -text_la_SOURCES = $(srcdir)/../../ply-boot-splash-plugin.h \ +details_la_CFLAGS = $(PLYMOUTH_CFLAGS) +details_la_LDFLAGS = -module -avoid-version -export-dynamic +details_la_LIBADD = $(PLYMOUTH_LIBS) ../../libply/libply.la +details_la_SOURCES = $(srcdir)/../../ply-boot-splash-plugin.h \ $(srcdir)/details.c MAINTAINERCLEANFILES = Makefile.in |
