Tiny Core Linux

Tiny Core Base => Micro Core => Topic started by: Looper on February 04, 2020, 03:33:01 PM

Title: More quiet booting
Post by: Looper 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
Title: Re: More quiet booting
Post by: Rich 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?
Title: More quiet booting
Post by: Looper 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 (http://www.davedoesdev.com),https://www.syslinux.org/archives/2009-February/011897.html (https://www.syslinux.org/archives/2009-February/011897.html) and https://codereview.chromium.org/1748010/patch/4001/5003 (https://codereview.chromium.org/1748010/patch/4001/5003) also https://gist.github.com/davedoesdev/3748363#file-syslinux-4-03-patch (https://gist/github.com/davedoesdev/3748363#file-syslinux-4-03-patch) but really strange .
I don't know how can I patch ISOLinux.bin ,...
Title: Re: More quiet booting
Post by: Rich 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
Title: Re: More quiet booting
Post by: Rich on February 05, 2020, 07:01:42 AM
Hi Looper
Posting the contents of your config file might also be helpful.
Title: Re: More quiet booting
Post by: Looper 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 
Title: Re: More quiet booting
Post by: Rich 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
Title: Re: More quiet booting
Post by: Looper on February 06, 2020, 03:07:46 PM
Hi @Rich , I try that .
No change affected . [emoji17]