Skip to content
Snippets Groups Projects
  1. Nov 25, 2013
  2. Nov 21, 2013
    • Stephen Warren's avatar
      buildman: make board selector argument a regex · 8426d8b0
      Stephen Warren authored
      
      A common use-case is to build all boards for a particular SoC. This can
      be achieved by:
      
      ./tools/buildman/buildman -b mainline_dev tegra20
      
      However, when the SoC is a member of a family of SoCs, and each SoC has
      a different name, it would be even more useful to build all boards for
      every SoC in that family. This currently isn't possible since buildman's
      board selection command-line arguments are compared to board definitions
      using pure string equality.
      
      To enable this, compare using a regex match instead. This matches
      MAKEALL's handling of command-line arguments. This enables:
      
      (all Tegra)
      ./tools/buildman/buildman -b mainline_dev tegra
      
      (all Tegra)
      ./tools/buildman/buildman -b mainline_dev '^tegra.*$'
      
      (all Tegra20, Tegra30 boards, but not Tegra114)
      ./tools/buildman/buildman -b mainline_dev 'tegra[23]'
      
      Signed-off-by: default avatarStephen Warren <swarren@nvidia.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      8426d8b0
    • Andreas Bießmann's avatar
      buildman: fix README · 61242ac5
      Andreas Bießmann authored
      
      This is a trivial fix for c'n'p error.
      
      Signed-off-by: default avatarAndreas Bießmann <andreas.devel@googlemail.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      61242ac5
    • Albert ARIBAUD's avatar
      patman: add Commit-notes tag and section · 5c8fdd91
      Albert ARIBAUD authored
      
      Sometimes a commit should have notes enclosed with it rather
      than withing the cover letter -- possibly even because there
      is no cover letter. Add a 'Commit-notes' tag, similar to the
      'Series-notes' one; lines between this tag and the next END
      line are inserted in the patch right after the '---' commit
      delimiter.
      
      Change-Id: I01e99ae125607dc6dec08f3be8a5a0b37f0a483d
      Signed-off-by: default avatarAlbert ARIBAUD <albert.u.boot@aribaud.net>
      Signed-off-by: default avatarSimon Glass <sjg@chromium.org>
      (Updated README)
      5c8fdd91
  3. Nov 17, 2013
Loading