* CONFIG_VT_CONSOLE in 2.5.6x ?
@ 2003-03-24 22:54 Louis Garcia
2003-03-24 23:05 ` Randy.Dunlap
2003-03-25 2:07 ` James Simmons
0 siblings, 2 replies; 8+ messages in thread
From: Louis Garcia @ 2003-03-24 22:54 UTC (permalink / raw)
To: Linux Kernel Mailing List
I can't find CONFIG_VT_CONSOLE anywhere in menuconfig. I am having
problems not viewing the bootup messages on my monitor. I do have
console=tty0 in grub.conf.
--Thanks
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 22:54 CONFIG_VT_CONSOLE in 2.5.6x ? Louis Garcia
@ 2003-03-24 23:05 ` Randy.Dunlap
2003-03-24 23:21 ` Steven Cole
2003-03-24 23:25 ` Louis Garcia
2003-03-25 2:07 ` James Simmons
1 sibling, 2 replies; 8+ messages in thread
From: Randy.Dunlap @ 2003-03-24 23:05 UTC (permalink / raw)
To: louisg00; +Cc: linux-kernel
> I can't find CONFIG_VT_CONSOLE anywhere in menuconfig. I am having problems
> not viewing the bootup messages on my monitor. I do have
> console=tty0 in grub.conf.
It's the second line of the Character Devices menu:
│ │[*] Virtual terminal
│ │[*] Support for console on virtual terminal <<<<<
~Randy
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 23:05 ` Randy.Dunlap
@ 2003-03-24 23:21 ` Steven Cole
2003-03-24 23:25 ` Louis Garcia
1 sibling, 0 replies; 8+ messages in thread
From: Steven Cole @ 2003-03-24 23:21 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: louisg00, Linux Kernel
On Mon, 2003-03-24 at 16:05, Randy.Dunlap wrote:
> > I can't find CONFIG_VT_CONSOLE anywhere in menuconfig. I am having problems
> > not viewing the bootup messages on my monitor. I do have
> > console=tty0 in grub.conf.
>
> It's the second line of the Character Devices menu:
>
> │ │[*] Virtual terminal
> │ │[*] Support for console on virtual terminal <<<<<
>
> ~Randy
If you can't get Randy to answer your question, here's another way to
find this out:
[steven@spc5 testing-2.5]$ find . -name Kconfig | xargs grep VT_CONSOLE
./arch/m68k/Kconfig:config VT_CONSOLE
./arch/mips/Kconfig:config VT_CONSOLE
./arch/mips/Kconfig:config VT_CONSOLE
./arch/sh/Kconfig:config VT_CONSOLE
./arch/sparc/Kconfig:config VT_CONSOLE
./arch/sparc64/Kconfig:config VT_CONSOLE
./drivers/char/Kconfig:config VT_CONSOLE
[steven@spc5 testing-2.5]$ uptime && uname -r
4:05pm up 23 min, 2 users, load average: 103.78, 102.87, 58.59
2.5.66
Steven
\x01\x01\x01\x15
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 23:05 ` Randy.Dunlap
2003-03-24 23:21 ` Steven Cole
@ 2003-03-24 23:25 ` Louis Garcia
2003-03-24 23:31 ` Russell King
2003-03-25 0:08 ` Felipe Alfaro Solana
1 sibling, 2 replies; 8+ messages in thread
From: Louis Garcia @ 2003-03-24 23:25 UTC (permalink / raw)
To: Randy.Dunlap; +Cc: linux-kernel
Well I can't find it there. I have a 2.5.65 tree and under character
devices I have
[ ] Non-standard serial port support
Serial drivers --->
[ ] Unix98 PTY support
(2048) Maximum number of Unix98 PTYs in use (0-2048)
[ ] Parallel Printer support
I see nothing for Virtual terminal in this sub-menu. Does this depend on
another option?
--Lou
On Mon, 2003-03-24 at 18:05, Randy.Dunlap wrote:
> > I can't find CONFIG_VT_CONSOLE anywhere in menuconfig. I am having problems
> > not viewing the bootup messages on my monitor. I do have
> > console=tty0 in grub.conf.
>
> It's the second line of the Character Devices menu:
>
> │ │[*] Virtual terminal
> │ │[*] Support for console on virtual terminal <<<<<
>
> ~Randy
>
>
>
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 23:25 ` Louis Garcia
@ 2003-03-24 23:31 ` Russell King
2003-03-24 23:41 ` Steven Cole
2003-03-25 0:08 ` Felipe Alfaro Solana
1 sibling, 1 reply; 8+ messages in thread
From: Russell King @ 2003-03-24 23:31 UTC (permalink / raw)
To: Louis Garcia; +Cc: Randy.Dunlap, linux-kernel
On Mon, Mar 24, 2003 at 06:25:10PM -0500, Louis Garcia wrote:
> Well I can't find it there. I have a 2.5.65 tree and under character
> devices I have
you need:
CONFIG_INPUT=y
to allow the option you're looking for to show up.
--
Russell King (rmk@arm.linux.org.uk) The developer of ARM Linux
http://www.arm.linux.org.uk/personal/aboutme.html
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 23:31 ` Russell King
@ 2003-03-24 23:41 ` Steven Cole
0 siblings, 0 replies; 8+ messages in thread
From: Steven Cole @ 2003-03-24 23:41 UTC (permalink / raw)
To: Russell King; +Cc: Louis Garcia, Randy.Dunlap, Linux Kernel
On Mon, 2003-03-24 at 16:31, Russell King wrote:
> On Mon, Mar 24, 2003 at 06:25:10PM -0500, Louis Garcia wrote:
> > Well I can't find it there. I have a 2.5.65 tree and under character
> > devices I have
>
> you need:
>
> CONFIG_INPUT=y
>
> to allow the option you're looking for to show up.
And next time he can figure this out himself looking at
drivers/char/Kconfig:
#
# Character device configuration
#
menu "Character devices"
config VT
bool "Virtual terminal"
requires INPUT=y
and just after that:
config VT_CONSOLE
bool "Support for console on virtual terminal"
depends on VT
Steven
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 23:25 ` Louis Garcia
2003-03-24 23:31 ` Russell King
@ 2003-03-25 0:08 ` Felipe Alfaro Solana
1 sibling, 0 replies; 8+ messages in thread
From: Felipe Alfaro Solana @ 2003-03-25 0:08 UTC (permalink / raw)
To: Louis Garcia; +Cc: Randy.Dunlap, LKML
On Tue, 2003-03-25 at 00:25, Louis Garcia wrote:
> Well I can't find it there. I have a 2.5.65 tree and under character
> devices I have
>
> [ ] Non-standard serial port support
> Serial drivers --->
> [ ] Unix98 PTY support
> (2048) Maximum number of Unix98 PTYs in use (0-2048)
> [ ] Parallel Printer support
>
>
> I see nothing for Virtual terminal in this sub-menu. Does this depend on
> another option?
Yes... Make sure "Input device support" is selected (Y), and also, check
that you've enabled support for the proper keyboard (if you plan to use
the console for entering commands).
________________________________________________________________________
Felipe Alfaro Solana
Linux Registered User #287198
http://counter.li.org
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: CONFIG_VT_CONSOLE in 2.5.6x ?
2003-03-24 22:54 CONFIG_VT_CONSOLE in 2.5.6x ? Louis Garcia
2003-03-24 23:05 ` Randy.Dunlap
@ 2003-03-25 2:07 ` James Simmons
1 sibling, 0 replies; 8+ messages in thread
From: James Simmons @ 2003-03-25 2:07 UTC (permalink / raw)
To: Louis Garcia; +Cc: Linux Kernel Mailing List
Do you have Input devices enabled?
> I can't find CONFIG_VT_CONSOLE anywhere in menuconfig. I am having
> problems not viewing the bootup messages on my monitor. I do have
> console=tty0 in grub.conf.
>
> --Thanks
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
>
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2003-03-25 1:56 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-03-24 22:54 CONFIG_VT_CONSOLE in 2.5.6x ? Louis Garcia
2003-03-24 23:05 ` Randy.Dunlap
2003-03-24 23:21 ` Steven Cole
2003-03-24 23:25 ` Louis Garcia
2003-03-24 23:31 ` Russell King
2003-03-24 23:41 ` Steven Cole
2003-03-25 0:08 ` Felipe Alfaro Solana
2003-03-25 2:07 ` James Simmons
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®