public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] penguin logo code
@ 2002-07-24 15:15 Geert Uytterhoeven
  2002-07-24 16:49 ` jbradford
  0 siblings, 1 reply; 5+ messages in thread
From: Geert Uytterhoeven @ 2002-07-24 15:15 UTC (permalink / raw)
  To: Marcelo Tosatti
  Cc: Linux Kernel Development, Linux Frame Buffer Device Development


### Comments for changeset
The penguin logo resides in normal RAM, not in frame buffer memory, so we must
not use fb_readb()

### Comments for drivers/video/fbcon.c
The penguin logo resides in normal RAM, not in frame buffer memory, so we must
not use fb_readb()

--- linux-2.4.19-rc3/drivers/video/fbcon.c	Fri Feb 22 16:28:32 2002
+++ linux-m68k-2.4.19-rc3/drivers/video/fbcon.c	Mon Jul 22 21:45:01 2002
@@ -2417,7 +2417,7 @@
 		else
 		    dst = fb + y1*line + x/8;
 		for( x1 = 0; x1 < LOGO_LINE; ++x1 )
-		    fb_writeb(fb_readb(src++) ^ inverse, dst++);
+		    fb_writeb(*src++ ^ inverse, dst++);
 	    }
 	    done = 1;
 	}

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds


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

* Re: [PATCH] penguin logo code
  2002-07-24 15:15 [PATCH] penguin logo code Geert Uytterhoeven
@ 2002-07-24 16:49 ` jbradford
  2002-07-24 16:51   ` Thunder from the hill
                     ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: jbradford @ 2002-07-24 16:49 UTC (permalink / raw)
  To: Geert Uytterhoeven; +Cc: linux-kernel

Just an idea, (and slightly off-topic), but would it be possible, (I.E. not a copyright infringement, and not liable to mess up any checksums anywhere), to replace the logo that typically occurs in X86 BIOSen and fades away at boot, with a penguin?

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

* Re: [PATCH] penguin logo code
  2002-07-24 16:49 ` jbradford
@ 2002-07-24 16:51   ` Thunder from the hill
  2002-07-24 16:54   ` Dave Jones
  2002-07-24 17:32   ` Andreas Dilger
  2 siblings, 0 replies; 5+ messages in thread
From: Thunder from the hill @ 2002-07-24 16:51 UTC (permalink / raw)
  To: jbradford; +Cc: Geert Uytterhoeven, linux-kernel

Hi,

On Wed, 24 Jul 2002 jbradford@dial.pipex.com wrote:
> Just an idea, (and slightly off-topic), but would it be possible, (I.E.
> not a copyright infringement, and not liable to mess up any checksums
> anywhere), to replace the logo that typically occurs in X86 BIOSen and
> fades away at boot, with a penguin?

I think the LinuxBios project made very clear that it is. What's shown on 
boot time is quite arbitrary, the main thing is what happens. But would 
you really want to _fade_away_ a penguin?

							Regards,
							Thunder
-- 
(Use http://www.ebb.org/ungeek if you can't decode)
------BEGIN GEEK CODE BLOCK------
Version: 3.12
GCS/E/G/S/AT d- s++:-- a? C++$ ULAVHI++++$ P++$ L++++(+++++)$ E W-$
N--- o?  K? w-- O- M V$ PS+ PE- Y- PGP+ t+ 5+ X+ R- !tv b++ DI? !D G
e++++ h* r--- y- 
------END GEEK CODE BLOCK------


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

* Re: [PATCH] penguin logo code
  2002-07-24 16:49 ` jbradford
  2002-07-24 16:51   ` Thunder from the hill
@ 2002-07-24 16:54   ` Dave Jones
  2002-07-24 17:32   ` Andreas Dilger
  2 siblings, 0 replies; 5+ messages in thread
From: Dave Jones @ 2002-07-24 16:54 UTC (permalink / raw)
  To: jbradford; +Cc: Geert Uytterhoeven, linux-kernel

On Wed, Jul 24, 2002 at 05:49:16PM +0100, jbradford@dial.pipex.com wrote:

> Just an idea, (and slightly off-topic), but would it be possible,
> (I.E. not a copyright infringement, and not liable to mess up any
> checksums anywhere), to replace the logo that typically occurs in X86
> BIOSen and fades away at boot, with a penguin?

Yes. However it is by no means trivial, and aparently rather
easy to screw up.

http://www.google.com/search?q=replacing+bios+logo
will give you a few hundred places to begin.

        Dave

-- 
| Dave Jones.        http://www.codemonkey.org.uk
| SuSE Labs

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

* Re: [PATCH] penguin logo code
  2002-07-24 16:49 ` jbradford
  2002-07-24 16:51   ` Thunder from the hill
  2002-07-24 16:54   ` Dave Jones
@ 2002-07-24 17:32   ` Andreas Dilger
  2 siblings, 0 replies; 5+ messages in thread
From: Andreas Dilger @ 2002-07-24 17:32 UTC (permalink / raw)
  To: jbradford; +Cc: Geert Uytterhoeven, linux-kernel

On Jul 24, 2002  17:49 +0100, jbradford@dial.pipex.com wrote:
> Just an idea, (and slightly off-topic), but would it be possible,
> (I.E. not a copyright infringement, and not liable to mess up any
> checksums anywhere), to replace the logo that typically occurs in X86
> BIOSen and fades away at boot, with a penguin?

Yes, I tried this once, but I never did get anything to display properly
(I _did_ remove the "energy star" logo though).  What I _was_ able to do
was put etherboot into my BIOS (which formerly only had Novel RPLboot
and not PXE).

Cheers, Andreas
--
Andreas Dilger
http://www-mddsp.enel.ucalgary.ca/People/adilger/
http://sourceforge.net/projects/ext2resize/


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

end of thread, other threads:[~2002-07-24 17:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-07-24 15:15 [PATCH] penguin logo code Geert Uytterhoeven
2002-07-24 16:49 ` jbradford
2002-07-24 16:51   ` Thunder from the hill
2002-07-24 16:54   ` Dave Jones
2002-07-24 17:32   ` Andreas Dilger

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