Skip to content
Snippets Groups Projects
  1. Feb 10, 2015
  2. Feb 07, 2015
  3. Feb 06, 2015
  4. Jan 30, 2015
    • Simon Glass's avatar
      patman: Explain how to make doc/git-mailrc work · 3d4de986
      Simon Glass authored
      
      Add an explanation for how to set up git so that patman can find the alias
      file. Fix up the get_maintainers message too.
      
      Reported-by: default avatarScott Wood <scottwood@freescale.com>
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      3d4de986
    • Scott Wood's avatar
      patman: Check commit_match before stripping leading whitespace · 4b89b813
      Scott Wood authored
      
      True commit lines start at column zero.  Anything that is indented
      is part of the commit message instead.  I noticed this by trying to
      run buildman with commit e3a4facd
      as master, which contained a reference to a Linux commit inside
      the commit message.  ProcessLine saw that as a genuite commit
      line, and thus buildman tried to build it, and died with an
      exception because that SHA is not present in the U-Boot tree.
      
      Signed-off-by: default avatarScott Wood <scottwood@freescale.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      4b89b813
    • Peter Tyser's avatar
      patman: Make dry-run output match real functionality · 2181830f
      Peter Tyser authored
      
      When run with the --dry-run argument patman prints out information
      showing what it would do.  This information currently doesn't line up
      with what patman/git send-email really do.  Some basic examples:
      - If an email address is addressed via "Series-cc" and "Patch-cc" patman
        shows that email address would be CC-ed two times.
      - If an email address is addressed via "Series-to" and "Patch-cc" patman
        shows that email address would be sent TO and CC-ed.
      - If an email address is addressed from a combination of tag aliases,
        get_maintainer.pl output, "Series-cc", "Patch-cc", etc patman shows
        that the email address would be CC-ed multiple times.
      
      Patman currently does try to send duplicate emails like the --dry-run
      output shows, but "git send-email" intelligently removes duplicate
      addresses so this patch shouldn't change the non-dry-run functionality.
      
      Change patman's output and email addressing to line up with the
      "git send-email" logic.  This trims down patman's dry-run output and
      prevents confusion about what patman will do when emails are actually
      sent.
      
      Signed-off-by: default avatarPeter Tyser <ptyser@xes-inc.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      Tested-by: default avatarSimon Glass <sjg@chromium.org>
      2181830f
    • Ruchika Gupta's avatar
      Use hash.c in mkimage · 2dd90027
      Ruchika Gupta authored
      
      Signed-off-by: default avatarRuchika Gupta <ruchika.gupta@freescale.com>
      CC: Simon Glass <sjg@chromium.org>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      2dd90027
    • Ruchika Gupta's avatar
      rsa: Split the rsa-verify to separate the modular exponentiation · fc2f4246
      Ruchika Gupta authored
      
      Public exponentiation which is required in rsa verify functionality is
      tightly integrated with verification code in rsa_verify.c. The patch
      splits the file into twp separating the modular exponentiation.
      
      1. rsa-verify.c
      - The file parses device tree keys node to fill a keyprop structure.
      The keyprop structure can then be converted to implementation specific
      format.
      (struct rsa_pub_key for sw implementation)
      - The parsed device tree node is then passed to a generic rsa_mod_exp
      function.
      
      2. rsa-mod-exp.c
      Move the software specific functions related to modular exponentiation
      from rsa-verify.c to this file.
      
      Signed-off-by: default avatarRuchika Gupta <ruchika.gupta@freescale.com>
      CC: Simon Glass <sjg@chromium.org>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      fc2f4246
  5. Jan 29, 2015
  6. Jan 19, 2015
  7. Jan 15, 2015
  8. Jan 13, 2015
  9. Jan 11, 2015
    • Andreas Bießmann's avatar
      tools/kwbimage.c: fix parser error handling · f411b8f2
      Andreas Bießmann authored
      
      The two error checks for image_boot_mode_id and image_nand_ecc_mode_id where
      wrong and would never fail, fix that!
      
      This was detected by Apple's clang compiler:
      ---8<---
        HOSTCC  tools/kwbimage.o
      tools/kwbimage.c:553:20: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
                      if (el->bootfrom < 0) {
                          ~~~~~~~~~~~~ ^ ~
      tools/kwbimage.c:571:23: warning: comparison of unsigned expression < 0 is always false [-Wtautological-compare]
                      if (el->nandeccmode < 0) {
                          ~~~~~~~~~~~~~~~ ^ ~
      2 warnings generated.
      --->8---
      
      Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
      Acked-By: default avatarJeroen Hofstee <jeroen@myspectrum.nl>
      f411b8f2
  10. Jan 10, 2015
  11. Dec 29, 2014
  12. Dec 19, 2014
Loading