From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Glass Date: Tue, 29 May 2012 22:34:30 -0700 Subject: [U-Boot] [PATCH 1/2] patman: Change the location of patman config file In-Reply-To: <4FBD3372.9090904@gmail.com> References: <4FBD332B.7010400@gmail.com> <4FBD3372.9090904@gmail.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Wed, May 23, 2012 at 11:58 AM, Vikram Narayanan wrote: > Move the config file from ~/.config/patman to ~/.patman as it is > more appropriate to have it there. Update the same in the README. > > Signed-off-by: Vikram Narayanan > Cc: Simon Glass > Cc: Wolfgang Denk > Acked-by: Simon Glass > --- > tools/patman/README | 2 +- > tools/patman/settings.py | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tools/patman/README b/tools/patman/README > index 7ba9e80..1af8665 100644 > --- a/tools/patman/README > +++ b/tools/patman/README > @@ -68,7 +68,7 @@ How to configure it > For most cases patman will locate and use the file 'doc/git-mailrc' in > your U-Boot directory. This contains most of the aliases you will need. > > -To add your own, create a file ~/.config/patman directory like this: > +To add your own, create a file ~/.patman like this: > > >>>> > # patman alias file > diff --git a/tools/patman/settings.py b/tools/patman/settings.py > index 049c709..f980071 100644 > --- a/tools/patman/settings.py > +++ b/tools/patman/settings.py > @@ -69,7 +69,7 @@ def Setup(config_fname=''): > """ > settings = ConfigParser.SafeConfigParser() > if config_fname == '': > - config_fname = '%s/.config/patman' % os.getenv('HOME') > + config_fname = '%s/.patman' % os.getenv('HOME') > if config_fname: > settings.read(config_fname) > > -- > 1.7.4.1 > > >