From mboxrd@z Thu Jan 1 00:00:00 1970 From: Romain Lenglet Subject: Re: [Xenomai-help] Modification of the PSOS skin. [update] Date: Wed, 5 Jul 2006 21:02:08 +0900 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200607052102.08369.rlenglet@domain.hid> List-Id: Help regarding installation and common use of Xenomai List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: xenomai@xenomai.org Jan Kiska wrote: > Just a hint on the preferred patch format: either generate a > diff of individual modified files by invoking "diff -up file > file.orig >> my.patch" or Just to be picky, the original file is the 1st argument, and the modified file the 2nd one: diff ... file.orig file And traditionally, people rather use the "normalized" diff format. This is the one recommended in the patch(1) manpage. I personally like the following diff options: diff -Naurd file.orig file Mnemotechnic tip: Naurd == Nerd ;-) -- Romain LENGLET