forked from rpms/plymouth
- Update to version 0.4.0
- Only run if rhgb is on kernel command line - Make text plugin more animated
This commit is contained in:
parent
10070c47df
commit
506917cf99
@ -1 +1 @@
|
|||||||
plymouth-0.3.2.tar.bz2
|
plymouth-0.4.0.tar.bz2
|
||||||
|
25
fix-harmless-spew.patch
Normal file
25
fix-harmless-spew.patch
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
commit cc0fc4e577e4f397e7115eabfa74ce2f2629f29c
|
||||||
|
Author: Ray Strode <rstrode@redhat.com>
|
||||||
|
Date: Sun Jun 22 01:19:18 2008 -0400
|
||||||
|
|
||||||
|
/Really/ exit cleanly if rhgb isn't present on kernel cmdline
|
||||||
|
|
||||||
|
Unlike b7f4399294fad3d70029526cd7334c50d8673214 which was
|
||||||
|
broken
|
||||||
|
|
||||||
|
diff --git a/src/main.c b/src/main.c
|
||||||
|
index f554ce0..e855f68 100644
|
||||||
|
--- a/src/main.c
|
||||||
|
+++ b/src/main.c
|
||||||
|
@@ -454,7 +454,10 @@ main (int argc,
|
||||||
|
if (!initialize_environment (&state))
|
||||||
|
{
|
||||||
|
if (errno == 0)
|
||||||
|
- return 0;
|
||||||
|
+ {
|
||||||
|
+ ply_detach_daemon (daemon_handle, 0);
|
||||||
|
+ return 0;
|
||||||
|
+ }
|
||||||
|
|
||||||
|
ply_error ("could not setup basic operating environment: %m");
|
||||||
|
ply_detach_daemon (daemon_handle, EX_OSERR);
|
@ -1,7 +1,7 @@
|
|||||||
Summary: Plymouth Graphical Boot Animation and Logger
|
Summary: Plymouth Graphical Boot Animation and Logger
|
||||||
Name: plymouth
|
Name: plymouth
|
||||||
Version: 0.3.2
|
Version: 0.4.0
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: System Environment/Base
|
Group: System Environment/Base
|
||||||
Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2
|
Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.bz2
|
||||||
@ -12,7 +12,7 @@ Obsoletes: rhgb < 1:10.0.0
|
|||||||
Provides: rhgb = 1:10.0.0
|
Provides: rhgb = 1:10.0.0
|
||||||
|
|
||||||
Requires: system-logos >= 9.0.1
|
Requires: system-logos >= 9.0.1
|
||||||
Patch0: drop-text-mode.patch
|
Patch0: fix-harmless-spew.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Plymouth provides an attractive graphical boot animation in
|
Plymouth provides an attractive graphical boot animation in
|
||||||
@ -63,7 +63,7 @@ spins in the shape of an infinity sign.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
%patch0 -p1 -b .drop-text-mode
|
%patch0 -p1 -b .fix-harmless-spew
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure --enable-tracing --disable-tests --without-boot-entry \
|
%configure --enable-tracing --disable-tests --without-boot-entry \
|
||||||
@ -107,9 +107,9 @@ if [ $1 -eq 0 ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
%post plugin-fade-in
|
%post plugin-fade-in
|
||||||
if [ $1 -eq 1 ]; then
|
#if [ $1 -eq 1 ]; then
|
||||||
%{_sbindir}/plymouth-set-default-plugin fade-in
|
# %{_sbindir}/plymouth-set-default-plugin fade-in
|
||||||
fi
|
#fi
|
||||||
|
|
||||||
%postun plugin-fade-in
|
%postun plugin-fade-in
|
||||||
if [ $1 -eq 0 ]; then
|
if [ $1 -eq 0 ]; then
|
||||||
@ -164,6 +164,11 @@ fi
|
|||||||
%{_libdir}/plymouth/spinfinity.so
|
%{_libdir}/plymouth/spinfinity.so
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jun 22 2008 Ray Strode <rstrode@redhat.com> - 0.4.0-1
|
||||||
|
- Update to version 0.4.0
|
||||||
|
- Only run if rhgb is on kernel command line
|
||||||
|
- Make text plugin more animated
|
||||||
|
|
||||||
* Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-2
|
* Mon Jun 16 2008 Ray Strode <rstrode@redhat.com> - 0.3.2-2
|
||||||
- dont go back to text mode on exit
|
- dont go back to text mode on exit
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user