You are not logged in.

#1 2007-06-17 14:09:20

mips
Member
Registered: 2006-09-16
Posts: 11
Website

double logo on boot [solved]

i have a strange problem here.. it's not important at all but i ask because i can't explain why it happens.
during the boot process, on the top of the framebuffer i see 2 (TWO) arch logos, one to the top left (normal) and another just to the right of the former. this happens on both my laptops, and started recently (about a couple of months ago i think). maybe somebody knows what's going on smile or maybe it's just normal, who knows?

also, after i login, if i scroll back the terminal output (shift+pgup) the top part of the screen doesn't change (logos and user/pass prompt), so what should be scrolled there is unreadable.

thanks in advance for any clues about these things.

Last edited by mips (2007-06-17 14:53:14)

Offline

#2 2007-06-17 14:47:03

harlekin
Member
From: Germany
Registered: 2006-07-13
Posts: 408

Re: double logo on boot [solved]

Concerning the two logos: As far as I know the amount of logos being displayed represent you amount of cpus or cpu cores. I've got a Intel Core 2 Duo and got two logos at boot time, either.

Just annoying is, that the background of the logo isn't completely black as the screen is. \-:

Last edited by harlekin (2007-06-17 14:49:46)


Hail to the thief!

Offline

#3 2007-06-17 14:47:25

raymano
Member
Registered: 2006-10-13
Posts: 357
Website

Re: double logo on boot [solved]

mips wrote:

i have a strange problem here.. it's not important at all but i ask because i can't explain why it happens.
during the boot process, on the top of the framebuffer i see 2 (TWO) arch logos, one to the top left (normal) and another just to the right of the former. this happens on both my laptops, and started recently (about a couple of months ago i think). maybe somebody knows what's going on smile or maybe it's just normal, who knows?

also, after i login, if i scroll back the terminal output (shift+pgup) the top part of the screen doesn't change (logos and user/pass prompt), so what should be scrolled there is unreadable.

thanks in advance for any clues about these things.

I know the answer to your first question. This is by design. One arch logo is displayed per CPU. This is compiled into the standard Arch kernel with kernel config param "CONFIG_LOGO=y".

Raymano


FaunOS: Live USB/DVD Linux Distro: http://www.faunos.com

Offline

#4 2007-06-17 14:51:34

mips
Member
Registered: 2006-09-16
Posts: 11
Website

Re: double logo on boot [solved]

oh, nice to know that smile i thought it was some kind of weird bug. i wonder what will happen on a 32-core station wink
thanks guys

Offline

#5 2007-06-24 12:42:54

tanis
Member
From: Poland / Waterloo, ON, Canada
Registered: 2007-04-21
Posts: 259

Re: double logo on boot [solved]

Is there a way to get rid of the second logo?
Nice to know that it is not a bug though smile

Offline

#6 2007-06-24 12:56:41

Ramses de Norre
Member
From: Leuven - Belgium
Registered: 2007-03-27
Posts: 1,289

Re: double logo on boot [solved]

tanis wrote:

Is there a way to get rid of the second logo?
Nice to know that it is not a bug though smile

Recompile your kernel with the mentioned param set as no...

Offline

#7 2007-06-24 13:40:19

tanis
Member
From: Poland / Waterloo, ON, Canada
Registered: 2007-04-21
Posts: 259

Re: double logo on boot [solved]

But CONFIG_LOGO=n would not show any logo at all?
I want one logo. smile

Offline

#8 2007-06-25 20:36:05

raymano
Member
Registered: 2006-10-13
Posts: 357
Website

Re: double logo on boot [solved]

tanis wrote:

But CONFIG_LOGO=n would not show any logo at all?
I want one logo. smile

You have to change kernel code for that.


FaunOS: Live USB/DVD Linux Distro: http://www.faunos.com

Offline

#9 2008-09-04 03:59:37

mOLOk
Member
From: Milan, Italy
Registered: 2005-08-09
Posts: 20
Website

Re: double logo on boot [solved]

--- linux-2.6.26/drivers/video/fbmem.c.orig 2008-09-04 04:36:43.000000000 +0200                          
+++ linux-2.6.26/drivers/video/fbmem.c  2008-09-04 04:36:59.000000000 +0200
@@ -623,7 +623,7 @@ int fb_show_logo(struct fb_info *info, i
    int y; 
 
    y = fb_show_logo_line(info, rotate, fb_logo.logo, 0, 
-                 num_online_cpus());
+                 1);
    y = fb_show_extra_logos(info, y, rotate);
 
    return y

Offline

#10 2008-09-04 18:00:42

moljac024
Member
From: Serbia
Registered: 2008-01-29
Posts: 2,676

Re: double logo on boot [solved]

Can these logos be disabled without fiddling around in the kernel ?


The day Microsoft makes a product that doesn't suck, is the day they make a vacuum cleaner.
--------------------------------------------------------------------------------------------------------------
But if they tell you that I've lost my mind, maybe it's not gone just a little hard to find...

Offline

#11 2008-09-04 20:47:47

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Re: double logo on boot [solved]

No.


thayer williams ~ cinderwick.ca

Offline

#12 2008-09-16 12:35:46

Jessehk
Member
From: Toronto, Ontario, Canada
Registered: 2007-01-16
Posts: 152

Re: double logo on boot [solved]

Heh, I just got a new laptop, prompty put Arch on it, and was baffled at the double logos. Neat idea.

Offline

#13 2008-09-17 04:00:59

nickoljt
Member
Registered: 2008-09-17
Posts: 9

Re: double logo on boot [solved]

you can supress the logo by adding the logo.nologo kernel parameter to your grub boot line:

# (0) Arch Linux
title  Arch Linux
root   (hd0,4)
kernel /boot/vmlinuz26 root=/dev/disk/by-uuid/6d9615d5-08f3-46de-975d-a2b8d6e38e9b ro vga=773 logo.nologo
initrd /boot/kernel26.img

Offline

#14 2008-09-17 05:11:29

crc32
Member
Registered: 2007-05-13
Posts: 23

Re: double logo on boot [solved]

nickoljt wrote:

you can supress the logo by adding the logo.nologo kernel parameter to your grub boot line:

# (0) Arch Linux
title  Arch Linux
root   (hd0,4)
kernel /boot/vmlinuz26 root=/dev/disk/by-uuid/6d9615d5-08f3-46de-975d-a2b8d6e38e9b ro vga=773 logo.nologo
initrd /boot/kernel26.img

That's a great tip. I'll try this out soon. Thanks!

Offline

#15 2008-09-17 09:19:07

timetrap
Member
From: Here and There
Registered: 2008-06-05
Posts: 342
Website

Re: double logo on boot [solved]

You guys are crazy. More power to ya.

Offline

#16 2008-09-17 15:27:10

thayer
Fellow
From: Vancouver, BC
Registered: 2007-05-20
Posts: 1,560
Website

Re: double logo on boot [solved]

nickoljt wrote:

you can supress the logo by adding the logo.nologo kernel parameter to your grub boot line:

Well I'll be damned, I must have googled for days trying to find such a solution. Thanks!


thayer williams ~ cinderwick.ca

Offline

#17 2008-09-17 16:12:29

iBertus
Member
From: Greenville, NC
Registered: 2004-11-04
Posts: 2,228

Re: double logo on boot [solved]

I get 8 logos on my new workstation. It freaked me out the first time I booted it up.

Offline

#18 2008-09-17 16:21:59

carlocci
Member
From: Padova - Italy
Registered: 2008-02-12
Posts: 368

Re: double logo on boot [solved]

iBertus wrote:

I get 8 logos on my new workstation. It freaked me out the first time I booted it up.

does they newline after a while? What if your monitor can't fit them all?

Offline

#19 2008-09-17 23:26:29

koch
Member
From: Germany
Registered: 2008-01-26
Posts: 369

Re: double logo on boot [solved]

have a look at his sig...30 inch monitor...any questions?

Offline

#20 2008-09-19 04:51:27

iBertus
Member
From: Greenville, NC
Registered: 2004-11-04
Posts: 2,228

Re: double logo on boot [solved]

I'll boot with a really low vga= line and see if it wraps.. as soon as I get the box back up and running from installing the watercooling... and assuming I don't fry the thing since I've not ever built a watercooling setup.. I'm nervous.

Offline

Board footer

Powered by FluxBB