Skip to content
Snippets Groups Projects
  1. Jul 14, 2022
    • Tom Rini's avatar
      doc: Add in the historical release statistics found on the wiki · 9bf08a63
      Tom Rini authored
      
      The wiki had gitdm-generated release statistics starting with v1.3.0.
      Re-generate this information as Sphinx.  This aims to be as historically
      accurate as possible and so some company renames were kept to their old
      rather than current name until we had made the switch previously.
      
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      9bf08a63
    • Tom Rini's avatar
      doc: process: Correct and expand slightly on the Merge Window concept · 105bccb3
      Tom Rini authored
      
      For quite a long time we've been using a 3 week, rather than 2 week,
      merge window as it was only 2 weeks during the timeframe where we did 2
      month rather than 3 month releases.  This corrects the places that still
      had 2 weeks and tries to make things a bit clearer overall.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      105bccb3
    • Tom Rini's avatar
      doc: Add doc/develop/release_cycle.rst · 6b484ba6
      Tom Rini authored
      
      Migrate the RelaseCycle wiki page to Sphinx.  In terms of visible
      changes, we stop having a dynamic countdown to when the release is.  And
      we drop the year-based statistics, that were not being kept up to date.
      For the moment, we only link to statistics for v2022.07 but will add
      back the historical data in a subsequent patch.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      6b484ba6
    • Tom Rini's avatar
      process.rst: Modernize the "Workflow of a Custodian" section · 61550734
      Tom Rini authored
      
      The "Workflow of a Custodian" section on the wiki had not been changed
      in quite some time to reflect how the process has been functioning for
      some time.  First, update some links to point to modern and current
      sources of information.
      
      Second, and more overarching, reword much of the section.  This expands
      on the expectations of both custodians and developers when it comes to
      rebasing patches.  Rework the final points to be clearer that Custodians
      are expected to do their best to test the changes and ask for help when
      needed, as well as that pull requests are expected in a timely manner.
      
      Cc: Claudius Heine <ch@denx.de>
      Cc: Martin Bonner <martingreybeard@gmail.com>
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      61550734
    • Tom Rini's avatar
      process.rst: Perform minor cleanups · 50a7adca
      Tom Rini authored
      
      - Use gender-neutral language to refer to the user, consistently.
      - Reword a few places so that they read more naturally.
      - Make the long standing practice around "Twilight Time" more clear,
        hopefully.
      - Replace a reference to MAKEALL with a reference to CI testing as
        that's the current requirement.
      
      Cc: Claudius Heine <ch@denx.de>
      Cc: Martin Bonner <martingreybeard@gmail.com>
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      50a7adca
    • Tom Rini's avatar
      designprinciples.rst: Perform minor cleanups · 2180aec5
      Tom Rini authored
      
      - Remove some missed wiki markup, and escape a "\n" correctly.
      - Use gender-neutral language to refer to the user, consistently.
      
      Cc: Claudius Heine <ch@denx.de>
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      2180aec5
    • Tom Rini's avatar
      doc: Migrate Process wiki page to Sphinx · dc1ad476
      Tom Rini authored
      
      Move the current Process wiki page to doc/develop/process.rst.  The
      changes here are for formatting or slight rewording so that it reads
      well when linking to other Sphinx documents.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      dc1ad476
    • Tom Rini's avatar
      doc: codingstyle: Remove comment about '//' style comments · a09d8567
      Tom Rini authored
      
      For some time now we've allowed for '//' style comments, which mirrors
      the Linux kernel.  So drop this point here.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      a09d8567
    • Tom Rini's avatar
      doc: Migrate DesignPrinciples wiki page to Sphinx · 528581e3
      Tom Rini authored
      
      Move the current DesignPrinciples wiki page to
      doc/develop/designprinciples.rst.  The changes here are for formatting
      or slight rewording so that it reads well when linking to other Sphinx
      documents.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      528581e3
    • Tom Rini's avatar
      doc: Migrate CodingStyle wiki page to Sphinx · 4211fb2e
      Tom Rini authored
      
      Move the current CodingStyle wiki page to doc/develop/codingstyle.rst.
      The changes here are for formatting or slight rewording so that it reads
      well when linking to other Sphinx documents.
      
      Cc: Heinrich Schuchardt <xypron.glpk@gmx.de>
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      4211fb2e
  2. Jul 13, 2022
  3. Jul 12, 2022
  4. Jul 07, 2022
  5. Jun 28, 2022
  6. Jun 23, 2022
  7. Jun 22, 2022
    • Rui Miguel Silva's avatar
      cmd: load: add load command for memory mapped · bfef72e4
      Rui Miguel Silva authored and Tom Rini's avatar Tom Rini committed
      
      cp.b is used a lot as a way to load binaries to memory and execute
      them, however we may need to integrate this with the efi subsystem to
      set it up as a bootdev.
      
      So, introduce a loadm command that will be consistent with the other
      loadX commands and will call the efi API's.
      
      ex: loadm $kernel_addr $kernel_addr_r $kernel_size
      
      with this a kernel with CONFIG_EFI_STUB enabled will be loaded and
      then subsequently booted with bootefi command.
      
      Signed-off-by: default avatarRui Miguel Silva <rui.silva@linaro.org>
      Reviewed-by: default avatarTom Rini <trini@konsulko.com>
      bfef72e4
  8. Jun 19, 2022
  9. Jun 17, 2022
Loading