-
Notifications
You must be signed in to change notification settings - Fork 0
/
plymouth.spec
743 lines (575 loc) · 24.8 KB
/
plymouth.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
%global plymouthdaemon_execdir %{_sbindir}
%global plymouthclient_execdir %{_bindir}
%global plymouth_libdir %{_libdir}
%global plymouth_initrd_file /boot/initrd-plymouth.img
# Set to 1 if building from snapshots.
%global snapshot_build 0
%if %{snapshot_build}
%global snapshot_date 20160620
%global snapshot_hash 0e65b86c
%global snapshot_rel %{?snapshot_date}git%{?snapshot_hash}
%endif
Summary: Graphical Boot Animation and Logger
Name: plymouth
Version: 0.9.3
Release: 5%{?snapshot_rel}%{?dist}
License: GPLv2+
URL: http://www.freedesktop.org/wiki/Software/Plymouth
Source0: http://freedesktop.org/software/plymouth/releases/%{name}-%{version}.tar.xz
Source2: charge.plymouth
Source3: plymouth-update-initrd
# Patches from upstream git for rotated-display support
# https://bugs.freedesktop.org/show_bug.cgi?id=104714
# These can all be dropped on the next rebase
Patch1: 0001-device-manager-drop-superfluous-create_pixel_display.patch
Patch2: 0002-main-Do-not-update-the-display-on-backspace-when-the.patch
Patch3: 0003-pixel-buffer-Add-the-concept-of-device-rotation.patch
Patch4: 0004-drm-Check-for-panel-orientation-connector-property.patch
Patch5: 0005-drm-Reset-primary-plane-rotation-to-DRM_MODE_ROTATE_.patch
Patch6: 0006-pixel-buffer-switch-device-rotation-to-an-enum.patch
Patch7: 0007-terminal-add-include-for-sysmacros.h.patch
# Patch from upstream for #1518464
Patch8: 0001-device-manager-skip-graphical-renderer-setup-when-de.patch
# Patch from upstream fixes boot with rhgb but no renderers available
Patch9: 0001-device-manager-fall-back-to-text-mode-if-graphical-d.patch
# Patches from upstream to fix details view on kernels build with
# CONFIG_FRAMEBUFFER_CONSOLE_DEFERRED_TAKEOVER
Patch10: 0001-renderer-support-reactivating-renderer-without-closi.patch
Patch11: 0002-main-move-ply_device_manager_deactivate_renderers-in.patch
Patch12: 0003-main-Only-activate-renderers-if-the-splash-uses-pixe.patch
Patch13: 0004-drm-Remove-unnecessary-reset_scan_out_buffer_if_need.patch
Patch14: 0005-main-Show-details-when-ESC-is-pressed-during-splash_.patch
Patch15: 0006-main-Fix-getting-detailed-logs-from-systemd.patch
Patch16: 0007-main-fix-build.patch
# Only allow framebuffer 0 to be used.
Patch100: fedberry-fb0-only.patch
Patch101: fedberry-update-script-colours.patch
BuildRequires: gcc
BuildRequires: pkgconfig(libdrm)
BuildRequires: pkgconfig(libudev)
BuildRequires: kernel-headers
BuildRequires: libpng-devel
BuildRequires: libxslt, docbook-style-xsl
BuildRequires: pkgconfig(gtk+-3.0)
BuildRequires: pango-devel >= 1.21.0
BuildRequires: cairo-devel
Requires(post): plymouth-scripts
%description
Plymouth provides an attractive graphical boot animation in
place of the text messages that normally get shown. Text
messages are instead redirected to a log file for viewing
after boot.
%package system-theme
Summary: Plymouth default theme
Requires: plymouth(system-theme) = %{version}-%{release}
%description system-theme
This metapackage tracks the current distribution default theme.
%package core-libs
Summary: Plymouth core libraries
%description core-libs
This package contains the libply and libply-splash-core libraries
used by Plymouth.
%package graphics-libs
Summary: Plymouth graphics libraries
Requires: %{name}-core-libs = %{version}-%{release}
Requires: system-logos
%description graphics-libs
This package contains the libply-splash-graphics library
used by graphical Plymouth splashes.
%package devel
Summary: Libraries and headers for writing Plymouth splash plugins
Requires: %{name} = %{version}-%{release}
Requires: pkgconfig
%description devel
This package contains the libply and libplybootsplash libraries
and headers needed to develop 3rd party splash plugins for Plymouth.
%package scripts
Summary: Plymouth related scripts
Requires: findutils, coreutils, gzip, cpio, dracut, plymouth
%description scripts
This package contains scripts that help integrate Plymouth with
the system.
%package plugin-label
Summary: Plymouth label plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
%description plugin-label
This package contains the label control plugin for
Plymouth. It provides the ability to render text on
graphical boot splashes using pango and cairo.
%package plugin-fade-throbber
Summary: Plymouth "Fade-Throbber" plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
%description plugin-fade-throbber
This package contains the "Fade-In" boot splash plugin for
Plymouth. It features a centered image that fades in and out
while other images pulsate around during system boot up.
%package theme-fade-in
Summary: Plymouth "Fade-In" theme
Requires: %{name}-plugin-fade-throbber = %{version}-%{release}
Requires(post): plymouth-scripts
%description theme-fade-in
This package contains the "Fade-In" boot splash theme for
Plymouth. It features a centered logo that fades in and out
while stars twinkle around the logo during system boot up.
%package plugin-throbgress
Summary: Plymouth "Throbgress" plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
Requires: plymouth-plugin-label
%description plugin-throbgress
This package contains the "throbgress" boot splash plugin for
Plymouth. It features a centered logo and animated spinner that
spins repeatedly while a progress bar advances at the bottom of
the screen.
%package theme-spinfinity
Summary: Plymouth "Spinfinity" theme
Requires: %{name}-plugin-throbgress = %{version}-%{release}
Requires(post): plymouth-scripts
%description theme-spinfinity
This package contains the "Spinfinity" boot splash theme for
Plymouth. It features a centered logo and animated spinner that
spins in the shape of an infinity sign.
%package plugin-space-flares
Summary: Plymouth "space-flares" plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
Requires: plymouth-plugin-label
%description plugin-space-flares
This package contains the "space-flares" boot splash plugin for
Plymouth. It features a corner image with animated flares.
%package theme-solar
Summary: Plymouth "Solar" theme
Requires: %{name}-plugin-space-flares = %{version}-%{release}
Requires(post): plymouth-scripts
%description theme-solar
This package contains the "Solar" boot splash theme for
Plymouth. It features a blue flamed sun with animated solar flares.
%package plugin-two-step
Summary: Plymouth "two-step" plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
Requires: plymouth-plugin-label
%description plugin-two-step
This package contains the "two-step" boot splash plugin for
Plymouth. It features a two phased boot process that starts with
a progressing animation synced to boot time and finishes with a
short, fast one-shot animation.
%package theme-charge
Summary: Plymouth "Charge" plugin
Requires: %{name}-plugin-two-step = %{version}-%{release}
Requires(post): plymouth-scripts
Provides: plymouth(system-theme) = %{version}-%{release}
%description theme-charge
This package contains the "charge" boot splash theme for
Plymouth. It features the shadowy hull of a Fedora logo charge up and
and finally burst into full form.
%package plugin-script
Summary: Plymouth "script" plugin
Requires: %{name} = %{version}-%{release}
Requires: %{name}-graphics-libs = %{version}-%{release}
%description plugin-script
This package contains the "script" boot splash plugin for
Plymouth. It features an extensible, scriptable boot splash
language that simplifies the process of designing custom
boot splash themes.
%package theme-script
Summary: Plymouth "Script" plugin
Requires: %{name}-plugin-script = %{version}-%{release}
Requires(post): %{_sbindir}/plymouth-set-default-theme
%description theme-script
This package contains the "script" boot splash theme for
Plymouth. It it is a simple example theme the uses the "script"
plugin.
%package theme-spinner
Summary: Plymouth "Spinner" theme
Requires: %{name}-plugin-two-step = %{version}-%{release}
Requires(post): plymouth-scripts
%description theme-spinner
This package contains the "spinner" boot splash theme for
Plymouth. It features a small spinner on a dark background.
%prep
%autosetup -p1
# Change plymouth defaults
sed -i -e 's/spinner/charge/g' -e 's/ShowDelay=5/ShowDelay=0/g' \
-e 's/DeviceTimeout=5/DeviceTimeout=1/g' src/plymouthd.defaults
%build
%configure --enable-tracing\
--with-logo=%{_datadir}/pixmaps/system-logo-white.png\
--with-background-start-color-stop=0x000000\
--with-background-end-color-stop=0x333333\
--with-background-color=0x212121\
--disable-gdm-transition\
--enable-systemd-integration\
--without-system-root-install\
--without-rhgb-compat-link\
make
%install
make install DESTDIR=$RPM_BUILD_ROOT
# Glow isn't quite ready for primetime
rm -rf $RPM_BUILD_ROOT%{_datadir}/plymouth/glow/
rm -f $RPM_BUILD_ROOT%{_libdir}/plymouth/glow.so
find $RPM_BUILD_ROOT -name '*.a' -delete
find $RPM_BUILD_ROOT -name '*.la' -delete
mkdir -p $RPM_BUILD_ROOT%{_localstatedir}/lib/plymouth
cp -f $RPM_SOURCE_DIR/plymouth-update-initrd $RPM_BUILD_ROOT%{_libexecdir}/plymouth
# Add charge, our new default
mkdir -p $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/charge
cp %{SOURCE2} $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/charge
cp $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/glow/{box,bullet,entry,lock}.png $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/charge
# Drop glow, it's not very Fedora-y
rm -rf $RPM_BUILD_ROOT%{_datadir}/plymouth/themes/glow
%postun
if [ $1 -eq 0 ]; then
rm -f %{_libdir}/plymouth/default.so
rm -f /boot/initrd-plymouth.img
fi
%ldconfig_scriptlets core-libs
%ldconfig_scriptlets graphics-libs
%postun theme-spinfinity
export LIB=%{_lib}
if [ $1 -eq 0 ]; then
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "spinfinity" ]; then
%{_sbindir}/plymouth-set-default-theme text
fi
fi
%postun theme-fade-in
export LIB=%{_lib}
if [ $1 -eq 0 ]; then
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "fade-in" ]; then
%{_sbindir}/plymouth-set-default-theme --reset
fi
fi
%postun theme-spinner
export LIB=%{_lib}
if [ $1 -eq 0 ]; then
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "spinner" ]; then
%{_sbindir}/plymouth-set-default-theme --reset
fi
fi
%postun theme-solar
export LIB=%{_lib}
if [ $1 -eq 0 ]; then
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "solar" ]; then
%{_sbindir}/plymouth-set-default-theme --reset
fi
fi
%post theme-charge
export LIB=%{_lib}
if [ $1 -eq 1 ]; then
%{_sbindir}/plymouth-set-default-theme charge
else
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "solar" ]; then
%{_sbindir}/plymouth-set-default-theme charge
fi
fi
%postun theme-charge
export LIB=%{_lib}
if [ $1 -eq 0 ]; then
if [ "$(%{_sbindir}/plymouth-set-default-theme)" == "charge" ]; then
%{_sbindir}/plymouth-set-default-theme --reset
fi
fi
%files
%license COPYING
%doc AUTHORS README
%dir %{_datadir}/plymouth
%dir %{_datadir}/plymouth/themes
%dir %{_datadir}/plymouth/themes/details
%dir %{_datadir}/plymouth/themes/text
%dir %{_libexecdir}/plymouth
%dir %{_localstatedir}/lib/plymouth
%dir %{_libdir}/plymouth/renderers
%dir %{_sysconfdir}/plymouth
%config(noreplace) %{_sysconfdir}/plymouth/plymouthd.conf
%{plymouthdaemon_execdir}/plymouthd
%{plymouthclient_execdir}/plymouth
%{_bindir}/plymouth
%{_libdir}/plymouth/details.so
%{_libdir}/plymouth/text.so
%{_libdir}/plymouth/tribar.so
%{_datadir}/plymouth/themes/details/details.plymouth
%{_datadir}/plymouth/themes/text/text.plymouth
%{_datadir}/plymouth/themes/tribar/tribar.plymouth
%{_datadir}/plymouth/plymouthd.defaults
%{_localstatedir}/run/plymouth
%{_localstatedir}/spool/plymouth
%{_mandir}/man?/*
%ghost %{_localstatedir}/lib/plymouth/boot-duration
%{_prefix}/lib/systemd/system/*
%{_prefix}/lib/systemd/system/
%files devel
%{plymouth_libdir}/libply.so
%{plymouth_libdir}/libply-splash-core.so
%{_libdir}/libply-boot-client.so
%{_libdir}/libply-splash-graphics.so
%{_libdir}/pkgconfig/ply-splash-core.pc
%{_libdir}/pkgconfig/ply-splash-graphics.pc
%{_libdir}/pkgconfig/ply-boot-client.pc
%{_libdir}/plymouth/renderers/x11*
%{_includedir}/plymouth-1
%files core-libs
%{plymouth_libdir}/libply.so.*
%{plymouth_libdir}/libply-splash-core.so.*
%{_libdir}/libply-boot-client.so.*
%dir %{_libdir}/plymouth
%files graphics-libs
%{_libdir}/libply-splash-graphics.so.*
%{_libdir}/plymouth/renderers/drm*
%{_libdir}/plymouth/renderers/frame-buffer*
%files scripts
%{_sbindir}/plymouth-set-default-theme
%{_libexecdir}/plymouth/plymouth-update-initrd
%{_libexecdir}/plymouth/plymouth-generate-initrd
%{_libexecdir}/plymouth/plymouth-populate-initrd
%files plugin-label
%{_libdir}/plymouth/label.so
%files plugin-fade-throbber
%{_libdir}/plymouth/fade-throbber.so
%files theme-fade-in
%dir %{_datadir}/plymouth/themes/fade-in
%{_datadir}/plymouth/themes/fade-in/bullet.png
%{_datadir}/plymouth/themes/fade-in/entry.png
%{_datadir}/plymouth/themes/fade-in/lock.png
%{_datadir}/plymouth/themes/fade-in/star.png
%{_datadir}/plymouth/themes/fade-in/fade-in.plymouth
%files theme-spinner
%dir %{_datadir}/plymouth/themes/spinner
%{_datadir}/plymouth/themes/spinner/*.png
%{_datadir}/plymouth/themes/spinner/spinner.plymouth
%files plugin-throbgress
%{_libdir}/plymouth/throbgress.so
%files theme-spinfinity
%dir %{_datadir}/plymouth/themes/spinfinity
%{_datadir}/plymouth/themes/spinfinity/box.png
%{_datadir}/plymouth/themes/spinfinity/bullet.png
%{_datadir}/plymouth/themes/spinfinity/entry.png
%{_datadir}/plymouth/themes/spinfinity/lock.png
%{_datadir}/plymouth/themes/spinfinity/throbber-[0-3][0-9].png
%{_datadir}/plymouth/themes/spinfinity/spinfinity.plymouth
%files plugin-space-flares
%{_libdir}/plymouth/space-flares.so
%files theme-solar
%dir %{_datadir}/plymouth/themes/solar
%{_datadir}/plymouth/themes/solar/*.png
%{_datadir}/plymouth/themes/solar/solar.plymouth
%files plugin-two-step
%{_libdir}/plymouth/two-step.so
%files theme-charge
%dir %{_datadir}/plymouth/themes/charge
%{_datadir}/plymouth/themes/charge/*.png
%{_datadir}/plymouth/themes/charge/charge.plymouth
%files plugin-script
%{_libdir}/plymouth/script.so
%files theme-script
%dir %{_datadir}/plymouth/themes/script
%{_datadir}/plymouth/themes/script/*.png
%{_datadir}/plymouth/themes/script/script.script
%{_datadir}/plymouth/themes/script/script.plymouth
%files system-theme
%changelog
* Sat Oct 13 2018 Vaughan Agrez <[email protected]> - 0.9.3-5
- Add upstream patches from Fedora
- Drop unused default-boot-duration file
- Drop groups in spec
- Drop requires on initscripts
- Drop unrecognised config switches
* Sat Jul 07 2018 Vaughan Agrez <[email protected]> - 0.9.3-4
- Drop default boot duration from /var
- Update %%post scripts
- Cull really old changelog entries
* Sun Dec 03 2017 Vaughan Agrez <[email protected]> - 0.9.3-3
- New release - 0.9.3
- Update spec & bump release
* Sun Apr 09 2017 Vaughan Agrez <[email protected]> - 0.9.3-0.8.git
- Only allow framebuffer 0 to be used (Patch0)
- Update plymouthd.defaults
- Disable plymouth-update-initrd (we don't use an initrd)
- Modify charge theme for use with FedBerry
- Change background colours
- Update 'script' theme colours (Patch1)
* Sat Feb 11 2017 Fedora Release Engineering <[email protected]> - 0.9.3-0.7.20160620git0e65b86c
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
* Mon Jun 20 2016 Ray Strode <[email protected]> - 0.9.3-0.6.git
- Fix color palette issue
- Fix splash at shutdown (if shutdown takes longer than 5 secs)
- Make sure text based splashes update terminal size when fbcon loads
* Thu Jun 16 2016 Ray Strode <[email protected]> - 0.9.3-0.5.git
- really (?) fix password prompt on text plugin
Resolves: #1344141
* Tue Jun 14 2016 Ray Strode <[email protected]> - 0.9.3-0.4.git
- fix password prompt on text plugin
Resolves: #1344141
* Wed Jun 08 2016 Ray Strode <[email protected]> - 0.9.3-0.3.git
- new release versioning scheme to be more guideliney
* Tue Jun 07 2016 Ray Strode <[email protected]> - 0.9.3-0.1.
- Update to latest git snapshot
- Fixes use after free
Related: #1342673
* Tue May 24 2016 Ray Strode <[email protected]> - 0.9.3-0.1.20160524
- Update to latest git snapshot
- Drop plymouth-generate-initrd scriptlets
* Thu Feb 04 2016 Fedora Release Engineering <[email protected]> - 0.8.9-17.2013.08.14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
* Sun Nov 15 2015 Ray Strode <[email protected]> 0.8.9-16.2013.08.14
- Fix plymouth-update-initrd script
* Mon Oct 26 2015 Ray Strode <[email protected]> 0.8.9-15.2013.08.15
- Fix updates with script and spinner themes
Resolves: #1267949
* Mon Aug 24 2015 Kalev Lember <[email protected]> 0.8.9-13.2013.08.14
- Fix a typo in Requires
* Mon Aug 24 2015 Peter Robinson <[email protected]> 0.8.9-12.2013.08.14
- Fix Requires for various libs subpackages
* Sun Aug 23 2015 Peter Robinson <[email protected]> 0.8.9-11.2013.08.14
- Use %%license
- Cleanup spec
- Move drm render driver to graphics-libs sub package
* Thu Jun 18 2015 Fedora Release Engineering <[email protected]> - 0.8.9-10.2013.08.14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Wed May 20 2015 Will Woods <[email protected]> 0.8.9-9.2013.08.14
- Fix theme override using PLYMOUTH_THEME_NAME (#1223344)
* Sat Feb 21 2015 Till Maas <[email protected]> - 0.8.9-8.2013.08.14
- Rebuilt for Fedora 23 Change
https://fedoraproject.org/wiki/Changes/Harden_all_packages_with_position-independent_code
* Sun Aug 17 2014 Fedora Release Engineering <[email protected]> - 0.8.9-7.2013.08.14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <[email protected]> - 0.8.9-6.2013.08.14
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Sat May 31 2014 Peter Robinson <[email protected]> 0.8.9-4.2013.08.15
- Move system-logos dep to graphics-libs (no use on text/serial console minimal installs)
* Thu Feb 20 2014 Ray Strode <[email protected]> 0.8.9-4.2013.08.14
- Fix splash after change in /sys/class/tty/console/active
* Thu Oct 31 2013 Ray Strode <[email protected]> 0.8.9-3.2013.08.14
- Don't timeout plymouth quit waiting
Related: #967521
* Wed Oct 16 2013 Ray Strode <[email protected]> 0.8.9-2.2013.08.14
- Drop rhgb-client compat link
* Sun Oct 06 2013 Kalev Lember <[email protected]> - 0.8.9-1.2013.08.14
- Make sure the release number compares higher than the previous builds
* Wed Aug 14 2013 Ray Strode <[email protected]> 0.8.9-0.1.2013.08.14.0
- Update to snapshot to fix system units
* Sun Aug 04 2013 Fedora Release Engineering <[email protected]> - 0.8.9-0.2014.03.26.0
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Tue Mar 26 2013 Ray Strode <[email protected]> 0.8.9-0.2013.03.26.0
- Update to snapshot to fix systemd vconsole issue
* Thu Feb 21 2013 Peter Robinson <[email protected]> 0.8.8-6
- Merge newer F18 release into rawhide
* Thu Dec 13 2012 Ray Strode <[email protected]> 0.8.8-5
- Ensure fedup gets right splash screen
Related: #879295
* Thu Nov 15 2012 Ray Strode <[email protected]> 0.8.8-4
- Drop set-default-plugin compat script
- Just use upstream update-initrd
* Fri Nov 02 2012 Ray Strode <[email protected]> 0.8.8-3
- More boot blocking fixes
Related: #870695
* Thu Nov 01 2012 Ray Strode <[email protected]> 0.8.8-2
- Fix crash when deactivating multiple times
Related: #870695
* Fri Oct 26 2012 Ray Strode <[email protected]> 0.8.8-1
- Latest upstream release
- includes systemd fixes and system update fixes
* Tue Aug 21 2012 Ray Strode <[email protected]> 0.8.7-1
- Latest upstream release
- includes systemd fixes
* Tue Aug 21 2012 Dave Airlie <[email protected]> 0.8.6.2-1.2012.07.23
- fix plymouth race at bootup breaking efi/vesa handoff.
- fix version number - its against fedora package policy to have 0.year
* Mon Jul 23 2012 Ray Strode <[email protected]> 0.8.6.2-0.2012.07.23
- One more crack at #830482 (will probably need additional fixes tomorrow)
* Mon Jul 23 2012 Tom Callaway <[email protected]> - 0.8.6.1-3
- fix bz704658 (thanks to Ian Pilcher for the patch), resolves issue where spinfinity theme
never goes idle and thus, never exits to gdm
* Sat Jul 21 2012 Fedora Release Engineering <[email protected]> - 0.8.6.1-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue Jul 10 2012 Ray Strode <[email protected]> 0.8.6.1-1
- Update to 0.8.6.1 since I mucked up 0.8.6
Resolves: #830482
* Mon Jul 09 2012 Ray Strode <[email protected]> 0.8.6-1
- Update to 0.8.6
- Fixes encrypted fs bug
Resolves: #830482
- Adds support for offline package updates
* Mon Jun 25 2012 Adam Jackson <[email protected]> 0.8.5.1-3
- Rebuild without libkms
* Wed Jun 06 2012 Ray Strode <[email protected]> 0.8.5.1-2
- Add %%{_prefix} to systemd service path
* Wed Jun 06 2012 Ray Strode <[email protected]> 0.8.5.1-1
- Update to latest release
- Ship systemd service files
- Conflict with old systemd
* Tue Apr 24 2012 Richard Hughes <[email protected]> 0.8.4-0.20120319.3
- Disable the nouveau driver as I've broken it with the new libdrm ABI
* Tue Mar 20 2012 Daniel Drake <[email protected]> 0.8.4-0.20120319.1
- Don't try to build against libdrm_intel on non-intel architectures
* Mon Mar 19 2012 Ray Strode <[email protected]> 0.8.4-0.20120319.1
- Update to latest snapshot
* Mon Mar 12 2012 Ray Strode <[email protected]> 0.8.4-0.20110810.6
- Don't require libdrm_intel on non intel arches
* Mon Feb 20 2012 Adam Williamson <[email protected]> 0.8.4-0.20110810.5
- make plymouth-scripts require plymouth (RH #794894)
* Wed Jan 25 2012 Harald Hoyer <[email protected]> 0.8.4-0.20110810.4
- install everything in /usr
https://fedoraproject.org/wiki/Features/UsrMove
* Sat Jan 14 2012 Fedora Release Engineering <[email protected]> - 0.8.4-0.20110810.3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Thu Dec 15 2011 Ray Strode <[email protected]> 0.8.4-0.20110809.3
- Change spec based on suggestion from Nicolas Chauvet <[email protected]>
to fix scriptlet error during livecd creation
Resolves: #666419
* Tue Nov 08 2011 Adam Jackson <[email protected]> 0.8.4-0.20110822.3
- Rebuild for libpng 1.5
* Fri Sep 02 2011 Ray Strode <[email protected]> 0.8.4-0.20110822.2
- Make plymouth background dark gray at the request of Mo / design
team.
* Mon Aug 22 2011 Ray Strode <[email protected]> 0.8.4-0.20110822.1
- Update to latest git snapshot
- Reintroduce accidentally dropped spinner theme and systemd integration
* Tue Aug 09 2011 Ray Strode <[email protected]> 0.8.4-0.20110809.1
- Rebuild
* Fri Mar 04 2011 Ray Strode <[email protected]> 0.8.4-0.1.20110304.1
- retry reopening tty if we get EIO
Hopefully Resolves: #681167
* Fri Feb 18 2011 Ray Strode <[email protected]> 0.8.4-0.20110419.1
- unlock tty when reopening in case it spontaenously goes bonkers
and we need to fix it up
Resolves: #655538
* Wed Feb 09 2011 Christopher Aillon <[email protected]> 0.8.4-0.20110209.2
- Fix up obsoletes typo
* Wed Feb 09 2011 Ray Strode <[email protected]> 0.8.4-0.20110209.1
- Update to latest snapshot
* Wed Feb 09 2011 Fedora Release Engineering <[email protected]> - 0.8.4-0.20101120.4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Fri Feb 04 2011 Ray Strode <[email protected]> 0.8.4-0.20101119.4
- Drop log viewer
* Sat Jan 29 2011 Ville Skyttä <[email protected]> - 0.8.4-0.20101119.3
- Dir ownership fixes (#645044).
* Fri Nov 19 2010 Ray Strode <[email protected]> 0.8.4-0.20101119.2
- Fix serial console issue eparis was seeing
* Fri Nov 19 2010 Ray Strode <[email protected]> 0.8.4-0.20101119.1
- Update to recent snapshot
* Tue Nov 02 2010 Ray Strode <[email protected]> 0.8.4-0.20101002.1
- Update to recent snapshot
* Wed Sep 01 2010 Ray Strode <[email protected]> 0.8.4-0.20100823.4
- Add more Requirse
* Thu Aug 26 2010 Ray Strode <[email protected]> 0.8.4-0.20100823.3
- Add more Requires
* Thu Aug 26 2010 Ray Strode <[email protected]> 0.8.4-0.20100823.2
- Fix plymouth-update-initrd
It's regressed to the pre-dracut version. This commit fixes that.
* Mon Aug 23 2010 Ray Strode <[email protected]> 0.8.4-0.20100823.1
- Update to newer pre-release snapshot of 0.8.4
- Generate separate initrd in /boot
* Sat Aug 21 2010 Ray Strode <[email protected]> 0.8.4-0.20100821.1
- Update to newer pre-release snapshot of 0.8.4
- Fix bizarre-o animation during boot up.
* Fri Jul 23 2010 Ray Strode <[email protected]> 0.8.4-0.20100723.1
- Update to pre-release snapshot of 0.8.4
* Thu Jan 14 2010 Ray Strode <[email protected]> 0.8.0-0.20100114.2
- Don't link plymouthd against libpng either
* Thu Jan 14 2010 Ray Strode <[email protected]> 0.8.0-0.20100114.1
- Make it possible to do a basic plymouth installations without
libpng
* Thu Jan 07 2010 Ray Strode <[email protected]> 0.8.0-0.2009129.2
- Drop nash dep