Plymouth does not display the graphical boot splash
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Plymouth |
Unknown
|
Medium
|
|||
plymouth (Gentoo Linux) |
Fix Released
|
Medium
|
|||
plymouth (Ubuntu) |
Confirmed
|
Medium
|
Unassigned |
Bug Description
When booting from Ubuntu 14.10 daily-live image from 17th September 2014 Plymouth does display the graphical boot splash. However, once Ubuntu 14.10 is installed Plymouth does not display the graphical boot splash while the system is booting. Instead just a black screen is present up until Unity Greeter is loaded.
ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: plymouth 0.9.0-0ubuntu4
ProcVersionSign
Uname: Linux 3.16.0-14-generic i686
ApportVersion: 2.14.7-0ubuntu2
Architecture: i386
BootLog: Error: [Errno 2] No such file or directory: '/var/log/boot.log'
CurrentDesktop: Unity
Date: Wed Sep 17 21:55:35 2014
DefaultPlymouth: /lib/plymouth/
InstallationDate: Installed on 2014-09-17 (0 days ago)
InstallationMedia: Ubuntu 14.10 "Utopic Unicorn" - Alpha i386 (20140917)
MachineType: IBM 2668Q1G
PccardctlIdent:
Socket 0:
no product info available
PccardctlStatus:
Socket 0:
no card
ProcCmdLine: BOOT_IMAGE=
ProcFB: 0 radeondrmfb
ProcKernelCmdLine: BOOT_IMAGE=
SourcePackage: plymouth
TextPlymouth: /lib/plymouth/
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 08/21/2006
dmi.bios.vendor: IBM
dmi.bios.version: 1YET65WW (1.29 )
dmi.board.name: 2668Q1G
dmi.board.vendor: IBM
dmi.board.version: Not Available
dmi.chassis.
dmi.chassis.type: 10
dmi.chassis.vendor: IBM
dmi.chassis.
dmi.modalias: dmi:bvnIBM:
dmi.product.name: 2668Q1G
dmi.product.
dmi.sys.vendor: IBM

|
#31 |

|
#32 |
if you wrap the entire added lines in
if (seat->terminal != NULL) {
.... all the lines here ...
}
does it also continue to work?

|
#33 |
Hi,
yes, it still works. I could reproduce the problem on a different hardware (Intel 855GM, i915) but only when using uvesafb (nomodeset on cmdline and uvesafb configuration in /etc/initramfs/
diff --git a/src/libply-
index 2ac8bf7..0f533d5 100644
--- a/src/libply-
+++ b/src/libply-
@@ -102,6 +102,8 @@ add_text_displays (ply_seat_t *seat)
{
ply_
+ if (seat->terminal != NULL)
+ {
if (!ply_terminal_
{
if (!ply_terminal_open (seat->terminal))
@@ -115,6 +117,12 @@ add_text_displays (ply_seat_t *seat)
ply_trace ("adding text display for terminal %s",
+ }
+ else
+ {
+ ply_trace(
+ }
+
display = ply_text_
ply_
}
From the log file:
[ply-seat.c:123] add_text_
So seat->terminal is NULL which isn't checked in ply_terminal_
Regards,
Lukas

|
#34 |
So the question is why seat->terminal can be NULL.
A seat is created in create_
Digging through the log file ...
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
... we can see that a frame buffer device is found and device is initialized but it doesn't have a seat tag so create_
Then non-graphical seat for /dev/tty7 is created.
[ply-device-
[ply-device-
[...]
And after some time (in run level S and not in the initramfs) a seat for /dev/fb0 with no terminal attached (-> seat->terminal == NULL).
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-renderer.
[./plugin.c:259] create_
[./plugin.c:515] query_device:32 bpp (8, 8, 8, 8) with rowstride 3200
[./plugin.c:275] initialize_
[ply-renderer.

|
#35 |
Created attachment 101817
plymouth debug log file for 0.9.0 (check for seat->terminal != NULL)

|
#36 |
Hi,
I've also tried plymouth with seat->terminal != NULL and the seat patch from Debian:
diff --git a/src/libply-
index dbc203d..e9f8519 100644
--- a/src/libply-
+++ b/src/libply-
@@ -313,7 +313,7 @@ create_
/* We only care about devices assigned to a (any) seat. Floating
* devices should be ignored.
*/
- if (udev_device_
+ if (true)
{
node = udev_device_
Now a seat is immediately created for /dev/fb0 because a frame buffer device is found but the terminal for that device is still NULL.
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-device-
[ply-renderer.
[./plugin.c:259] create_
[./plugin.c:515] query_device:32 bpp (8, 8, 8, 8) with rowstride 3200
[./plugin.c:275] initialize_
[ply-renderer.
[ply-seat.c:80] add_pixel_
[ply-seat.c:123] add_text_
Regards,
Lukas

|
#37 |
Created attachment 101818
plymouth debug log file for 0.9.0 (check for seat->terminal != NULL and udev seat always true)

|
#38 |
Is there anything I can do to help you resolving that issue? I could also send you hardware and a preinstalled Debian.

|
#39 |
Hey, sorry for the slow reply with this. So I think what's probably happening is device_
I've pushed this commit to master:
http://
to try to handle the NULL terminal case better.
There's more to the story though. device_
1) There may be a case where no video device has boot_vga, I guess, in which case a terminal won't ever get opened and so password input won't work
2) if conceptually, a seat is a "monitor and a keyboard" then the abstraction is just wrong.
So I need to rework this a bit...

|
#46 |
Hi all, I'm using plymouth in my boot process, however plymouth-0.9.0 fail to show splash theme (I'm using solar). Reverting to 0.8.8-r5 makes things work again.
(poweroff screen never worked, but this is another issue :) )
I'm using systemd-215-r1, linux (vanilla) 3.15.6 sys-kernel/
COnfiguration is done thru genkernel.conf:
# Installs, or not, plymouth into the initramfs. If "splash" will be
# passed at boot, plymouth will be activated.
PLYMOUTH="yes"
# Embeds the given plymouth theme into the initramfs.
PLYMOUTH_
boot params:
root=/dev/
Reproducible: Always
Portage 2.2.10 (default/
=======
System uname: Linux-3.
KiB Mem: 8094864 total, 4963376 free
KiB Swap: 8386556 total, 8386556 free
Timestamp of tree: Sat, 19 Jul 2014 14:15:01 +0000
ld ld di GNU (GNU Binutils) 2.24
app-shells/bash: 4.2_p47
dev-java/
dev-lang/python: 2.7.7, 3.2.5-r4, 3.3.5, 3.4.1
dev-util/cmake: 2.8.12.2-r1
dev-util/pkgconfig: 0.28-r1
sys-apps/
sys-apps/openrc: 0.12.4
sys-apps/sandbox: 2.6-r1
sys-devel/autoconf: 2.13, 2.69
sys-devel/automake: 1.11.6, 1.12.6, 1.14.1
sys-devel/binutils: 2.24-r3
sys-devel/gcc: 4.8.3
sys-devel/
sys-devel/libtool: 2.4.2-r1
sys-devel/make: 4.0-r1
sys-kernel/
sys-libs/glibc: 2.19-r1
Repositories: gentoo hacking-gentoo mysql overlay
Installed sets: @kde-4.13
ACCEPT_
ACCEPT_LICENSE="* -@EULA"
CBUILD=
CFLAGS=
CHOST="
CONFIG_
CONFIG_
CXXFLAGS=
DISTDIR=
FCFLAGS="-O2 -pipe"
FEATURES=
FFLAGS="-O2 -pipe"
GENTOO_MIRRORS="http://
LANG="it_IT.utf8"
LDFLAGS="-Wl,-O1 -Wl,--as-needed"
MAKEOPTS="-j4"
PKGDIR=
PORTAGE_
PORTAGE_

|
#47 |
Hi Fabio,
I suppose genkernel-next can do a debug or verbose log of what's happening during the execution of the initramfs. I'm afraid I have no idea how. I use dracut, with the solar theme and plymouth 0.9.0 and works for me.
Please provide this debug log.
Cheers
Enrico

|
#48 |
I am also experiencing plymouth-0.9.0 not showing splash nor asking cryptroot password at bootup. initramfs built with dracut-038. Everything's been working dandy on plymouth-0.8.8 for months.

|
#49 |
CC-ing lxnay just in case the bug is in genkernel-next and not in plymouth (do you use playmouth 9 with genkernel-next btw?).
@Leho can you compile dracut and plymouth with debug USE flag enabled and post debug logs for both please? For me it works very well and I have crypto as well. Also what's your graphic card and which drivers are you using for it (KMS vs. proprietary drivers vs (u)vesafb vs simple frambeuffer). Please share some more details.
For reference I test with Intel KMS, no FB since KMS provides fb as well.

|
#50 |
(In reply to Enrico Tagliavini from comment #3)
>
> @Leho can you compile dracut and plymouth with debug USE flag enabled and
> post debug logs for both please? For me it works very well and I have crypto
> as well. Also what's your graphic card and which drivers are you using for
> it (KMS vs. proprietary drivers vs (u)vesafb vs simple frambeuffer). Please
> share some more details.
>
> For reference I test with Intel KMS, no FB since KMS provides fb as well.
I run dracut off git checkout, although recent versions I guess are stable enough with systemd to be run off portage.
E7440 laptop, standard Intel Haswell gfx. Regular KMS and no other magic involved. Kernel is 3.15.8, fresh off the stove.

|
#51 |
This bug seems to be related:
https:/
I confirm that 0.9.0 does not work here as well (Sabayon, genkernel-next), while 0.8.8 did (and 0.8.9_pre1 from sabayon-distro).

|
#40 |
We are looking at this at https:/

|
#52 |
(In reply to Fabio Erculiani from comment #5)
> This bug seems to be related:
> https:/
>
> I confirm that 0.9.0 does not work here as well (Sabayon, genkernel-next),
> while 0.8.8 did (and 0.8.9_pre1 from sabayon-distro).
Thank you Fabio I CCed to the bug if a solution comes up I'll look for a backport or version bump.
@Leho about the comment you posted on the freedesktop bugzilla: "Still doesn't work :/" is not going to help Ray to solve the problem. Please post debug logs and information about you setup on the freedesktop bugzilla or just avoid posting useless comments, thanks.

|
#53 |
"Useless" is a subjective conclusion. The bug on FDO had been inactive for two weeks. I'm pretty sure Ray gets *some* use out of the link to our discussion here, information about a testing result with very recent code, and a sign that there's actual interest in the bug getting resolved.
True, I didn't post debug logs. They were too difficult to obtain with the way the bug manifests itself (output just stops, with no keyboard controls available) and I don't have the time resource available right now to go deeper into it. When there's a choice between giving something or nothing at all, life has long proven giving even a small output piece has a higher % change of generating success than just sitting quietly in the corner.
I'm sure you know what you're doing and so do I, so I'd be happy to leave this topic at that. If all the smart people involved aren't already able to figure the whole thing out soon, I'll probably be able to post my debug logs within the next week. Not being lazy or uncooperative at all, it's simply that paying customers need a lot attention.

|
#54 |
(In reply to Leho Kraav (:macmaN @lkraav) from comment #7)
> "Useless" is a subjective conclusion. The bug on FDO had been inactive for
> two weeks. I'm pretty sure Ray gets *some* use out of the link to our
> discussion here, information about a testing result with very recent code,
> and a sign that there's actual interest in the bug getting resolved.
No useless is not subjective at all. You added no information to the bug to be solved, and that's ok don't get me wrong. If you don't have time to post debug logs, fine. But than why the ":/"? This just makes it looking like a provocation to me, which lead me to the "useless" conclusion.
Anyway yes, let's leave the topic there.

|
#41 |
I am getting this crash as well. For me, it turned out it is triggered by my kernel boot parameters. I have console=ttyS1, which is a serial terminal, then I also had plymouth.
Perhaps there should be some logic added to handle this case.

|
#42 |
Hmm. I see now that if there is a serial console, then plymouth automatically does text instead of trying to use the framebuffer, so nevermind.

|
#43 |
Ray, have you thought about this (comment 8) any more? I've dug a little deeper and am understanding this better now. With a little guideance, I might be able to come up with something to get this fixed.
My particular case is using a framebuffer driver on an embedded system, so it does not have the boot_vga attribute.
I patched ply-device-
I also came across this at http://
> If you are writing a bootup splash tool (like Plymouth), then ignore all seat information completely and make use of all input devices and graphics cards as they become available. Stop using them as soon as the first X server starts up.
I also had an issue with the udev seat rules not being copied to the initrd and causing plymouth to fallback to text mode. Perhaps we should take this advice and not look at the seat tag and it will fix very many problems.

Martin Wimpress (flexiondotorg) wrote : | #1 |
- BootDmesg.txt Edit (58.4 KiB, text/plain; charset="utf-8")
- CurrentDmesg.txt Edit (620 bytes, text/plain; charset="utf-8")
- Dependencies.txt Edit (3.6 KiB, text/plain; charset="utf-8")
- EtcDefaultGrub.txt Edit (1.2 KiB, text/plain; charset="utf-8")
- Lspci.txt Edit (11.7 KiB, text/plain; charset="utf-8")
- Lsusb.txt Edit (385 bytes, text/plain; charset="utf-8")
- ProcCpuinfo.txt Edit (631 bytes, text/plain; charset="utf-8")
- ProcEnviron.txt Edit (106 bytes, text/plain; charset="utf-8")
- ProcInterrupts.txt Edit (1.3 KiB, text/plain; charset="utf-8")
- ProcModules.txt Edit (2.3 KiB, text/plain; charset="utf-8")
- UdevDb.txt Edit (103.5 KiB, text/plain; charset="utf-8")
- UdevLog.txt Edit (245.7 KiB, text/plain; charset="utf-8")

Launchpad Janitor (janitor) wrote : | #2 |
Status changed to 'Confirmed' because the bug affects multiple users.
Changed in plymouth (Ubuntu): | |
status: | New → Confirmed |

Ivan Larionov (xeron-oskom) wrote : | #3 |
I'm experiencing this issue as well (nouveau). Removing of "vt.handoff=7" from cmdline fixes it.

Ivan Larionov (xeron-oskom) wrote : | #4 |
Also bug 1343841 looks like the same.

theghost (theghost) wrote : | #5 |
Also have this issue. Need to press a key to enable screen during boot.

Elfy (elfy) wrote : | #6 |
See the same here in Xubuntu.
removing vt.handoff=7 get 1 line of text, low then high resolution then plymouth
as post #5 - any key leads to plymouth showing

|
#55 |
It is also true that the way plymouth handles logging and debug logging is terrible: no actual way to log the damn thing to a file, little to no logging at all.

|
#56 |
(In reply to Fabio Erculiani from comment #9)
> It is also true that the way plymouth handles logging and debug logging is
> terrible: no actual way to log the damn thing to a file, little to no
> logging at all.
I got quite the opposite impression to be honest. Yes it is messy as hell, since it is 100% undocumented and likely change from release to release, but with dracut I can debug to file with plymouth.debug. This was quite long time ago, so take my words with a grain of salt, but I'm 100% sure I got debug output to file with plymouth 0.9.0. You can also change the file location with plymouth.

Ubuntu QA Website (ubuntuqa) wrote : | #7 |
This bug has been reported on the Ubuntu ISO testing tracker.
A list of all reports related to this bug can be found here:
http://
tags: | added: iso-testing |

|
#57 |
Hi everyone,
I'm not sure if I have the same problem as Fabio had, but plymouth 0.9.0 and 0.8.8-r4 don't work for me. "plymouthd; plymouth --show-splash" do nothing.
I did everything according to the instructions at the gentoo wiki.
Kernel command line: "BOOT_IMAGE=
plymouth-0.9.0, use "debug gtk libkms pango"
genkernel-next-55, use "plymouth"
systemd-215-r3, use "acl firmware-loader gudev introspection kmod pam policykit python seccomp"
Video: i915
dmesg: http://
Changed in plymouth (Ubuntu): | |
importance: | Undecided → Medium |
importance: | Medium → High |

Esa Peuha (esa-peuha) wrote : | #8 |
I'm seeing this too, and I find it very annoying, because the screen goes blank long enough to make my monitor power down, and it takes over ten seconds to power back up when the video signal is returned.
So, I added "plymouth.

Esa Peuha (esa-peuha) wrote : | #9 |

|
#58 |
Has anything surfaced here lately about how to get plymouth-0.9.0 working? Alternatively, I may look for a way to get "tribar" theme going on 0.8.8.

|
#59 |
Created attachment 395328
early-boot-
It is a complex bug involving udev (in the intramfs) and the plymouth code...
There are a couple of patches/fixes but none of them works properly actually (for me at least)...
The plymouth-9999 has some of the patches incorporated but it doesn't work too at present.
Here is a thread that discusses one of the problems (at least mine) - the new ply seat handling in plymouth...
http://
For reference my system is:
Grub kernel entry:
kernel /kernel-
plymouth-0.9.0, use "debug gtk libkms pango"
genkernel-next-60, use "cryptsetup gpg iscsi plymouth"
systemd-218-r2, use "acl cryptsetup curl gcrypt gudev http idn introspection kmod lzma pam policykit python qrcode seccomp ssl"
x11-drivers/
Video: NVIDIA Corporation GF104 [GeForce GTX 460]
I am attaching a part of the early boot debug log of plymouth...

|
#60 |
@PhobosK seems the seat tag is missing from your fb0 hence plymouth ignores it. Quoting (and trimming) your log:
create_
create_
create_
So it is pretty normal you see no splash. Can you unpack your initramfs and double check the seats rules are included? In the case of dracut that was a bug and it has been fixed. Are you currently using dracut or genkernel to generate the initramfs?
To me, at least about your case (which seems different from what others reported on this bug), is not a plymouth bug. Something is going wrong in the initramfs and th device is not tagged as a seat.

|
#61 |
Yeah I know why my plymouth is not working (the seat problem) :)
Others like @Alexander seem to have a problem with not initialized devices etc etc...
Its a complex problem involving udev/systemd and plymouth code itself, so debugging and fixing is very time consuming....
As a whole one of the important and leading problems is the initrd's created...
genkernel-next-60
-----------------
Doesn't include any seat udev rules in initramfs. I added them manually with everything needed but still plymouth 0.9.0 (and git master 9999) got problems with the console input and other problems with seat tagging again. I applied some patches gotten from Ubuntu (http://
dracut-040-r3
-------------
As for the dracut I tested 040-r3 version but it lacks support for uvesafb's user helper v86d, and though I managed to include it in dracut's initramfs, I couldn't manage to add statically to the img file the nodes /dev/zero, /dev/mem and /dev/tty (needed by the helper to run very early in boot - before any udev are settled), so I get a frozen system immediately after boot... That is why I cannot tell if dracut works with plymouth BUT still it is not the gentoo way of creating initramfs img, so plymouth in portage cannot rely on using/working only with dracut....
Since all these tests consume a lot of time I removed dracut and reverted back to plymouth-0.8.8-r5 and now everything is fine...
BTW genkernel-next lacks support for uvesafb too, so I tweaked some of the source to have it...

|
#62 |
Hi All,
I tried to include seat rules in genkernel and suddenly the splash screen started to work (at startup, still problems on exit)
Basically the system has:
sys-kernel/
sys-boot/
sys-apps/
(intel graphic card)
I tweaked
/usr/share/
adding the rule for seats, that is:
udev_
"
(71-seat.rules)
and now plymouth-0.9.0 behaves like 0.8.8-r5 (it shows startup screen at least, the shutdown is still missing but this probably is another issue, dunno.
If needed, I can provide other details and debug logs, just let me know.
Thanks.

|
#63 |
Ok since the original reporter confirmed adding the seat rules to the initramfs generated with genkernel-next fixes the problem I'm assigning this bug to the genkernel-next maintainer.

Da Xue (daxue) wrote : | #10 |
For me, this seems to be a kernel 3.16 bug. I can get 14.04.2 LTS to display the splash by using the 3.13 kernel. Once I boot to the 3.16 kernel, i lose the splash. I made a bug in the kernel meta package.
https:/

Esa Peuha (esa-peuha) wrote : | #11 |
Just because the kernel does something differently doesn't mean it's a kernel bug. There's clearly a relevant bug in plymouth that I reported to plymouth upstream two months ago ( https:/

hectorsales (hectorvicente30) wrote : | #12 |
Same here, after upgrade recently from Ubuntu version 14.04.1 to 14.04.2 version( LTSEnablementSt
http://
Regards

D. Charles Pyle (dcharlespyle) wrote : | #13 |
Seeing the same in Trusty 14.04 LTS with kernel 3.16. I am now at 3.16.0-34 and still see the same behavior. Every fix I have tried fails to make it work as it did work in as late as 3.14 kernels, and did work in all the 3.13 series. I think that the problem is kernel configuration in the 3.16 kernels. I do not know about 3.15 kernels as none of those I attempted to use would boot my system properly at all.
I have yet to build my own 3.16 kernels to try to track this down but I have noticed that one of the differences between the 3.13 and 3.14 series kernels, and the 3.16 series kernels, is that CONFIG_
I am using a Radeon HD 5750 card with dual, Dell S2440L monitors.
Any further information needed, let me know. I am going to attempt to use apport to send up my configuration, and so forth, in a couple minutes. Last time I tried it failed in another bug.

D. Charles Pyle (dcharlespyle) wrote : | #14 |
Tried and apport-collect failed again. Just let me know if any other information is necessary and I will do what I can to provide it to help track this down.

D. Charles Pyle (dcharlespyle) wrote : | #15 |
Per comment #3 I can confirm that manual deletion of $vt_handoff or vt_handoff=7 from the grub kernel line allows the plymouth splash screen to display on a 3.16 series kernel. Changing vt_handoff=1 to vt_handoff=0 in the /etc/grub.
Whatever is going on there with vt_handoff is affecting plymouth splash screen only when running a 3.16 series kernel. It does not affect 3.13 or 3.14 series kernels. Hope this additional information helps track down this bug. In my configuration, leaving $vt_handoff in the kernel line causes both monitors to shut down with no signal from the video card until it reaches the lightDM/Unity screen while also running on a 3.16 series kernel, so this bug is more severe than just a cosmetic issue.

|
#64 |
plymouth-0.9.2 based initramfs seems to work perfectly again. any objections to obsoleting this bug?

|
#65 |
Not really sure about this. According to this thread, the problem lies more into genkernel-next than in plymouth, and looking at genkernel-next github repo i see no changes applied.
Does anyone has a prior not working setup fixed by plymouth-0.9.2?
I will be able to test this only later...
If genkernel-next still needs to be fixed like in previuos comments, I can perform a pull request, just let me know.
Anyway, I'll try with plymouth 0.9.2 in a short while, it will be great to find it fixed my issue :)
no longer affects: | plymouth |

|
#66 |
I checked today with sys-boot/
After applying a fix from commment #c16, I have both integrated intel gfx and pci-e nvidia (using separate kernels to boot using different gfx driver) I boot the system with i915 Intel, nouveau and proprietary nvidia (if I'm correct the last one is using vesa for showing plymouth instead of kms) with the fix plymouth is showing on boot, but not at shutdown and restart. I also noticed that with proprietary nvidia i'm totaly unable to provide password for encryptyd volumes which makes plymouth unusable to boot the system, on kms drivers providing passwords via plymouth for encrypted volumes is working nice.
I just wonder why it's working well for some of you?

|
#67 |
Hi,
with 71-seat.rules included as in comment #16 the solar splash appears on my system (VirtualBox and genkernel-next-63) too, but - despite loglevel=3 and quiet - I get
* a blinking cursor
* random: nonblocking pool is initialized
* vboxguest kernel module messages
than most of the screens gets blacked out. The sun at the right lower border remains, some white dots (stars?) are splattered on the black area and the progress bar in the middle continues to run.
I tried a lot of things to get the kernel silent completely but to no avail.
Finally I get a correct agetty with /etc/issue displayed and all of the splash disappeared as it should be. I don't boot into the graphical.target, since I mostly work in a ssh session from my host.
BTW: there seems no more commits on genekernel-next's Github repo :-O

|
#68 |
Created attachment 407284
Broken plymouth boot
Screenshot of the broken plymouth

|
#69 |
(In reply to Heiko Schäfer from comment #22)
> Created attachment 407284 [details]
> Broken plymouth boot
>
> Screenshot of the broken plymouth
This is another bug, unrelated to the current one. In your case it looks like either the vbox framebuffer driver is going mad or plymouth is very confused when dealing with it.
My kernel is not silent as well when booting, and I keep it at is on purpose. Still I can't see those messages if I have plymouth enabled, I have to unhide them. You don't need a silent kernel to have the splash screen. You have something else wrong happening and, by accident, you can see under the splash screen. I advise you to get in touch with plymouth upstream and possibly also with vbox devs.

pst007x (turone) wrote : | #16 |
This bug also affects Ubuntu 15.10
Kernel 4.2.0-17-generic
NVIDIA V355.11 (open-source)
Boot screen only shows logo and black background, overlayed with text.
Tried usual fixes, changing screen resolution, etc, but no change

|
#70 |
I just spend over a day hunting down the problem of the splash not showing up, only to find that adding the single line with th seat.rules solves it (for me). This is now broken for over a year, if this isn't conidered a proper fix, could we at least get a ewarn/einfo of some sort to tell people about this?

|
#71 |
Meanwhile, I created a pull request to fix this issue, even if it seems that github repo is not very active..

Simon Quigley (tsimonq2) wrote : | #17 |
Confirmed in Lubuntu Xenial Xerus Alpha 2.

jiaowen520li (jiaowen520li) wrote : | #18 |
Confirmed in Ubuntu Kylin Xenial Alpha 2.
Changed in plymouth (Ubuntu): | |
importance: | High → Medium |

|
#44 |
*** Bug 87993 has been marked as a duplicate of this bug. ***

|
#72 |
Cutted a new release with the patch: https:/

Phill Whiteside (phillw) wrote : | #19 |
Present in Beta 2

sudodus (nio-wiklund) wrote : | #20 |
I can confirm that we have this problem in Lubuntu Beta 2 version dated 20160323. It is also affecting 'Encrypted home': the passphrase is not displayed, there is nothing but a blue screen.
But it is not BSOD, because the system is alive underneath ;-)

sudodus (nio-wiklund) wrote : | #21 |
Sorry, I mean 'Encrypted disk'. The passphrase is not displayed, but you can type it in and finish with the enter key, and after that arrive at the login screen of Lubuntu.

Wise Melon (wise-melon-deactivatedaccount) wrote : | #22 |
This bug is also present in Ubuntu GNOME 16.04 Beta 2.

|
#73 |
The new version is available in the sabayon overlay

Ivan S. (ivan-sushik) wrote : | #23 |
Same thing on Xubuntu 15.10.

Martin Wimpress (flexiondotorg) wrote : | #24 |
If you are seeing this issue in VirtualBox then it is the intended behaviour. The VirtualBox graphics device was blacklisted from Plymouth more than a year ago.

sudodus (nio-wiklund) wrote : | #25 |
No it is in real computers, for example my Toshiba laptop
http://
Lubuntu has only a dark blue screen (not the text mode Plymouth text and dots), only a dark blue screen, no text at all. The bug affects i386 and amd64, bios mode and uefi mode.

sudodus (nio-wiklund) wrote : | #26 |
I should add that the text messages are there, and can be seen if you boot without the boot options 'quiet splash'. I think the splash option makes the difference.

sudodus (nio-wiklund) wrote : | #27 |
Lubuntu Xenial i386 desktop - live session:
Without the boot option splash, the text 'Please remove the installation medium, then press ENTER'.
Otherwise it is not seen, and the user gets the impression that the computer does not poweroff or reboot. I think that several different problems will be solved, when this bug is squashed,

Søren Weber (soren-jido) wrote : | #28 |
I have also seen this (as in #26) for Kubuntu 16.04 upgraded from 14.04.4 on HP EliteBook 2560p.
I did not see this on Lenovo X1 Carbon upgraded from Kubuntu 15.10.

David (karonzon) wrote : | #29 |
I'm experienceing the same bug as mentioned from comments #25 onwards with Lubuntu 16.04 i386. The PC is an eMachines EL1600. This could be related to the kernel. When I was running Lubuntu 14.04 with the 3.13 kernel, Plymouth worked as it should. When I updated the kernel to 3.16 a similar bug with the Plymouth theme was exprienced (basically half the screen being displayed) and that was fixed when I went back to the 3.13 kernel.

|
#74 |
amd64 stable

|
#75 |
x86 stable

|
#76 |
ppc stable

|
#77 |
NOTE: I have plymouth working using openrc. A stripped seat.rules to ensure /dev/fb0 has a seat tag is all that is needed
emerge plymouth dracut -va
These are the packages that would be merged, in order:
Calculating dependencies... done!
[ebuild R ] sys-boot/
[ebuild R ] sys-kernel/

|
#78 |
(In reply to jon R-B from comment #31)
> NOTE: I have plymouth working using openrc. A stripped seat.rules to ensure
> /dev/fb0 has a seat tag is all that is needed
>
> emerge plymouth dracut -va
>
> These are the packages that would be merged, in order:
>
> Calculating dependencies... done!
> [ebuild R ] sys-boot/
> static-libs -debug -gdm" 0 KiB
> [ebuild R ] sys-kernel/
> -systemd" 274 KiB
Hi, can you elaborate a bit further on this fix? I'm not using dracut. Many thanks!

|
#79 |
I just created the file /lib/udev/
ACTION=="remove", GOTO="seat_end"
TAG=="uaccess", SUBSYSTEM!="sound", TAG+="seat"
SUBSYSTEM=="sound", KERNEL=="card*", TAG+="seat"
SUBSYSTEM=="input", KERNEL=="input*", TAG+="seat"
SUBSYSTEM=
SUBSYSTEM=="drm", KERNEL=
SUBSYSTEM=="usb", ATTR{bDeviceCla
LABEL="seat_end"
And reran genkernel-next. It is now working with OpenRC.
I just cut out the first part of the systemd 71-seat.rules file, it might be possible to slim it down to just the fb line.

|
#80 |
Dear Maintainer (or who is mainly involved in this stable request),
This is an auto-generated message that will move the current component to the new component Stabilization.
To ensure that the stabilization will proceed correctly, please fill the fields "Atoms to stabilize" and "Runtime testing required" as described here:
https:/

|
#81 |
Remaining arches should jump to bug 603482

i2000s (i2000s) wrote : | #30 |
Not showing the splash screen after I reinstalled Ubuntu GNOME 16.04.2.

|
#45 |
-- GitLab Migration Automatic Message --
This bug has been migrated to freedesktop.org's GitLab instance and has been closed from further activity.
You can subscribe and participate further through the new bug through this link to our GitLab instance: https:/
Changed in plymouth: | |
importance: | Unknown → Medium |
Changed in plymouth (Gentoo Linux): | |
importance: | Unknown → Medium |
status: | Unknown → Fix Released |
Created attachment 101794
plymouth debug log file for 0.9.0 (unpatched)
Hi,
I recently upgraded to plymouth 0.9.0 on Debian Sid and plymouth stopped working.
I'm using the following setup:
- Linux 3.14.7 (linux- image-3. 14-1-686- pae 3.14.7-1) 1280x800- 32 scroll=ywrap)
- plymouth 0.9.0 (plymouth 0.9.0-3)
- uvesafb with AMD Radeon E6760 Embedded (uvesafb mode_option=
$ cat /etc/plymouth/ plymouthd. conf
# Administrator customizations go in this file
[Daemon]
Theme=fade-in
ShowDelay=1
It's a clean installation with nothing more than a basic Debian Sid and plymouth on top. plymouth 0.8.8 worked but 0.9.0 doesn't. I've attached the log file that maybe could shed some light on the matter. It's rather short so I believe plymouthd exits prematurely.
I bisected the problem and I believe the following commit causes a regression on my setup:
commit 7e594f72550d5ee b02507ade602d7f 95391e77ac
Author: Ray Strode <email address hidden>
Date: Thu Mar 6 14:42:16 2014 -0500
seat: make sure to open terminal when adding text displays
If we have a pixel display, the renderer will handle opening the
associated terminal. but if we don't have a pixel display, something
needs to open the terminal.
This commit adds code to do that.
diff --git a/src/libply- splash- core/ply- seat.c b/src/libply- splash- core/ply- seat.c splash- core/ply- seat.c splash- core/ply- seat.c text_display_ t *display;
index 541b29e..2ac8bf7 100644
--- a/src/libply-
+++ b/src/libply-
@@ -102,6 +102,19 @@ add_text_displays (ply_seat_t *seat)
{
ply_
+ if (!ply_terminal_ is_open (seat->terminal)) get_name (seat->terminal)); get_name (seat->terminal)); display_ new (seat->terminal); list_append_ data (seat-> text_displays, display);
+ {
+ if (!ply_terminal_open (seat->terminal))
+ {
+ ply_trace ("could not add terminal %s: %m",
+ ply_terminal_
+ return;
+ }
+ }
+
+ ply_trace ("adding text display for terminal %s",
+ ply_terminal_
+
display = ply_text_
ply_
}
If I revert that commit on top of 0.9.0 plymouth works again.
Regards,
Lukas