forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1,836 changed files
with
53,100 additions
and
39,471 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1620,7 +1620,8 @@ D: fbdev hacking | |
|
||
N: Jesper Juhl | ||
E: [email protected] | ||
D: Various fixes, cleanups and minor features. | ||
D: Various fixes, cleanups and minor features all over the tree. | ||
D: Wrote initial version of the hdaps driver (since passed on to others). | ||
S: Lemnosvej 1, 3.tv | ||
S: 2300 Copenhagen S. | ||
S: Denmark | ||
|
@@ -2477,7 +2478,8 @@ S: Derbyshire DE4 3RL | |
S: United Kingdom | ||
|
||
N: Ian S. Nelson | ||
E: [email protected] | ||
E: [email protected] | ||
P: 1024D/00D3D983 3EFD 7B86 B888 D7E2 29B6 9E97 576F 1B97 00D3 D983 | ||
D: Minor mmap and ide hacks | ||
S: 1370 Atlantis Ave. | ||
S: Lafayette CO, 80026 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -59,11 +59,11 @@ Copyright: The copyright owner must agree to use of GPL. | |
are the same person/entity. If not, the name of | ||
the person/entity authorizing use of GPL should be | ||
listed in case it's necessary to verify the will of | ||
the copright owner. | ||
the copyright owner. | ||
|
||
Interfaces: If your driver uses existing interfaces and behaves like | ||
other drivers in the same class it will be much more likely | ||
to be accepted than if it invents gratuitous new ones. | ||
to be accepted than if it invents gratuitous new ones. | ||
If you need to implement a common API over Linux and NT | ||
drivers do it in userspace. | ||
|
||
|
@@ -88,7 +88,7 @@ Clarity: It helps if anyone can see how to fix the driver. It helps | |
it will go in the bitbucket. | ||
|
||
Control: In general if there is active maintainance of a driver by | ||
the author then patches will be redirected to them unless | ||
the author then patches will be redirected to them unless | ||
they are totally obvious and without need of checking. | ||
If you want to be the contact and update point for the | ||
driver it is a good idea to state this in the comments, | ||
|
@@ -100,7 +100,7 @@ What Criteria Do Not Determine Acceptance | |
Vendor: Being the hardware vendor and maintaining the driver is | ||
often a good thing. If there is a stable working driver from | ||
other people already in the tree don't expect 'we are the | ||
vendor' to get your driver chosen. Ideally work with the | ||
vendor' to get your driver chosen. Ideally work with the | ||
existing driver author to build a single perfect driver. | ||
|
||
Author: It doesn't matter if a large Linux company wrote the driver, | ||
|
@@ -116,17 +116,13 @@ Linux kernel master tree: | |
ftp.??.kernel.org:/pub/linux/kernel/... | ||
?? == your country code, such as "us", "uk", "fr", etc. | ||
|
||
Linux kernel mailing list: | ||
Linux kernel mailing list: | ||
[email protected] | ||
[mail [email protected] to subscribe] | ||
|
||
Linux Device Drivers, Third Edition (covers 2.6.10): | ||
http://lwn.net/Kernel/LDD3/ (free version) | ||
|
||
Kernel traffic: | ||
Weekly summary of kernel list activity (much easier to read) | ||
http://www.kerneltraffic.org/kernel-traffic/ | ||
|
||
LWN.net: | ||
Weekly summary of kernel development activity - http://lwn.net/ | ||
2.6 API changes: | ||
|
@@ -145,11 +141,8 @@ KernelNewbies: | |
Linux USB project: | ||
http://www.linux-usb.org/ | ||
|
||
How to NOT write kernel driver by [email protected] | ||
http://people.redhat.com/arjanv/olspaper.pdf | ||
How to NOT write kernel driver by Arjan van de Ven: | ||
http://www.fenrus.org/how-to-not-write-a-device-driver-paper.pdf | ||
|
||
Kernel Janitor: | ||
http://janitor.kernelnewbies.org/ | ||
|
||
-- | ||
Last updated on 17 Nov 2005. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -173,15 +173,15 @@ For small patches you may want to CC the Trivial Patch Monkey | |
[email protected] managed by Adrian Bunk; which collects "trivial" | ||
patches. Trivial patches must qualify for one of the following rules: | ||
Spelling fixes in documentation | ||
Spelling fixes which could break grep(1). | ||
Spelling fixes which could break grep(1) | ||
Warning fixes (cluttering with useless warnings is bad) | ||
Compilation fixes (only if they are actually correct) | ||
Runtime fixes (only if they actually fix things) | ||
Removing use of deprecated functions/macros (eg. check_region). | ||
Removing use of deprecated functions/macros (eg. check_region) | ||
Contact detail and documentation fixes | ||
Non-portable code replaced by portable code (even in arch-specific, | ||
since people copy, as long as it's trivial) | ||
Any fix by the author/maintainer of the file. (ie. patch monkey | ||
Any fix by the author/maintainer of the file (ie. patch monkey | ||
in re-transmission mode) | ||
URL: <http://www.kernel.org/pub/linux/kernel/people/bunk/trivial/> | ||
|
||
|
@@ -209,6 +209,19 @@ Exception: If your mailer is mangling patches then someone may ask | |
you to re-send them using MIME. | ||
|
||
|
||
WARNING: Some mailers like Mozilla send your messages with | ||
---- message header ---- | ||
Content-Type: text/plain; charset=us-ascii; format=flowed | ||
---- message header ---- | ||
The problem is that "format=flowed" makes some of the mailers | ||
on receiving side to replace TABs with spaces and do similar | ||
changes. Thus the patches from you can look corrupted. | ||
|
||
To fix this just make your mozilla defaults/pref/mailnews.js file to look like: | ||
pref("mailnews.send_plaintext_flowed", false); // RFC 2646======= | ||
pref("mailnews.display.disable_format_flowed_support", true); | ||
|
||
|
||
|
||
7) E-mail size. | ||
|
||
|
@@ -245,13 +258,13 @@ updated change. | |
It is quite common for Linus to "drop" your patch without comment. | ||
That's the nature of the system. If he drops your patch, it could be | ||
due to | ||
* Your patch did not apply cleanly to the latest kernel version | ||
* Your patch did not apply cleanly to the latest kernel version. | ||
* Your patch was not sufficiently discussed on linux-kernel. | ||
* A style issue (see section 2), | ||
* An e-mail formatting issue (re-read this section) | ||
* A technical problem with your change | ||
* He gets tons of e-mail, and yours got lost in the shuffle | ||
* You are being annoying (See Figure 1) | ||
* A style issue (see section 2). | ||
* An e-mail formatting issue (re-read this section). | ||
* A technical problem with your change. | ||
* He gets tons of e-mail, and yours got lost in the shuffle. | ||
* You are being annoying. | ||
|
||
When in doubt, solicit comments on linux-kernel mailing list. | ||
|
||
|
@@ -476,10 +489,10 @@ SECTION 3 - REFERENCES | |
Andrew Morton, "The perfect patch" (tpp). | ||
<http://www.zip.com.au/~akpm/linux/patches/stuff/tpp.txt> | ||
|
||
Jeff Garzik, "Linux kernel patch submission format." | ||
Jeff Garzik, "Linux kernel patch submission format". | ||
<http://linux.yyz.us/patch-format.html> | ||
|
||
Greg Kroah-Hartman "How to piss off a kernel subsystem maintainer". | ||
Greg Kroah-Hartman, "How to piss off a kernel subsystem maintainer". | ||
<http://www.kroah.com/log/2005/03/31/> | ||
<http://www.kroah.com/log/2005/07/08/> | ||
<http://www.kroah.com/log/2005/10/19/> | ||
|
@@ -488,9 +501,9 @@ Greg Kroah-Hartman "How to piss off a kernel subsystem maintainer". | |
NO!!!! No more huge patch bombs to [email protected] people! | ||
<http://marc.theaimsgroup.com/?l=linux-kernel&m=112112749912944&w=2> | ||
|
||
Kernel Documentation/CodingStyle | ||
Kernel Documentation/CodingStyle: | ||
<http://sosdg.org/~coywolf/lxr/source/Documentation/CodingStyle> | ||
|
||
Linus Torvald's mail on the canonical patch format: | ||
Linus Torvalds's mail on the canonical patch format: | ||
<http://lkml.org/lkml/2005/4/7/183> | ||
-- |
Oops, something went wrong.