public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* disabling all video
@ 2004-08-06 19:50 Davy Durham
  2004-08-07  0:08 ` Yapo Sebastien
  0 siblings, 1 reply; 5+ messages in thread
From: Davy Durham @ 2004-08-06 19:50 UTC (permalink / raw)
  To: linux-kernel

Sorry if this is the wrong list to ask this.. direct me to the correct 
list if so...

Question: I would like the kernel not to use any of the video hardware 
on the machine.  Is there any run-time kernel parameter I can pass to 
disable all video?  (I tried console= to direct output to the serial 
port, but ttys were still using the vga hardware.)  My video card is 
built onto the mother board, and there is no way I see to disable it 
from the BIOS. 

I was hoping there was an option such as vga=disable or video=null or 
something like that, but I've looked thru the docs and cannot find anything.

Thanks,
  Davy


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: disabling all video
  2004-08-06 19:50 disabling all video Davy Durham
@ 2004-08-07  0:08 ` Yapo Sebastien
  2004-08-07  1:50   ` Davy Durham
  2004-08-07 19:15   ` Davy Durham
  0 siblings, 2 replies; 5+ messages in thread
From: Yapo Sebastien @ 2004-08-07  0:08 UTC (permalink / raw)
  To: linux-kernel

> Question: I would like the kernel not to use any of the video hardware
> on the machine.  Is there any run-time kernel parameter I can pass to
> disable all video?  (I tried console= to direct output to the serial
> port, but ttys were still using the vga hardware.)  My video card is
> built onto the mother board, and there is no way I see to disable it
> from the BIOS.
>
Remove "if EMBEDDED" in the VT and VT_CONSOLE section of drivers/char/Kconfig 
then reconfigure your kernel.
You should find the old VT options in Device Drivers  -> Character devices

Regards

Sebastien

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: disabling all video
  2004-08-07  0:08 ` Yapo Sebastien
@ 2004-08-07  1:50   ` Davy Durham
  2004-08-07 19:15   ` Davy Durham
  1 sibling, 0 replies; 5+ messages in thread
From: Davy Durham @ 2004-08-07  1:50 UTC (permalink / raw)
  To: Yapo Sebastien; +Cc: linux-kernel

Yapo Sebastien wrote:

>>Question: I would like the kernel not to use any of the video hardware
>>on the machine.  Is there any run-time kernel parameter I can pass to
>>disable all video?  (I tried console= to direct output to the serial
>>port, but ttys were still using the vga hardware.)  My video card is
>>built onto the mother board, and there is no way I see to disable it
>>from the BIOS.
>>
>>    
>>
>Remove "if EMBEDDED" in the VT and VT_CONSOLE section of drivers/char/Kconfig 
>then reconfigure your kernel.
>You should find the old VT options in Device Drivers  -> Character devices
>
>  
>
Aww, is there no way to disable it at run-time?  I'm working with a 
precompiled kernel.

Perhaps there's a trick to disable the card with a special interrupt?  
Set the terminal parameters to blanked from the kernel parameter line 
(like setterm does)

Thanks

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: disabling all video
  2004-08-07  0:08 ` Yapo Sebastien
  2004-08-07  1:50   ` Davy Durham
@ 2004-08-07 19:15   ` Davy Durham
  2004-08-08 21:41     ` Randy.Dunlap
  1 sibling, 1 reply; 5+ messages in thread
From: Davy Durham @ 2004-08-07 19:15 UTC (permalink / raw)
  To: Yapo Sebastien; +Cc: linux-kernel

Perhaps is there a way/trick to accomplish this by explicitly breaking 
(*at* runtime/kernel-parameter-time) the vga support that wouldn't cause 
a panic?

Yapo Sebastien wrote:

>>Question: I would like the kernel not to use any of the video hardware
>>on the machine.  Is there any run-time kernel parameter I can pass to
>>disable all video?  (I tried console= to direct output to the serial
>>port, but ttys were still using the vga hardware.)  My video card is
>>built onto the mother board, and there is no way I see to disable it
>>from the BIOS.
>>
>>    
>>
>Remove "if EMBEDDED" in the VT and VT_CONSOLE section of drivers/char/Kconfig 
>then reconfigure your kernel.
>You should find the old VT options in Device Drivers  -> Character devices
>
>Regards
>
>Sebastien
>-
>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] 5+ messages in thread

* Re: disabling all video
  2004-08-07 19:15   ` Davy Durham
@ 2004-08-08 21:41     ` Randy.Dunlap
  0 siblings, 0 replies; 5+ messages in thread
From: Randy.Dunlap @ 2004-08-08 21:41 UTC (permalink / raw)
  To: Davy Durham; +Cc: sebastien.yapo, linux-kernel

On Sat, 07 Aug 2004 14:15:48 -0500 Davy Durham wrote:

| Perhaps is there a way/trick to accomplish this by explicitly breaking 
| (*at* runtime/kernel-parameter-time) the vga support that wouldn't cause 
| a panic?

Perhaps there could be a way (most likely there could be), but there
isn't a way currently that I can find in source files or in
Documentation/kernel-parameters.txt .


| Yapo Sebastien wrote:
| 
| >>Question: I would like the kernel not to use any of the video hardware
| >>on the machine.  Is there any run-time kernel parameter I can pass to
| >>disable all video?  (I tried console= to direct output to the serial
| >>port, but ttys were still using the vga hardware.)  My video card is
| >>built onto the mother board, and there is no way I see to disable it
| >>from the BIOS.
| >>
| >>    
| >>
| >Remove "if EMBEDDED" in the VT and VT_CONSOLE section of drivers/char/Kconfig 
| >then reconfigure your kernel.
| >You should find the old VT options in Device Drivers  -> Character devices
| >
| >Regards
| >
| >Sebastien


--
~Randy

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2004-08-08 21:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2004-08-06 19:50 disabling all video Davy Durham
2004-08-07  0:08 ` Yapo Sebastien
2004-08-07  1:50   ` Davy Durham
2004-08-07 19:15   ` Davy Durham
2004-08-08 21:41     ` Randy.Dunlap

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox