linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Cosmetic JFFS patch.
@ 2001-06-26 12:52 David Woodhouse
  2001-06-27 20:50 ` Linus Torvalds
  0 siblings, 1 reply; 92+ messages in thread
From: David Woodhouse @ 2001-06-26 12:52 UTC (permalink / raw)
  To: torvalds, alan; +Cc: jffs-dev, linux-kernel

Linus, Alan - Please apply the following self-explanatory patch.

Index: fs/jffs/inode-v23.c
===================================================================
RCS file: /inst/cvs/linux/fs/jffs/Attic/inode-v23.c,v
retrieving revision 1.1.2.11
diff -u -u -r1.1.2.11 inode-v23.c
--- fs/jffs/inode-v23.c	2001/06/02 16:19:32	1.1.2.11
+++ fs/jffs/inode-v23.c	2001/06/26 12:50:36
@@ -1722,6 +1722,12 @@
 	printk("JFFS version "
 	       JFFS_VERSION_STRING
 	       ", (C) 1999, 2000  Axis Communications AB\n");
+	/* LynuxWorks are politely reminded that removing copyright
+	   notices is an offence under the Copyright Design and
+	   Patents Act 1988, and under equivalent non-UK law in
+	   accordance with the Berne Convention. */
+	printk("Portions (C) 2000, 2001 Red Hat, Inc.\n");
+	
 	return register_filesystem(&jffs_fs_type);
 }
 



--
dwmw2



^ permalink raw reply	[flat|nested] 92+ messages in thread
* RE: Cosmetic JFFS patch.
@ 2001-06-29  0:29 A. Melon
  0 siblings, 0 replies; 92+ messages in thread
From: A. Melon @ 2001-06-29  0:29 UTC (permalink / raw)
  To: linux-kernel

Linus Torvalds hath spoken:
> I don't _have_ any instances of my name being printed out to annoy the
> user, so that's a very theoretical argument.

There is, of course, only one way to be fair about this.

And that is to apply this patch to init/main.c:

518a519
>       printk("Linux is a registered trademark of Linus Torvalds.\n");


^ permalink raw reply	[flat|nested] 92+ messages in thread
* Re: Cosmetic JFFS patch.
@ 2001-06-29 11:01 Martin Knoblauch
  2001-07-01  6:39 ` Hua Zhong
  0 siblings, 1 reply; 92+ messages in thread
From: Martin Knoblauch @ 2001-06-29 11:01 UTC (permalink / raw)
  To: linux-kernel

>Olaf Hering wrote: 
>> kde.o. 2.5? 
>
>Good idea! Graphics needs to be in the kernel to be fast. Windows 
>proved that. 

 thought SGI proved that :-)

Martin
-- 
------------------------------------------------------------------
Martin Knoblauch         |    email:  Martin.Knoblauch@TeraPort.de
TeraPort GmbH            |    Phone:  +49-89-510857-309
C+ITS                    |    Fax:    +49-89-510857-111
http://www.teraport.de   |    Mobile: +49-170-4904759

^ permalink raw reply	[flat|nested] 92+ messages in thread
[parent not found: <993825330.30635@whiskey.enposte.net>]
* RE: Cosmetic JFFS patch.
@ 2001-06-30 18:26 Torrey Hoffman
  2001-07-01  9:27 ` Kai Henningsen
  0 siblings, 1 reply; 92+ messages in thread
From: Torrey Hoffman @ 2001-06-30 18:26 UTC (permalink / raw)
  To: 'Daniel Stone', Christoph Zens
  Cc: chuckw, Aaron Lehmann, Vipin Malik, David Woodhouse, jffs-dev,
	linux-kernel

(cc's trimmed a little.)

As someone who actually has created an embedded Linux distribution
for a set top box, I can say that the boot output has never been
a problem for me.   I like verbose output, it's useful.

Developers probably know that once you have the system booting 
nicely and you've quit messing with the kernel, you can put
APPEND = "console=/dev/tty2 CONSOLE=/dev/tty2"
in lilo.conf.

With framebuffer support and a custom, full screen boot logo, the 
graphics appear immediately after the kernel starts, and no text
ever appears on screen.  After init gets going, you can continue to 
dump text output to tty2 while you display pretty pictures in the 
framebuffer or start X.   

So, I can't see verbose text output being a problem for anyone 
developing for embedded systems... that memory is all freed after 
boot anyway.

So here's a real copyright / trademark / GPL question:

Suppose some embedded Linux system developer wants to put their 
trademarked, copyrighted logo on the screen during the boot.

So they compile it into the linux_logo.h image. It's now under the 
GPL, of course... what does that do to the legal status of the logo?   

Incidentally, the copyright and other messages have never bothered me.  

I figure if some company is going to do me the favor of sponsoring 
development of software I can use for free, I really don't mind being 
reminded of it.   MP3.com definitely scores karma points with me for 
sponsoring Reiser, for instance.

Torrey Hoffman


^ permalink raw reply	[flat|nested] 92+ messages in thread
* RE: Cosmetic JFFS patch.
@ 2001-07-05 12:41 Heusden, Folkert van
  0 siblings, 0 replies; 92+ messages in thread
From: Heusden, Folkert van @ 2001-07-05 12:41 UTC (permalink / raw)
  To: Anuradha Ratnaweera, Alan Cox
  Cc: chuckw, Vipin Malik, Aaron Lehmann, Linus Torvalds,
	David Woodhouse, jffs-dev, linux-kernel

> Leave the copyright messages alone is all I can say. And as to your flag,
> well we've got one. Try the 'quiet' boot option
YOU> Leaving copyright messages also saves the purpose of motivating - not
all but
YOU> many - developers.  People who _see_ the printk copyright messages is a
_very_
YOU> large superset of people who _look_ at source code, or ChangeLog /
CREDITS /
YOU> MAINTAINERS files.
YOU> After all many copyright messages are not that annoying.

Suggestion: make the buffer-size for these messages configurable at make
config -time.
So; people can define wether they want the message or not. If size=0, the
printk-thing
could be replaced with
#define printk(x)  /*nothing*/
Nice for the embedded linux-system people.


Greetings,

Folkert van Heusden
[ www.vanheusden.com ]

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

end of thread, other threads:[~2001-07-08 17:37 UTC | newest]

Thread overview: 92+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-06-26 12:52 Cosmetic JFFS patch David Woodhouse
2001-06-27 20:50 ` Linus Torvalds
2001-06-27 22:09   ` Alan Cox
2001-06-27 22:16     ` Linus Torvalds
2001-06-28  7:43       ` Patrick Dreker
2001-06-28  8:07         ` Greg KH
2001-06-28 17:05         ` Linus Torvalds
2001-06-28 17:14           ` Alan Cox
2001-06-28 17:51             ` Craig Milo Rogers
2001-06-28 18:06               ` Alan Cox
2001-06-29  2:30             ` Keith Owens
2001-06-28 17:18           ` David Woodhouse
2001-06-28 17:22             ` Alan Cox
2001-06-28 18:28             ` Pekka Pietikainen
2001-06-30 11:42             ` Ben Ford
2001-06-28 17:50           ` Troy Benjegerdes
2001-06-28 19:00           ` Jeff Garzik
2001-06-28 19:25             ` Gerhard Mack
2001-06-28 19:31               ` Jeff Garzik
2001-06-30 10:52                 ` Pavel Machek
2001-06-28 19:25             ` Linus Torvalds
2001-06-28 19:34               ` Jeff Garzik
2001-06-29  3:22             ` Ian Stirling
2001-06-29 11:27               ` Juan Quintela
2001-06-29 12:00                 ` Craig McLean
2001-06-29 19:47                   ` Hacksaw
2001-06-30 22:17           ` Adam Sampson
2001-06-28  5:54   ` Aaron Lehmann
2001-06-28  8:39     ` Laramie Leavitt
2001-06-28  9:19       ` Bjorn Wesen
2001-06-28 10:57         ` David Weinehall
2001-06-28 12:01       ` Alan Cox
2001-06-28 17:47       ` Troy Benjegerdes
2001-06-28 22:04         ` J . A . Magallon
2001-06-29  2:16           ` Hacksaw
2001-06-28 14:37     ` chuckw
2001-06-28 16:14       ` Vipin Malik
2001-06-28 16:24         ` chuckw
2001-06-28 16:25           ` David Woodhouse
2001-06-28 21:30             ` John R Lenton
2001-06-28 21:34               ` Jeff Garzik
2001-06-28 21:43                 ` Olaf Hering
2001-06-28 21:46                   ` Jeff Garzik
2001-06-29 19:36             ` Riley Williams
2001-06-28 16:26           ` Alan Cox
2001-06-28 17:12             ` Linus Torvalds
2001-06-28 17:18               ` Alan Cox
2001-06-28 17:26                 ` Linus Torvalds
2001-06-28 17:35                   ` David Woodhouse
2001-06-28 17:56                     ` Linus Torvalds
2001-06-28 18:13                       ` David Woodhouse
2001-06-28 22:01                     ` Kai Henningsen
2001-06-28 17:29                 ` chuckw
2001-06-28 17:30                   ` Aaron Lehmann
2001-06-28 17:41                     ` chuckw
2001-06-28 17:58                       ` Linus Torvalds
2001-06-28 18:17                         ` Christoph Zens
2001-06-30  2:52                           ` Daniel Stone
2001-06-28 18:16                       ` Tommy Reynolds
2001-06-28 18:36                         ` Miquel van Smoorenburg
2001-06-28 18:53                           ` Jeff Garzik
2001-06-28 19:09                           ` Dan Podeanu
2001-06-28 20:18                             ` Craig Milo Rogers
2001-07-01  6:32                               ` Hua Zhong
2001-07-01  7:22                                 ` Ian Stirling
2001-06-29 13:43                           ` Holger Lubitz
2001-06-29 14:36                             ` Jordan Crouse
2001-06-29 15:09                             ` Daniel Phillips
2001-06-29 17:43                               ` Chris Boot
2001-06-29 17:26                             ` David Lang
2001-06-30 11:07                               ` szonyi calin
2001-06-29 17:19                           ` Rob Landley
2001-06-28 17:55                   ` Linus Torvalds
2001-06-29  6:03                   ` Paul Mackerras
2001-06-29  6:29                     ` Cort Dougan
2001-06-29  7:44                     ` Paul Mackerras
2001-06-29  8:10                 ` Chris Wedgwood
2001-07-01 19:14             ` Anuradha Ratnaweera
2001-06-28 22:20     ` Kai Henningsen
2001-06-29 14:33       ` Chuck Wolber
2001-07-01  9:15       ` Kai Henningsen
2001-06-28  7:18   ` PATCH 2.4.6.5: fix mtd config David Woodhouse
2001-06-29  0:29 Cosmetic JFFS patch A. Melon
2001-06-29 11:01 Martin Knoblauch
2001-07-01  6:39 ` Hua Zhong
2001-07-01  7:21   ` Gregory Finch
     [not found] <993825330.30635@whiskey.enposte.net>
2001-06-29 20:13 ` Stuart Lynne
2001-06-30 20:39   ` Raja R Harinath
2001-07-02  8:38   ` Craig McLean
2001-06-30 18:26 Torrey Hoffman
2001-07-01  9:27 ` Kai Henningsen
2001-07-05 12:41 Heusden, Folkert van

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).