Skip to content
Snippets Groups Projects
  1. Mar 30, 2015
  2. Mar 28, 2015
    • Brian McFarland's avatar
      Patch to mkenvimage to handle text files with length that exceed env size · 80ee0196
      Brian McFarland authored
      The current head revision of mkenvimage
      (e72be894) will prevent you from creating
      an env image from a text file that is larger than the env length specified
      by the '-s' option.  That doesn't make sense given that the tool now allows
      comments and blank lines.  This patch removes that limitation and allows
      longer text files to be used.
      
      I don't have time / desire at the moment to figure out "patman" and could
      really care less if this is adopted up stream.  Just figured I would share
      in case anybody else finds it useful enough to take time to do a proper
      patch.
      
      >From 39ff30190c2bf687861f4b4b33230f1944fb64f9 Mon Sep 17 00:00:00 2001
      From: Brian McFarland <bmcfarland@rldrake.com>
      Date: Thu, 12 Mar 2015 11:37:19 -0400
      Subject: [PATCH] In mkenvimage, removed the check that prevented using a
       source text file larger than the output environment image.  Instead, the main
       parsing loop checks to see if the environment buffer is full, and quits if it
       is.  After the main parse loop, a second loop swallows comments and
       whitespace until either the EOF is reached or more env vars are found, in
       which case an error will be thrown.
      80ee0196
  3. Mar 05, 2015
  4. Feb 17, 2015
  5. Feb 16, 2015
  6. Feb 15, 2015
  7. Feb 10, 2015
  8. Feb 07, 2015
  9. Feb 06, 2015
  10. 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
  11. Jan 29, 2015
  12. Jan 19, 2015
  13. Jan 15, 2015
Loading