How to hide boot messages (silent boot) in debian jessie (raspberry pi)?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1














I'm working with raspberry pi. Previously (debian wheezy), I used the following codes to hide boot messages and have a silent boot, until a code (playing omxplayer on loop) would run from /etc/rc.local. So I was able to successfully hide the boot messages.



/boot/cmdline.txt :



dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty2 kgdboc=ttyAMA0,115200 elevator=deadline root=/dev/mmcblk0p2 rootfstype=ext4 rootwait logo.nologo vt.global_cursor_default=0 loglevel=2 quiet


/etc/init.d/rc.local :



...
...
chvt 2 && clear && setterm -foreground black && clear


Unfortunately, after upgrading to Jessie, this method does not work fully. Most of the boot messages are hidden, but a few lines at the end of the boot are visible (before the code starts to run from /etc/rc.local). The following logs are visible on boot:



[ 3.492591] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 43430 rev 1 pmurev 24
[ 4.496428] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
[ 5.506547] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50


Also, the following log is visible on reboot or shutdown:



[ 87.728033] watchdog watchdog0: watchdog did not stop!


So, how can I hide the boot messages and logs COMPLETELY in Jessie?










share|improve this question




























    1














    I'm working with raspberry pi. Previously (debian wheezy), I used the following codes to hide boot messages and have a silent boot, until a code (playing omxplayer on loop) would run from /etc/rc.local. So I was able to successfully hide the boot messages.



    /boot/cmdline.txt :



    dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty2 kgdboc=ttyAMA0,115200 elevator=deadline root=/dev/mmcblk0p2 rootfstype=ext4 rootwait logo.nologo vt.global_cursor_default=0 loglevel=2 quiet


    /etc/init.d/rc.local :



    ...
    ...
    chvt 2 && clear && setterm -foreground black && clear


    Unfortunately, after upgrading to Jessie, this method does not work fully. Most of the boot messages are hidden, but a few lines at the end of the boot are visible (before the code starts to run from /etc/rc.local). The following logs are visible on boot:



    [ 3.492591] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 43430 rev 1 pmurev 24
    [ 4.496428] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
    [ 5.506547] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50


    Also, the following log is visible on reboot or shutdown:



    [ 87.728033] watchdog watchdog0: watchdog did not stop!


    So, how can I hide the boot messages and logs COMPLETELY in Jessie?










    share|improve this question


























      1












      1








      1







      I'm working with raspberry pi. Previously (debian wheezy), I used the following codes to hide boot messages and have a silent boot, until a code (playing omxplayer on loop) would run from /etc/rc.local. So I was able to successfully hide the boot messages.



      /boot/cmdline.txt :



      dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty2 kgdboc=ttyAMA0,115200 elevator=deadline root=/dev/mmcblk0p2 rootfstype=ext4 rootwait logo.nologo vt.global_cursor_default=0 loglevel=2 quiet


      /etc/init.d/rc.local :



      ...
      ...
      chvt 2 && clear && setterm -foreground black && clear


      Unfortunately, after upgrading to Jessie, this method does not work fully. Most of the boot messages are hidden, but a few lines at the end of the boot are visible (before the code starts to run from /etc/rc.local). The following logs are visible on boot:



      [ 3.492591] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 43430 rev 1 pmurev 24
      [ 4.496428] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
      [ 5.506547] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50


      Also, the following log is visible on reboot or shutdown:



      [ 87.728033] watchdog watchdog0: watchdog did not stop!


      So, how can I hide the boot messages and logs COMPLETELY in Jessie?










      share|improve this question















      I'm working with raspberry pi. Previously (debian wheezy), I used the following codes to hide boot messages and have a silent boot, until a code (playing omxplayer on loop) would run from /etc/rc.local. So I was able to successfully hide the boot messages.



      /boot/cmdline.txt :



      dwc_otg.lpm_enable=0 console=ttyAMA0,115200 console=tty2 kgdboc=ttyAMA0,115200 elevator=deadline root=/dev/mmcblk0p2 rootfstype=ext4 rootwait logo.nologo vt.global_cursor_default=0 loglevel=2 quiet


      /etc/init.d/rc.local :



      ...
      ...
      chvt 2 && clear && setterm -foreground black && clear


      Unfortunately, after upgrading to Jessie, this method does not work fully. Most of the boot messages are hidden, but a few lines at the end of the boot are visible (before the code starts to run from /etc/rc.local). The following logs are visible on boot:



      [ 3.492591] brcmfmac: brcmf_sdio_drivestrengthinit: No SDIO Drive strength init done for chip 43430 rev 1 pmurev 24
      [ 4.496428] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50
      [ 5.506547] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50


      Also, the following log is visible on reboot or shutdown:



      [ 87.728033] watchdog watchdog0: watchdog did not stop!


      So, how can I hide the boot messages and logs COMPLETELY in Jessie?







      debian boot systemd raspberry-pi






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 27 '17 at 12:17









      Stephen Kitt

      165k24366446




      165k24366446










      asked Jun 1 '16 at 8:55









      Omid1989Omid1989

      156113




      156113




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Try adding this into cmdline



          quiet splash loglevel=0 rd.systemd.show_status=quiet rd.udev.log-priority=3





          share|improve this answer




















            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f286840%2fhow-to-hide-boot-messages-silent-boot-in-debian-jessie-raspberry-pi%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Try adding this into cmdline



            quiet splash loglevel=0 rd.systemd.show_status=quiet rd.udev.log-priority=3





            share|improve this answer

























              0














              Try adding this into cmdline



              quiet splash loglevel=0 rd.systemd.show_status=quiet rd.udev.log-priority=3





              share|improve this answer























                0












                0








                0






                Try adding this into cmdline



                quiet splash loglevel=0 rd.systemd.show_status=quiet rd.udev.log-priority=3





                share|improve this answer












                Try adding this into cmdline



                quiet splash loglevel=0 rd.systemd.show_status=quiet rd.udev.log-priority=3






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 27 '18 at 8:29









                frytazfrytaz

                101




                101



























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f286840%2fhow-to-hide-boot-messages-silent-boot-in-debian-jessie-raspberry-pi%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown






                    Popular posts from this blog

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay