diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-08-07 18:24:25 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2009-08-07 18:24:25 +0200 |
commit | c57a08f7bc2b0112e85ab196c4f33ac9563425a0 (patch) | |
tree | 82636075e19f09edd2ad53584450ae8272e251f0 /README | |
parent | ff781288f336c658911fcdadbffc107e79a8515d (diff) | |
download | crosstool-ng-c57a08f7bc2b0112e85ab196c4f33ac9563425a0.tar.gz crosstool-ng-c57a08f7bc2b0112e85ab196c4f33ac9563425a0.tar.bz2 crosstool-ng-c57a08f7bc2b0112e85ab196c4f33ac9563425a0.zip |
Update README on how to send proper patches
Add a few lines of explanations on how to correctly setup
and use Mercurial to send proper patches.
Diffstat (limited to 'README')
-rw-r--r-- | README | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -45,6 +45,35 @@ Patches should come with the appropriate SoB line. A SoB line is typically The SoB line is clearly described in Documentation/SubmittingPatches , section 12, of your favourite Linux kernel source tree. +Then you'll need to correctly configure Mercurial. There are two extensions +that you may find usefull: + - mq : http://mercurial.selenic.com/wiki/MqExtension + - patchbomb : http://mercurial.selenic.com/wiki/PatchbombExtension + +Here's a typical hacking session: + hg clone http://ymorin.is-a-geek.org/hg/crosstool-ng crosstool-ng + cd crosstool-ng + hg qinit + hg qnew -D -U -e my_first_patch + *edit patch description* + *hack* *hack* *check* *fails* *hack* *hack* *check* *works* + hg qref -D -e + *edit patch description, serving as commit message* + hg qnew -D -U -e my_second_patch + *edit patch description* + *hack* *hack* *check* *fails* *hack* *hack* *check* *works* + hg qref -D -e + *edit patch description, serving as commit message* + hg email --outgoing --intro \ + --from '"Your Full NAME" <your.email (at) your.domain>' \ + --to '"Yann E. MORIN" <yann.morin.1998 (at) anciens.enib.fr>' \ + --cc 'crossgcc (at) sourceware.org' + *edit introductory message* + *wait for feedback* + *re-send if no answer for a few days* + +Note: replace' (at) ' above with a plain '@'. + CREDITS / _______/ |