* Splashscreen using psplash
@ 2013-04-23 12:03 Andreas Enbacka
2013-04-23 12:08 ` Gary Thomas
2013-04-23 12:09 ` Burton, Ross
0 siblings, 2 replies; 7+ messages in thread
From: Andreas Enbacka @ 2013-04-23 12:03 UTC (permalink / raw)
To: yocto
[-- Attachment #1: Type: text/plain, Size: 700 bytes --]
Hello,
I am creating a custom image based on core-image-sato, with a custom splash
screen (using psplash). I have been able to replace the default yocto
splashscreen in my image, however, my question is whether it is possible to
hide the initial console output text displayed on the screen prior to
showing the splashscreen? Currently most of the boot process is completed
at the stage when the splash screen is being displayed on screen. This is
because the image should be used as part of an embedded device, and the
end-user should not see any traces of the underlying linux distro.
Any info would be greatly appreciated.
Best regards,
Andreas Enbacka
[-- Attachment #2: Type: text/html, Size: 2867 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
2013-04-23 12:03 Splashscreen using psplash Andreas Enbacka
@ 2013-04-23 12:08 ` Gary Thomas
2013-04-23 12:09 ` Burton, Ross
1 sibling, 0 replies; 7+ messages in thread
From: Gary Thomas @ 2013-04-23 12:08 UTC (permalink / raw)
To: yocto
On 2013-04-23 06:03, Andreas Enbacka wrote:
> Hello,
>
> I am creating a custom image based on core-image-sato, with a custom splash screen (using psplash). I have been able to replace the default yocto splashscreen in my image,
> however, my question is whether it is possible to hide the initial console output text displayed on the screen prior to showing the splashscreen? Currently most of the boot
> process is completed at the stage when the splash screen is being displayed on screen. This is because the image should be used as part of an embedded device, and the end-user
> should not see any traces of the underlying linux distro.
>
> Any info would be greatly appreciated.
You could disable the [framebuffer] console directly in the
kernel (CONFIG_FRAMEBUFFER_CONSOLE). With this disabled, Linux
will leave whatever was in the framebuffer (possibly a splash
put there by your bootstrap).
I've done this where U-Boot put up a splash image that was the
same as the psplash one so there was no change on the screen
during the boot process until it was completely running.
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
2013-04-23 12:03 Splashscreen using psplash Andreas Enbacka
2013-04-23 12:08 ` Gary Thomas
@ 2013-04-23 12:09 ` Burton, Ross
2013-04-23 12:29 ` Andreas Enbacka
1 sibling, 1 reply; 7+ messages in thread
From: Burton, Ross @ 2013-04-23 12:09 UTC (permalink / raw)
To: Andreas Enbacka; +Cc: yocto
On 23 April 2013 13:03, Andreas Enbacka <aenbacka@gmail.com> wrote:
> I am creating a custom image based on core-image-sato, with a custom splash
> screen (using psplash). I have been able to replace the default yocto
> splashscreen in my image, however, my question is whether it is possible to
> hide the initial console output text displayed on the screen prior to
> showing the splashscreen? Currently most of the boot process is completed
> at the stage when the splash screen is being displayed on screen. This is
> because the image should be used as part of an embedded device, and the
> end-user should not see any traces of the underlying linux distro.
Passing "quiet" to the kernel (APPEND+="quiet" in local.conf will do
it for testing) should stop the majority of the text. A full
splash-from-bootloader is possible if you have a bootloader that
displays the image, and then a silent kernel from there.
Ross
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
2013-04-23 12:09 ` Burton, Ross
@ 2013-04-23 12:29 ` Andreas Enbacka
2013-04-23 12:34 ` Gary Thomas
0 siblings, 1 reply; 7+ messages in thread
From: Andreas Enbacka @ 2013-04-23 12:29 UTC (permalink / raw)
To: 'Burton, Ross'; +Cc: yocto
Hello,
Thanks a lot for info, I will try with that.
//Andreas
-----Original Message-----
From: Burton, Ross [mailto:ross.burton@intel.com]
Sent: 23. huhtikuuta 2013 15:09
To: Andreas Enbacka
Cc: yocto@yoctoproject.org
Subject: Re: [yocto] Splashscreen using psplash
On 23 April 2013 13:03, Andreas Enbacka <aenbacka@gmail.com> wrote:
> I am creating a custom image based on core-image-sato, with a custom splash
> screen (using psplash). I have been able to replace the default yocto
> splashscreen in my image, however, my question is whether it is possible to
> hide the initial console output text displayed on the screen prior to
> showing the splashscreen? Currently most of the boot process is completed
> at the stage when the splash screen is being displayed on screen. This is
> because the image should be used as part of an embedded device, and the
> end-user should not see any traces of the underlying linux distro.
Passing "quiet" to the kernel (APPEND+="quiet" in local.conf will do
it for testing) should stop the majority of the text. A full
splash-from-bootloader is possible if you have a bootloader that
displays the image, and then a silent kernel from there.
Ross
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
2013-04-23 12:29 ` Andreas Enbacka
@ 2013-04-23 12:34 ` Gary Thomas
2013-04-23 13:07 ` Richard Purdie
0 siblings, 1 reply; 7+ messages in thread
From: Gary Thomas @ 2013-04-23 12:34 UTC (permalink / raw)
To: yocto
On 2013-04-23 06:29, Andreas Enbacka wrote:
> Hello,
>
> Thanks a lot for info, I will try with that.
>
> //Andreas
>
> -----Original Message-----
> From: Burton, Ross [mailto:ross.burton@intel.com]
> Sent: 23. huhtikuuta 2013 15:09
> To: Andreas Enbacka
> Cc: yocto@yoctoproject.org
> Subject: Re: [yocto] Splashscreen using psplash
>
> On 23 April 2013 13:03, Andreas Enbacka <aenbacka@gmail.com> wrote:
>> I am creating a custom image based on core-image-sato, with a custom splash
>> screen (using psplash). I have been able to replace the default yocto
>> splashscreen in my image, however, my question is whether it is possible to
>> hide the initial console output text displayed on the screen prior to
>> showing the splashscreen? Currently most of the boot process is completed
>> at the stage when the splash screen is being displayed on screen. This is
>> because the image should be used as part of an embedded device, and the
>> end-user should not see any traces of the underlying linux distro.
>
> Passing "quiet" to the kernel (APPEND+="quiet" in local.conf will do
> it for testing) should stop the majority of the text. A full
> splash-from-bootloader is possible if you have a bootloader that
> displays the image, and then a silent kernel from there.
Note: AFAICT this will only work if booting using grub or syslinux, not U-Boot
or some other embedded bootstrap.
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
2013-04-23 12:34 ` Gary Thomas
@ 2013-04-23 13:07 ` Richard Purdie
0 siblings, 0 replies; 7+ messages in thread
From: Richard Purdie @ 2013-04-23 13:07 UTC (permalink / raw)
To: Gary Thomas; +Cc: yocto
On Tue, 2013-04-23 at 06:34 -0600, Gary Thomas wrote:
> On 2013-04-23 06:29, Andreas Enbacka wrote:
> > Hello,
> >
> > Thanks a lot for info, I will try with that.
> >
> > //Andreas
> >
> > -----Original Message-----
> > From: Burton, Ross [mailto:ross.burton@intel.com]
> > Sent: 23. huhtikuuta 2013 15:09
> > To: Andreas Enbacka
> > Cc: yocto@yoctoproject.org
> > Subject: Re: [yocto] Splashscreen using psplash
> >
> > On 23 April 2013 13:03, Andreas Enbacka <aenbacka@gmail.com> wrote:
> >> I am creating a custom image based on core-image-sato, with a custom splash
> >> screen (using psplash). I have been able to replace the default yocto
> >> splashscreen in my image, however, my question is whether it is possible to
> >> hide the initial console output text displayed on the screen prior to
> >> showing the splashscreen? Currently most of the boot process is completed
> >> at the stage when the splash screen is being displayed on screen. This is
> >> because the image should be used as part of an embedded device, and the
> >> end-user should not see any traces of the underlying linux distro.
> >
> > Passing "quiet" to the kernel (APPEND+="quiet" in local.conf will do
> > it for testing) should stop the majority of the text. A full
> > splash-from-bootloader is possible if you have a bootloader that
> > displays the image, and then a silent kernel from there.
>
> Note: AFAICT this will only work if booting using grub or syslinux, not U-Boot
> or some other embedded bootstrap.
The trick is to redirect the console output somewhere else. By default
it goes to the first tty if I recall correctly but you can send it to a
serial port or wherever you want...
Cheers,
Richard
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: Splashscreen using psplash
@ 2018-02-19 6:58 Tian Wen See
0 siblings, 0 replies; 7+ messages in thread
From: Tian Wen See @ 2018-02-19 6:58 UTC (permalink / raw)
To: yocto@yoctoproject.org
[-- Attachment #1: Type: text/plain, Size: 285 bytes --]
Hello,
How do i modify the original psplash in Yocto, and how do i recompile it and reintegrate the newly compiled one into Yocto ?
Any help will be greatly appreciated.
Best Regards,
Mike See
Sent from Mail<https://go.microsoft.com/fwlink/?LinkId=550986> for Windows 10
[-- Attachment #2: Type: text/html, Size: 1951 bytes --]
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2018-02-19 18:37 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-23 12:03 Splashscreen using psplash Andreas Enbacka
2013-04-23 12:08 ` Gary Thomas
2013-04-23 12:09 ` Burton, Ross
2013-04-23 12:29 ` Andreas Enbacka
2013-04-23 12:34 ` Gary Thomas
2013-04-23 13:07 ` Richard Purdie
-- strict thread matches above, loose matches on Subject: below --
2018-02-19 6:58 Tian Wen See
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.