WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: More quiet booting  (Read 4729 times)

Offline Looper

  • Newbie
  • *
  • Posts: 47
More quiet booting
« on: February 04, 2020, 03:33:01 PM »
Hi guys , How Can I remove some information printing in boot step ?
Like :
Code: [Select]
kernel_total_size
Code: [Select]
loading /boot/core.gz
Code: [Select]
loading /boot/vmlinuz
Code: [Select]
early console in extract_kernel

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: More quiet booting
« Reply #1 on: February 04, 2020, 05:11:03 PM »
Hi Looper
Hi guys , How Can I remove some information printing in boot step ?
Like :
Code: [Select]
kernel_total_size
Code: [Select]
loading /boot/core.gz
Code: [Select]
loading /boot/vmlinuz
Those messages sound like they are from the boot loader.

Quote
Code: [Select]
early console in extract_kernel
That one sounds like it might be coming from the kernel. You could try silencing it with the following boot code:
Code: [Select]
loglevel=0
Which boot loader are you using?

Offline Looper

  • Newbie
  • *
  • Posts: 47
More quiet booting
« Reply #2 on: February 05, 2020, 12:39:44 AM »
Tanks for replaying @Rich  ,...
 I use SYSLINUX ( default of tiny core )
I got http://www.davedoesdev.com,https://www.syslinux.org/archives/2009-February/011897.html and https://codereview.chromium.org/1748010/patch/4001/5003 also https://gist.github.com/davedoesdev/3748363#file-syslinux-4-03-patch but really strange .
I don't know how can I patch ISOLinux.bin ,...
« Last Edit: February 05, 2020, 12:45:38 AM by Looper »

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: More quiet booting
« Reply #3 on: February 05, 2020, 06:59:27 AM »
Hi Looper
Have you tried adding this to your  syslinux.cfg :
Code: [Select]
CONSOLE 0as mentioned here:
https://wiki.syslinux.org/wiki/index.php?title=SYSLINUX#CONSOLE_flag_val

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: More quiet booting
« Reply #4 on: February 05, 2020, 07:01:42 AM »
Hi Looper
Posting the contents of your config file might also be helpful.

Offline Looper

  • Newbie
  • *
  • Posts: 47
Re: More quiet booting
« Reply #5 on: February 05, 2020, 11:08:05 PM »
Many tanks again for your replaying @Rich

This is my isolinux.cfg
Code: [Select]
default mc
Label mc
      Kernel /boot/vmlinuz
      Append initrd=/boot/core.gz loglevel=0
Console 0
Implicit 0
Prompt 0
Timeout 0

Notice : I changed with your reply
But for now with this configuration I got :
Code: [Select]
early console in extract_kernel
Input_data
Input_len
Output
output_len
Kernel_total_size
Decompressing Linux
Booting the kernel 

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11178
Re: More quiet booting
« Reply #6 on: February 06, 2020, 07:13:48 AM »
Hi Looper
Try changing this:
Code: [Select]
Append initrd=/boot/core.gz loglevel=0to that:
Code: [Select]
Append initrd=/boot/core.gz quiet loglevel=0

Offline Looper

  • Newbie
  • *
  • Posts: 47
Re: More quiet booting
« Reply #7 on: February 06, 2020, 03:07:46 PM »
Hi @Rich , I try that .
No change affected . [emoji17]