mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Bongani <bonganilinux@mweb.co.za>
To: ptb@it.uc3m.es
Cc: kraxel@goldbach.in-berlin.de,
	linux kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] turn vesa framebuffer off at boot 2.4.18
Date: 27 Jul 2002 22:36:28 +0200	[thread overview]
Message-ID: <1027802189.2551.6.camel@localhost.localdomain> (raw)
In-Reply-To: <200207271956.g6RJurv08967@oboe.it.uc3m.es>

If you areusing lilo the remove the line
vga=788 (NOTE: this number might be different)
or replace it by vga=normal (IIRC)
the other option is to add the vga=normal on the boot param

On Sat, 2002-07-27 at 21:56, Peter T. Breuer wrote:
> 
> I use the same kernel everywhere but when vesa framebuffer is compiled
> into the kernel the text mode console on my laptop doesn't show the
> bottom few lines of the screen.
> 
> So I wanted to turn it off at boot ..  but there didn't seem to be a way
> :-(.  Hence I added the boot param
> 
>      video=vesa:off
> 
> Apologies if it was possible some other way. I believe I've heard
> of some distros providing FB and NONFB kernels. I didn't stop to
> investigate beyond reading the Documentation/fb/*.txt.
> 
> This patch is against the pre-2.4.18 kernel code I had handy.
> Sorry if it needs to be more recent. I don't have another 120M
> to spare for a newer source just now ...
> 
> It works.
> 
> 
> --- vesafb.c.orig	Sat Jul 27 21:42:39 2002
> +++ vesafb.c	Sat Jul 27 21:10:39 2002
> @@ -98,6 +98,7 @@
>  
>  static int             pmi_setpal = 0;	/* pmi for palette changes ??? */
>  static int             ypan       = 0;  /* 0..nothing, 1..ypan, 2..ywrap */
> +static int             disable    = 0;  /* added by P. Breuer ptb@it.uc3m.es */
>  static unsigned short  *pmi_base  = 0;
>  static void            (*pmi_start)(void);
>  static void            (*pmi_pal)(void);
> @@ -462,6 +463,8 @@
>  		
>  		if (! strcmp(this_opt, "inverse"))
>  			inverse=1;
> +		else if (! strcmp(this_opt, "off"))
> +			disable=1;
>  		else if (! strcmp(this_opt, "redraw"))
>  			ypan=0;
>  		else if (! strcmp(this_opt, "ypan"))
> @@ -504,6 +507,12 @@
>  int __init vesafb_init(void)
>  {
>  	int i,j;
> +
> +        if (disable) {
> +		printk(KERN_INFO
> +		       "vesafb: aborted on user req (disable)\n");
> +                return -EINVAL;
> +        }
>  
>  	if (screen_info.orig_video_isVGA != VIDEO_TYPE_VLFB)
>  		return -ENXIO;
> -
> 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/



      reply	other threads:[~2002-07-27 20:29 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-07-27 19:56 Peter T. Breuer
2002-07-27 20:36 ` Bongani [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1027802189.2551.6.camel@localhost.localdomain \
    --to=bonganilinux@mweb.co.za \
    --cc=kraxel@goldbach.in-berlin.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=ptb@it.uc3m.es \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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®