19 Sep, 2012

1 commit


02 Sep, 2012

6 commits

  • In case an address is listed in the To list, those will be skipped on
    Cc list or user might end with a duplicated message.

    This fixes the case when a tag points to same address used as series
    destination thus avoiding duplicated sending.

    Signed-off-by: Otavio Salvador

    Otavio Salvador
     
  • When a patchset had a RFC series, a v1 might have a changelog of
    changes done since the RFC. The patch changes the range checked for
    changelog and allow it to start for version 1.

    Signed-off-by: Otavio Salvador
    Acked-by: Simon Glass

    Otavio Salvador
     
  • Currently patman assumes that there should be only one Signoff line
    and this is obviously incorrect: we often have to work with patches
    containing other people signoffs. Moreover, it's really desirable
    to preserve the comments between signoffs.

    So until some sophisticated signoff processing will be developed I
    suggest just don't mess with signoffs at all and treat them like
    plain text lines. The only drawback I've found so far is the case
    where you have a patch with someones else signoff but not yours and
    also have to patman tags under signoff line. In this case you will
    get extra empty line between signoffs.

    Signed-off-by: Ilya Yanok

    Ilya Yanok
     
  • Don't try to sort and uniq changelog entries as this breaks
    multiline entries. It will be better to add some real multi-line
    support but for now just preserve the entries as is.

    Signed-off-by: Ilya Yanok

    Ilya Yanok
     
  • We already got all changes from git log output and the comment
    to the ProcessLine function clearly states that 'patch' mode
    is not for scanning tags.

    Signed-off-by: Ilya Yanok

    Ilya Yanok
     
  • Changes may end in '---' line or Signoff line (generated by
    git format-patch) in case of Series-changes: lines being
    the last ones in commit message. So detect it properly.

    Signed-off-by: Ilya Yanok

    Ilya Yanok
     

11 Aug, 2012

1 commit


28 Jul, 2012

1 commit


20 Jul, 2012

1 commit


09 Jul, 2012

1 commit


07 Jul, 2012

1 commit


03 Jul, 2012

1 commit

  • Use the POSIX variant of basename due to BSD systems (e.g. OS X) do not provide
    GNU version of basename(3). It is save to use the POSIX variant here cause we do
    never use argv[0] later on which may be modified by the basename(3) POSIX
    variant.
    On systems providing GNU variant the GNU variant should be used since string.h
    is included before libgen.h. Therefore let the _GNU_SOURCE as is.

    This patch fixes following warning (on OS X):
    ---88---

    Signed-off-by: Andreas Bießmann
    cc: Keith Mok

    Andreas Bießmann
     

22 Jun, 2012

2 commits


20 Jun, 2012

3 commits

  • patman shouts when it couldn't find a $(HOME)/.patman file.
    Handle it in a sane way by creating a new one for the user.
    It looks for a user.name and user.email in the global .gitconfig
    file, waits for the user input if it can't find there. Update the
    same in the README

    Signed-off-by: Vikram Narayanan
    Acked-by: Simon Glass
    Cc: Simon Glass
    Cc: Wolfgang Denk

    Vikram Narayanan
     
  • 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

    Vikram Narayanan
     
  • Compressing the logos with lzma rather than gzip saves ~9kb with the
    Blackfin 24bit images and ~3kb with the 16bit images.

    Add a new -l option to easylogo so people can pick lzma as their
    decompression routine.

    Signed-off-by: Mike Frysinger

    Mike Frysinger
     

15 May, 2012

1 commit


30 Apr, 2012

2 commits


22 Apr, 2012

1 commit


21 Apr, 2012

1 commit

  • What is this?

    =============

    This tool is a Python script which:
    - Creates patch directly from your branch
    - Cleans them up by removing unwanted tags
    - Inserts a cover letter with change lists
    - Runs the patches through checkpatch.pl and its own checks
    - Optionally emails them out to selected people

    It is intended to automate patch creation and make it a less
    error-prone process. It is useful for U-Boot and Linux work so far,
    since it uses the checkpatch.pl script.

    It is configured almost entirely by tags it finds in your commits.
    This means that you can work on a number of different branches at
    once, and keep the settings with each branch rather than having to
    git format-patch, git send-email, etc. with the correct parameters
    each time. So for example if you put:

    in one of your commits, the series will be sent there.

    See the README file for full details.
    END

    Signed-off-by: Simon Glass

    Simon Glass
     

11 Apr, 2012

1 commit

  • Fix the compiler warning

    mkenvimage.c: In function ‘main’:
    mkenvimage.c:218: warning: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘unsigned int’
    mkenvimage.c:226: warning: format ‘%ld’ expects type ‘long int’, but argument 3 has type ‘unsigned int’

    introduced with the commit

    mkenvimage: Use mmap() when reading from a regular file
    6ee39f8055680654f9cc97b98dcce9588f1ab71e

    Signed-off-by: Dirk Behme
    CC: David Wagner
    CC: Anatolij Gustschin
    CC: Mike Frysinger
    Acked-by: Mike Frysinger
    Acked-by: David Wagner

    Dirk Behme
     

31 Mar, 2012

1 commit

  • * 'agust@denx.de' of git://git.denx.de/u-boot-staging:
    lzma: fix printf warnings
    Remove CONFIG_SYS_EXTBDINFO from snapper9260.h
    cmd_pxe.c: fix strict-aliasing warnings
    net: smc91111: use mdelay()
    doc: Fix some typos in different files
    disk/part.c: Fix device enumeration through API
    mkenvimage: Really set the redundant byte when applicable
    mkenvimage: Don't try to detect comments in the input file
    mkenvimage: Use mmap() when reading from a regular file
    mkenvimage: Read/Write from/to stdin/out by default or if the filename is "-"
    mkenvimage: More error handling
    mkenvimage: Correct an include and add a missing one
    mkenvimage: correct and clarify comments and error messages
    MAKEALL: display SPL size if present
    ARMV7/Vexpress: add missing get_ticks() and get_tbclk()
    mkenvimage: fix usage message
    cmd_fat: add FAT write command
    fs/fat/fat_write.c: Fix GCC 4.6 warnings
    FAT write: Fix compile errors

    Wolfgang Denk
     

27 Mar, 2012

8 commits


26 Mar, 2012

1 commit

  • Don't use argv[0] for usage() because it may or may not be clobbered
    by the previous call to basename(). Use "prg" instead as it is done
    in the rest of the code.

    Signed-off-by: Wolfgang Denk
    Acked-by: Mike Frysinger

    Wolfgang Denk
     

18 Mar, 2012

1 commit


07 Mar, 2012

1 commit


12 Feb, 2012

4 commits