2005-12-14 03:46:45

by Kurt Wall

[permalink] [raw]
Subject: Console Goes Blank When Booting 2.6.15-rc5

As Jesper Juhl has reported, if I boot 2.6.15-rc5 with vga=normal,
everything is fine. If I boot using my preferred size (vga=794),
the console goes blank. Because I'm a touch typist, I can login and
start X and everything is copacetic, but as soon as I leave X, I'm
back to the blank screen. From X, if I flip over to a VC, the VC
display is garbled and has artifacts from the X display.

This worked fine with 2.6.14.3, and I didn't change the console,
framebuffer, or vesa options between the two kernels. Not sure how
to proceed, but I sure would like my high res console screens back.

Thanks,

Kurt
--
"What's another word for Thesaurus?"
-- Steven Wright


2005-12-14 06:38:03

by Antonino A. Daplas

[permalink] [raw]
Subject: Re: Console Goes Blank When Booting 2.6.15-rc5

Kurt Wall wrote:
> As Jesper Juhl has reported, if I boot 2.6.15-rc5 with vga=normal,
> everything is fine. If I boot using my preferred size (vga=794),
> the console goes blank. Because I'm a touch typist, I can login and
> start X and everything is copacetic, but as soon as I leave X, I'm
> back to the blank screen. From X, if I flip over to a VC, the VC
> display is garbled and has artifacts from the X display.
>
> This worked fine with 2.6.14.3, and I didn't change the console,
> framebuffer, or vesa options between the two kernels. Not sure how
> to proceed, but I sure would like my high res console screens back.

Can you recheck your .config and make sure that
CONFIG_FRAMEBUFFER_CONSOLE=y

If that does not work, please post your dmesg and .config file.

Tony

2005-12-15 01:25:51

by Kurt Wall

[permalink] [raw]
Subject: Re: Console Goes Blank When Booting 2.6.15-rc5

On Wednesday 14 December 2005 01:37 am, Antonino A. Daplas wrote:
> Kurt Wall wrote:
> > As Jesper Juhl has reported, if I boot 2.6.15-rc5 with vga=normal,
> > everything is fine. If I boot using my preferred size (vga=794),
> > the console goes blank. Because I'm a touch typist, I can login and
> > start X and everything is copacetic, but as soon as I leave X, I'm
> > back to the blank screen. From X, if I flip over to a VC, the VC
> > display is garbled and has artifacts from the X display.
> >
> > This worked fine with 2.6.14.3, and I didn't change the console,
> > framebuffer, or vesa options between the two kernels. Not sure how
> > to proceed, but I sure would like my high res console screens back.
>
> Can you recheck your .config and make sure that
> CONFIG_FRAMEBUFFER_CONSOLE=y

Oops. It was defined as a module. Compiling it statically gave me
the console back. Interestingly, I still lose the first 102 lines
of console output. After the all-important boot logo displays, I see
nothing until this line:

"Console: switching to colour frame buffer device 160x64"

It's all there in the ring buffer, of course. Thanks, Antonino.

Kurt
--
The mosquito is the state bird of New Jersey.
-- Andy Warhol

2005-12-16 02:24:17

by Antonino A. Daplas

[permalink] [raw]
Subject: Re: Console Goes Blank When Booting 2.6.15-rc5

Kurt Wall wrote:
> On Wednesday 14 December 2005 01:37 am, Antonino A. Daplas wrote:
>> Kurt Wall wrote:
>>> As Jesper Juhl has reported, if I boot 2.6.15-rc5 with vga=normal,
>>> everything is fine. If I boot using my preferred size (vga=794),
>>> the console goes blank. Because I'm a touch typist, I can login and
>>> start X and everything is copacetic, but as soon as I leave X, I'm
>>> back to the blank screen. From X, if I flip over to a VC, the VC
>>> display is garbled and has artifacts from the X display.
>>>
>>> This worked fine with 2.6.14.3, and I didn't change the console,
>>> framebuffer, or vesa options between the two kernels. Not sure how
>>> to proceed, but I sure would like my high res console screens back.
>> Can you recheck your .config and make sure that
>> CONFIG_FRAMEBUFFER_CONSOLE=y
>
> Oops. It was defined as a module. Compiling it statically gave me
> the console back. Interestingly, I still lose the first 102 lines
> of console output. After the all-important boot logo displays, I see
> nothing until this line:

Yes, that should be expected behavior with vesafb. The adapter was
set very early during the boot process, when machine is still in
real mode, vgacon will never load, and you will only see any semblance
of display until the framebuffer console is loaded. You should
see different behavior with chipset-specific drivers, ie, you will
have vgacon momentarily until fbcon takes over.

Tony