Merge branch '2022-07-14-migrate-wiki-to-sphinx'
- Merge the majority of the relevant wiki content to doc/process/ and
convert to Sphinx. Begin cleaning up and modernizing the content as
well to match current process. There is still more work to be done in
this regard.
diff --git a/doc/develop/codingstyle.rst b/doc/develop/codingstyle.rst
new file mode 100644
index 0000000..2b13818
--- /dev/null
+++ b/doc/develop/codingstyle.rst
@@ -0,0 +1,252 @@
+.. SPDX-License-Identifier: GPL-2.0+:
+
+U-Boot Coding Style
+===================
+
+The following Coding Style requirements shall be mandatory for all code contributed to
+the U-Boot project.
+
+Exceptions are only allowed if code from other projects is integrated with no
+or only minimal changes.
+
+The following rules apply:
+
+* All contributions to U-Boot should conform to the `Linux kernel
+ coding style <https://www.kernel.org/doc/html/latest/process/coding-style.html>`_
+ and the `Lindent script <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/Lindent>`_.
+ * The exception for net files to the `multi-line comment
+ <https://www.kernel.org/doc/html/latest/process/coding-style.html#commenting>`_
+ applies only to Linux, not to U-Boot. Only large hunks which are copied
+ unchanged from Linux may retain that comment format.
+
+* Use patman to send your patches (``tools/patman/patman -H`` for full
+ instructions). With a few tags in your commits this will check your patches
+ and take care of emailing them.
+
+* If you don't use patman, make sure to run ``scripts/checkpatch.pl``. For
+ more information, read :doc:`checkpatch`. Note that this should be done
+ *before* posting on the mailing list!
+
+* Source files originating from different projects (for example the MTD
+ subsystem or the hush shell code from the BusyBox project) may, after
+ careful consideration, be exempted from these rules. For such files, the
+ original coding style may be kept to ease subsequent migration to newer
+ versions of those sources.
+
+* Please also stick to the following formatting rules:
+
+ * Remove any trailing white space
+
+ * Use TAB characters for indentation and vertical alignment, not spaces
+
+ * The exception here is Python which requires 4 spaces instead.
+
+ * All source files need to be in "Unix" and not "DOS" or "Windows" formatted,
+ with respect to line ends.
+
+ * Do not add more than 2 consecutive empty lines to source files
+
+ * Do not add trailing empty lines to source files
+
+ * Using the option ``git config --global color.diff auto`` will help to
+ visually see whitespace problems in ``diff`` output from ``git``.
+
+ * In Emacs one can use ``=M-x whitespace-global-mode=`` to get visual
+ feedback on the nasty details. ``=M-x whitespace-cleanup=`` does The Right
+ Thing (tm)
+
+Submissions of new code or patches that do not conform to these requirements
+shall be rejected with a request to reformat the changes.
+
+U-Boot Code Documentation
+-------------------------
+
+U-Boot adopted the kernel-doc annotation style, this is the only exception from
+multi-line comment rule of Coding Style. While not mandatory, adding
+documentation is strongly advised. The Linux kernel `kernel-doc
+<https://www.kernel.org/doc/html/latest/doc-guide/kernel-doc.html>`_
+documentation applies with no changes.
+
+Use structures for I/O access
+-----------------------------
+
+U-Boot typically uses a C structure to map out the registers in an I/O region,
+rather than offsets. The reasons for this are:
+
+* It dissociates the register location (offset) from the register type, which
+ means the developer has to make sure the type is right for each access,
+ whereas with the struct method, this is checked by the compiler;
+
+* It avoids actually writing all offsets, which is (more) error-prone;
+
+* It allows for better compile time sanity-checking of values we write to registers.
+
+Some reasons why you might not use C structures:
+
+* Where the registers appear at different offsets in different hardware
+ revisions supported by the same driver
+
+* Where the driver only uses a small subset of registers and it is not worth
+ defining a struct to cover them all, with large empty regions
+
+* Where the offset of a register might be hard to figure out when buried a long
+ way down a structure, possibly with embedded sub-structures
+
+* This may need to change to the kernel model if we allow for more run-time
+ detection of what drivers are appropriate for what we're running on.
+
+Please use the check_member() macro to verify that your structure is the
+expected size, or that particular members appear at the right offset.
+
+Include files
+-------------
+
+You should follow this ordering in U-Boot. The common.h header (which is going
+away at some point) should always be first, followed by other headers in order,
+then headers with directories, then local files:
+
+.. code-block:: C
+
+ #include <common.h>
+ #include <bootstage.h>
+ #include <dm.h>
+ #include <others.h>
+ #include <asm/...>
+ #include <arm/arch/...>
+ #include <dm/device_compat/.h>
+ #include <linux/...>
+ #include "local.h"
+
+Within that order, sort your includes.
+
+It is important to include common.h first since it provides basic features used
+by most files, e.g. CONFIG options.
+
+For files that need to be compiled for the host (e.g. tools), you need to use
+``#ifndef USE_HOSTCC`` to avoid including common.h since it includes a lot of
+internal U-Boot things. See common/image.c for an example.
+
+If your file uses driver model, include <dm.h> in the C file. Do not include
+dm.h in a header file. Try to use forward declarations (e.g. ``struct
+udevice``) instead.
+
+Filenames
+---------
+
+For .c and .h files try to use underscore rather than hyphen unless you want
+the file to stand out (e.g. driver-model uclasses should be named xxx-uclass.h.
+Avoid upper case and keep the names fairly short.
+
+Function and struct comments
+----------------------------
+
+Non-trivial functions should have a comment which describes what they do. If it
+is an exported function, put the comment in the header file so the API is in
+one place. If it is a static function, put it in the C file.
+
+If the function returns errors, mention that and list the different errors that
+are returned. If it is merely passing errors back from a function it calls,
+then you can skip that.
+
+See `here
+<https://www.kernel.org/doc/html/latest/doc-guide/kernel-doc.html#function-documentation>`_
+for style.
+
+Driver model
+------------
+
+When declaring a device, try to use ``struct udevice *dev``, i.e. ``dev`` as the name:
+
+.. code-block:: C
+
+ struct udevice *dev;
+
+Use ``ret`` as the return value:
+
+.. code-block:: C
+
+ struct udevice *dev;
+ int ret;
+
+ ret = uclass_first_device_err(UCLASS_ACPI_PMC, &dev);
+ if (ret)
+ return log_msg_ret("pmc", dev);
+
+Consider using log_ret() or log_msg_ret() to return a value (see above).
+
+Add a ``p`` suffix on return arguments:
+
+.. code-block:: C
+
+ int dm_pci_find_class(uint find_class, int index, struct udevice **devp)
+ {
+ ...
+ *devp = dev;
+
+ return 0;
+ }
+
+There are standard variable names that you should use in drivers:
+
+* ``struct xxx_priv`` and ``priv`` for dev_get_priv()
+
+* ``struct xxx_plat`` and ``plat`` for dev_get_platdata()
+
+For example:
+
+.. code-block:: C
+
+ struct simple_bus_plat {
+ u32 base;
+ u32 size;
+ u32 target;
+ };
+
+ /* Davinci MMC board definitions */
+ struct davinci_mmc_priv {
+ struct davinci_mmc_regs *reg_base; /* Register base address */
+ uint input_clk; /* Input clock to MMC controller */
+ struct gpio_desc cd_gpio; /* Card Detect GPIO */
+ struct gpio_desc wp_gpio; /* Write Protect GPIO */
+ };
+
+ struct rcar_gpio_priv *priv = dev_get_priv(dev);
+
+ struct pl01x_serial_platdata *plat = dev_get_platdata(dev);
+
+Other
+-----
+
+Some minor things:
+
+* Put a blank line before the last ``return`` in a function unless it is the only line:
+
+.. code-block:: C
+
+ struct udevice *pci_get_controller(struct udevice *dev)
+ {
+ while (device_is_on_pci_bus(dev))
+ dev = dev->parent;
+
+ return dev;
+ }
+
+Tests
+-----
+
+Please add tests when you add code. Please change or expand tests when you change code.
+
+Run the tests with::
+
+ make check
+ make qcheck (skips some tests)
+
+Python tests are in test/py/tests - see the docs in test/py for info.
+
+Try to write your tests in C if you can. For example, tests to check a command
+will be much faster (10-100x or more) if they can directly call run_command()
+and ut_check_console_line() instead of using Python to send commands over a
+pipe to U-Boot.
+
+Tests run all supported CI systems (gitlab, travis, azure) using scripts in the
+root of the U-Boot tree.
diff --git a/doc/develop/designprinciples.rst b/doc/develop/designprinciples.rst
new file mode 100644
index 0000000..f01d562
--- /dev/null
+++ b/doc/develop/designprinciples.rst
@@ -0,0 +1,205 @@
+.. SPDX-License-Identifier: GPL-2.0+:
+
+U-Boot Design Principles
+========================
+
+The 10 Golden Rules of U-Boot design
+------------------------------------
+
+Keep it Small
+^^^^^^^^^^^^^
+
+U-Boot is a Boot Loader, i.e. its primary purpose in the shipping
+system is to load some operating system.
+That means that U-Boot is
+necessary to perform a certain task, but it's nothing you want to
+throw any significant resources at. Typically U-Boot is stored in
+relatively small NOR flash memory, which is expensive
+compared to the much larger NAND devices often used to store the
+operating system and the application.
+
+At the moment, U-Boot supports boards with just 128 KiB ROM or with
+256 KiB NOR flash. We should not easily ignore such configurations -
+they may be the exception in among all the other supported boards,
+but if a design uses such a resource-constrained hardware setup it is
+usually because costs are critical, i. e. because the number of
+manufactured boards might be tens or hundreds of thousands or even
+millions...
+
+A usable and useful configuration of U-Boot, including a basic
+interactive command interpreter, support for download over Ethernet
+and the capability to program the flash shall fit in no more than 128 KiB.
+
+Keep it Fast
+^^^^^^^^^^^^
+
+The end user is not interested in running U-Boot. In most embedded
+systems they are not even aware that U-Boot exists. The user wants to
+run some application code, and that as soon as possible after switching
+on their device.
+
+It is therefore essential that U-Boot is as fast as possible,
+especially that it loads and boots the operating system as fast as possible.
+
+To achieve this, the following design principles shall be followed:
+
+* Enable caches as soon and whenever possible
+
+* Initialize devices only when they are needed within U-Boot, i.e. don't
+ initialize the Ethernet interface(s) unless U-Boot performs a download over
+ Ethernet; don't initialize any IDE or USB devices unless U-Boot actually
+ tries to load files from these, etc. (and don't forget to shut down these
+ devices after using them - otherwise nasty things may happen when you try to
+ boot your OS).
+
+Also, building of U-Boot shall be as fast as possible.
+This makes it easier to run a build for all supported configurations
+or at least for all configurations of a specific architecture,
+which is essential for quality assurance.
+If building is cumbersome and slow, most people will omit
+this important step.
+
+Keep it Simple
+^^^^^^^^^^^^^^
+
+U-Boot is a boot loader, but it is also a tool used for board
+bring-up, for production testing, and for other activities.
+
+Keep it Portable
+^^^^^^^^^^^^^^^^
+
+U-Boot is a boot loader, but it is also a tool used for board
+bring-up, for production testing, and for other activities that are
+very closely related to hardware development. So far, it has been
+ported to several hundreds of different boards on about 30 different
+processor families - please make sure that any code you add can be
+used on as many different platforms as possible.
+
+Avoid assembly language whenever possible - only the reset code with
+basic CPU initialization, maybe a static DRAM initialization and the C
+stack setup should be in assembly.
+All further initializations should be done in C using assembly/C
+subroutines or inline macros. These functions represent some
+kind of HAL functionality and should be defined consistently on all
+architectures, e.g. basic MMU and cache control, stack pointer manipulation.
+Non-existing functions should expand into empty macros or error codes.
+
+Don't make assumptions about the environment where U-Boot is running.
+It may be communicating with a human operator on directly attached
+serial console, but it may be through a GSM modem as well, or driven
+by some automatic test or control system. So don't output any fancy
+control character sequences or similar.
+
+Keep it Configurable
+^^^^^^^^^^^^^^^^^^^^
+
+Section "Keep it Small" already explains about the size restrictions
+for U-Boot on one side. On the other side, U-Boot is a powerful tool
+with many, many extremely useful features. The maintainer or user of
+each board will have to decide which features are important to them and
+what shall be included with their specific board configuration to meet
+their current requirements and restrictions.
+
+Please make sure that it is easy to add or remove features from a
+board configuration, so everybody can make the best use of U-Boot on
+their system.
+
+If a feature is not included, it should not have any residual code
+bloating the build.
+
+Keep it Debuggable
+^^^^^^^^^^^^^^^^^^
+
+Of course debuggable code is a big benefit for all of us contributing
+in one way or another to the development of the U-Boot project. But
+as already mentioned in section "Keep it Portable" above, U-Boot is
+not only a tool in itself, it is often also used for hardware
+bring-up, so debugging U-Boot often means that we don't know if we are
+tracking down a problem in the U-Boot software or in the hardware we
+are running on. Code that is clean and easy to understand and to
+debug is all the more important to many of us.
+
+* One important feature of U-Boot is to enable output to the (usually serial)
+ console as soon as possible in the boot process, even if this causes
+ tradeoffs in other areas like memory footprint.
+
+* All initialization steps shall print some "begin doing this" message before
+ they actually start, and some "done" message when they complete. For example,
+ RAM initialization and size detection may print a "RAM: " before they start,
+ and "256 MB\\n" when done. The purpose of this is that you can always see
+ which initialization step was running if there should be any problem. This
+ is important not only during software development, but also for the service
+ people dealing with broken hardware in the field.
+
+* U-Boot should be debuggable with simple JTAG or BDM equipment. It shall use
+ a simple, single-threaded execution model. Avoid any magic, which could
+ prevent easy debugging even when only 1 or 2 hardware breakpoints are
+ available.
+
+Keep it Usable
+^^^^^^^^^^^^^^
+
+Please always keep in mind that there are at least three different
+groups of users for U-Boot, with completely different expectations
+and requirements:
+
+* The end user of an embedded device just wants to run some application; they
+ do not even want to know that U-Boot exists and only rarely interacts with
+ it (for example to perform a reset to factory default settings etc.)
+
+* System designers and engineers working on the development of the application
+ and/or the operating system want a powerful tool that can boot from any boot
+ device they can imagine, they want it fast and scriptable and whatever - in
+ short, they want as many features supported as possible. And some more.
+
+* The engineer who ports U-Boot to a new board and the board maintainer want
+ U-Boot to be as simple as possible so porting it to and maintaining it on
+ their hardware is easy for them.
+
+* Make it easy to test. Add debug code (but don't re-invent the wheel - use
+ existing macros like log_debug() or debug() depending on context).
+
+Please always keep in mind that U-Boot tries to meet all these
+different requirements.
+
+Keep it Maintainable
+^^^^^^^^^^^^^^^^^^^^
+
+* Avoid ``#ifdefs`` where possible
+
+* Use "weak" functions
+
+* Always follow the :doc:`codingstyle` requirements.
+
+Keep it Beautiful
+^^^^^^^^^^^^^^^^^
+
+* Keep the source code clean: strictly follow the :doc:`codingstyle`,
+ keep lists (target names in the Makefiles, board names, etc.)
+ alphabetically sorted, etc.
+
+* Keep U-Boot console output clean: output only really necessary information,
+ be terse but precise, keep output vertically aligned, do not use control
+ character sequences (e.g. backspaces or \\r to do "spinning wheel" activity
+ indicators), etc.
+
+Keep it Open
+^^^^^^^^^^^^
+
+Contribute your work back to the whole community. Submit your changes
+and extensions as patches to the U-Boot mailing list.
+
+Lemmas from the golden rules
+----------------------------
+
+Generic Code is Good Code
+^^^^^^^^^^^^^^^^^^^^^^^^^
+
+New code shall be as generic as possible and added to the U-Boot
+abstraction hierarchy as high as possible. As few code as possible shall be
+added in board directories as people usually do not expect re-usable code
+there. Thus peripheral drivers should be put below
+"drivers" even if they start out supporting only one specific
+configuration. Note that it is not a requirement for such a first
+instance to be generic as genericity generally cannot be extrapolated
+from a single data point.
diff --git a/doc/develop/index.rst b/doc/develop/index.rst
index fe3564a..73741ce 100644
--- a/doc/develop/index.rst
+++ b/doc/develop/index.rst
@@ -3,6 +3,17 @@
Develop U-Boot
==============
+General
+-------
+
+.. toctree::
+ :maxdepth: 1
+
+ codingstyle
+ designprinciples
+ process
+ release_cycle
+
Implementation
--------------
diff --git a/doc/develop/process.rst b/doc/develop/process.rst
new file mode 100644
index 0000000..0ef24e8
--- /dev/null
+++ b/doc/develop/process.rst
@@ -0,0 +1,198 @@
+.. SPDX-License-Identifier: GPL-2.0+:
+
+U-Boot Development Process
+==========================
+
+Management Summary
+------------------
+
+* Development happens in Release Cycles of 3 months.
+
+* The first 3 weeks of the cycle are referred to as the Merge Window, which is
+ followed by a Stabilization Period.
+
+* Patches with new code get only accepted while the Merge Window is open.
+
+* A patch that is generally in good shape and that was submitted while the
+ Merge Window was open is eligible to go into the upcoming release, even if
+ changes and resubmits are needed.
+
+* During the Stabilization Period, only patches that contain bug fixes get
+ applied.
+
+Phases of the Development Process
+---------------------------------
+
+U-Boot development takes place in `Release Cycles
+<https://www.denx.de/wiki/U-Boot/ReleaseCycle>`_. A Release Cycle lasts
+normally for three months.
+
+The first three weeks of each Release Cycle are called *Merge Window*.
+
+It is followed by a *Stabilization Period*.
+
+The end of a Release Cycle is marked by the release of a new U-Boot version.
+
+Merge Window
+------------
+
+The Merge Window is the period when new patches get submitted (and hopefully
+accepted) for inclusion into U-Boot mainline. This period lasts for 21 days (3
+weeks) and ends with the release of ``"-rc1"``.
+
+This is the only time when new code (like support for new processors or new
+boards, or other new features or reorganization of code) is accepted.
+
+Twilight Time
+-------------
+
+Usually patches do not get accepted as they are - the peer review that takes
+place will usually require changes and resubmissions of the patches before they
+are considered to be ripe for inclusion into mainline.
+
+Also the review often happens not immediately after a patch was submitted,
+but only when somebody (usually the responsible custodian) finds time to do
+this.
+
+The result is that the final version of such patches gets submitted after the
+merge window has been closed.
+
+It is current practice in U-Boot that such patches are eligible to go into the
+upcoming release.
+
+The result is that the release of the ``"-rc1"`` version and formal closing of
+the Merge Window does not preclude patches that were already posted from being
+merged for the upcoming release.
+
+Stabilization Period
+--------------------
+
+During the Stabilization Period only patches containing bug fixes get
+applied.
+
+Corner Cases
+------------
+
+Sometimes it is not clear if a patch contains a bug fix or not.
+For example, changes that remove dead code, unused macros etc. or
+that contain Coding Style fixes are not strict bug fixes.
+
+In such situations it is up to the responsible custodian to decide if they
+apply such patches even when the Merge Window is closed.
+
+Exception: at the end of the Stabilization Period only strict bug
+fixes my be applied.
+
+Sometimes patches miss the Merge Window slightly - say by a few
+hours or even a day. Patch acceptance is not as critical as a
+financial transaction, or such. So if there is such a slight delay,
+the custodian is free to turn a blind eye and accept it anyway. The
+idea of the development process is to make it foreseeable,
+but not to slow down development.
+
+It makes more sense if an engineer spends another day on testing and
+cleanup and submits the patch a couple of hours late, instead of
+submitting a green patch which will waste efforts from several people
+during several rounds of review and reposts.
+
+Differences to the Linux Development Process
+--------------------------------------------
+
+* In Linux, top-level maintainers will collect patches in their trees and send
+ pull requests to Linus as soon as the merge window opens.
+ So far, most U-Boot custodians do not work like that; they send pull requests
+ only at (or even after) the end of the merge window.
+
+* In Linux, the closing of the merge window is marked by the release of the
+ next ``"-rc1"``
+ In U-Boot, ``"-rc1"`` will only be released after all (or at least most of
+ the) patches that were submitted during the merge window have been applied.
+
+Custodians
+----------
+
+The Custodians take responsibility for some area of the U-Boot code. The
+in-tree ``MAINTAINERS`` files list who is responsible for which areas.
+
+It is their responsibility to pick up patches from the mailing list
+that fall into their responsibility, and to process these.
+
+A very important responsibility of each custodian is to provide
+feedback to the submitter of a patch about what is going on: if the
+patch was accepted, or if it was rejected (which exact list of
+reasons), if it needs to be reworked (with respective review
+comments). Even a "I have no time now, will look into it later"
+message is better than nothing. Also, if there are remarks to a
+patch, these should leave no doubt if they were just comments and the
+patch will be accepted anyway, or if the patch should be
+reworked/resubmitted, or if it was rejected.
+
+Work flow of a Custodian
+------------------------
+
+The normal flow of work in the U-Boot development process will look
+like this:
+
+#. A developer submits a patch via e-mail to the u-boot mailing list. In
+ U-Boot, we make use of the `Developer Certificate of Origin
+ <https://developercertificate.org/>`_ that is common in other projects such
+ as the Linux kernel. Following this and adding a ``Signed-off-by:`` line
+ that contains the developer's name and email address is required.
+
+#. Everybody who can is invited to review and test the changes. Typically, we
+ follow the same guidelines as the Linux kernel for `Acked-by
+ <https://www.kernel.org/doc/html/latest/process/submitting-patches.html#when-to-use-acked-by-cc-and-co-developed-by>`_
+ as well as `Reviewed-by
+ <https://www.kernel.org/doc/html/latest/process/submitting-patches.html#using-reported-by-tested-by-reviewed-by-suggested-by-and-fixes>`_
+ and similar additional tags.
+
+#. The responsible custodian inspects this patch, especially for:
+
+ #. :doc:`codingstyle`
+
+ #. Basic logic:
+
+ * The patch fixes a real problem.
+
+ * The patch does not introduce new problems, especially it does not break
+ other boards or architectures
+
+ #. U-Boot Philosophy, as documented in :doc:`designprinciples`.
+
+ #. Applies cleanly to the source tree. The custodian is expected to put in
+ a "best effort" if a patch does not apply cleanly, but can be made to apply
+ still. It is up to the custodian to decide how recent of a commit the
+ patch must be against. It is acceptable to request patches against the
+ last officially released version of U-Boot or newer. Of course a
+ custodian can also accept patches against older code. It can be
+ difficult to find the correct balance between putting too much work on
+ the custodian or too much work on an individual submitting a patch when
+ something does not apply cleanly.
+
+ #. Passes :doc:`ci_testing` as this checks for new warnings and other issues.
+
+#. Note that in some cases more than one custodian may feel responsible for a
+ particular change. To avoid duplicated efforts, the custodian who starts
+ processing the patch should follow up to the email saying they intend to
+ pick it up.
+
+#. Commits must show original author in the ``author`` field and include all of
+ the ``Signed-off-by``, ``Reviewed-by``, etc, tags that have been submitted.
+
+#. The final decision to accept or reject a patch comes down to the custodian
+ in question.
+
+#. If accepted, the custodian adds the patch to their public git repository.
+ Ideally, they will also follow up on the mailing list with some notification
+ that it has been applied. This is not always easy given different custodian
+ workflows and environments however.
+
+#. Although a custodian is supposed to perform their own tests it is a
+ well-known and accepted fact that they needs help from other developers who
+ - for example - have access to the required hardware or other relevant
+ environments. Custodians are expected to ask for assistance with testing
+ when required.
+
+#. Custodians are expected to submit a timely pull request of their git
+ repository to the main repository. It is strongly encouraged that a CI run
+ has been completed prior to submission, but not required.
diff --git a/doc/develop/release_cycle.rst b/doc/develop/release_cycle.rst
new file mode 100644
index 0000000..10ca768
--- /dev/null
+++ b/doc/develop/release_cycle.rst
@@ -0,0 +1,224 @@
+Release Cycle
+=============
+
+The U-Boot projects attempts to maintain a fixed, predictable Release
+Cycle as follows:
+
+* We will have U-Boot releases at a fixed release interval of (approximately)
+ every 3 months.
+
+* Under normal conditions the release date will be the first Monday of the month.
+
+* Immediately following each release, there will be a "merge window" of
+ normally 21 days, i. e. if the release was on a Monday, then the merge window
+ will close on the Monday in the 3rd week after the release.
+
+ While this merge window is open, new features can be added to the U-Boot
+ source tree. This is further expanded on in the :doc:`process`.
+
+* After the merge window closes, no new features may be added to allow for a
+ release candidate phase which is intended to fix bugs and regressions.
+
+*Note:* While we try to adhere to the release schedule, we will
+not hesitate and take the liberty to delay a release if there are
+good reasons, for example if there are known bugs or other technical
+reasons. The code will be released when it is considered ready
+without caring too much about the announced deadline.
+
+*Note 2:* Even though we follow Linux ways in many respects, there are
+differences in the actual procedures, which are documented in the
+:doc:`process`.
+
+Version Numbers
+---------------
+
+Starting with the release in October 2008, the names of the releases were
+changed from numerical release numbers without deeper meaning into a time stamp
+based numbering. Regular releases are now identified by names consisting of
+the calendar year and month of the release date. Additional fields are
+frequently used to denote the release candidates. They are also used on rare
+occasions to note a bug fix release on top of the previous stable release.
+
+Examples::
+
+ U-Boot v2009.11 - Release November 2009
+ U-Boot v2009.11.1 - Bug fix release 1 on top of the November 2009 release
+ U-Boot v2010.09-rc1 - Release candidate 1 for September 2010 release
+
+Current Status
+--------------
+
+* U-Boot v2022.07 was released on Mon 11 July 2022.
+
+* The Merge Window for the next release (v2022.10) is **open** until -rc1
+ release on Mon 25 July 2022.
+
+* Release "v2022.10" is scheduled for 03 Oct 2022.
+
+Future Releases
+---------------
+
+.. The following commented out dates are for when release candidates are
+ planned to be tagged.
+
+.. For the next scheduled release, release candidates were made on::
+
+.. * U-Boot v2022.10-rc1 was released on Mon 25 July 2022.
+
+.. * U-Boot v2022.10-rc2 was released on Mon 08 August 2022.
+
+.. * U-Boot v2022.10-rc3 was released on Mon 22 August 2022.
+
+.. * U-Boot v2022.10-rc4 was released on Mon 05 September 2022.
+
+.. * U-Boot v2022.10-rc5 was released on Mon 19 September 2022.
+
+Please note that the following dates are planned only and may be deviated from
+as needed.
+
+* "v2022.10": end of MW = Mon, Jul 25, 2022; release = Mon, Oct 03, 2022
+
+* "v2023.01": end of MW = Mon, Oct 24, 2022; release = Mon, Jan 09, 2023
+
+* "v2023.04": end of MW = Mon, Jan 30, 2022; release = Mon, Apr 03, 2023
+
+* "v2023.07": end of MW = Mon, Apr 24, 2023; release = Mon, Jul 03, 2023
+
+Previous Releases
+-----------------
+
+Note: these statistics are generated by our fork of `gitdm
+<https://source.denx.de/u-boot/gitdm>`_, which was originally created by
+Jonathan Corbet.
+
+* :doc:`statistics/u-boot-stats-v2022.07` which was released on 11 July 2022.
+
+* :doc:`statistics/u-boot-stats-v2022.04` which was released on 04 April 2022.
+
+* :doc:`statistics/u-boot-stats-v2022.01` which was released on 10 January 2022.
+
+* :doc:`statistics/u-boot-stats-v2021.10` which was released on 04 October 2021.
+
+* :doc:`statistics/u-boot-stats-v2021.07` which was released on 05 July 2021.
+
+* :doc:`statistics/u-boot-stats-v2021.04` which was released on 05 April 2021.
+
+* :doc:`statistics/u-boot-stats-v2021.01` which was released on 11 January 2021.
+
+* :doc:`statistics/u-boot-stats-v2020.10` which was released on 05 October 2020.
+
+* :doc:`statistics/u-boot-stats-v2020.07` which was released on 06 July 2020.
+
+* :doc:`statistics/u-boot-stats-v2020.04` which was released on 13 April 2020.
+
+* :doc:`statistics/u-boot-stats-v2020.01` which was released on 06 January 2020.
+
+* :doc:`statistics/u-boot-stats-v2019.10` which was released on 07 October 2019.
+
+* :doc:`statistics/u-boot-stats-v2019.07` which was released on 08 July 2019.
+
+* :doc:`statistics/u-boot-stats-v2019.04` which was released on 08 April 2019.
+
+* :doc:`statistics/u-boot-stats-v2019.01` which was released on 04 January 2019.
+
+* :doc:`statistics/u-boot-stats-v2018.11` which was released on 15 November 2018.
+
+* :doc:`statistics/u-boot-stats-v2018.09` which was released on 10 September 2018.
+
+* :doc:`statistics/u-boot-stats-v2018.07` which was released on 19 July 2018.
+
+* :doc:`statistics/u-boot-stats-v2018.05` which was released on 07 May 2018.
+
+* :doc:`statistics/u-boot-stats-v2018.03` which was released on 13 March 2018.
+
+* :doc:`statistics/u-boot-stats-v2018.01` which was released on 08 January 2018.
+
+* :doc:`statistics/u-boot-stats-v2017.11` which was released on 13 November 2017.
+
+* :doc:`statistics/u-boot-stats-v2017.09` which was released on 11 September 2017.
+
+* :doc:`statistics/u-boot-stats-v2017.07` which was released on 10 July 2017.
+
+* :doc:`statistics/u-boot-stats-v2017.05` which was released on 08 May 2017.
+
+* :doc:`statistics/u-boot-stats-v2017.03` which was released on 13 March 2017.
+
+* :doc:`statistics/u-boot-stats-v2017.01` which was released on 09 January 2017.
+
+* :doc:`statistics/u-boot-stats-v2016.11` which was released on 14 November 2016.
+
+* :doc:`statistics/u-boot-stats-v2016.09` which was released on 12 September 2016.
+
+* :doc:`statistics/u-boot-stats-v2016.07` which was released on 11 July 2016.
+
+* :doc:`statistics/u-boot-stats-v2016.05` which was released on 16 May 2016.
+
+* :doc:`statistics/u-boot-stats-v2016.03` which was released on 14 March 2016.
+
+* :doc:`statistics/u-boot-stats-v2016.01` which was released on 12 January 2016.
+
+* :doc:`statistics/u-boot-stats-v2015.10` which was released on 19 October 2015.
+
+* :doc:`statistics/u-boot-stats-v2015.07` which was released on 14 July 2015.
+
+* :doc:`statistics/u-boot-stats-v2015.04` which was released on 13 April 2015.
+
+* :doc:`statistics/u-boot-stats-v2015.01` which was released on 12 January 2015.
+
+* :doc:`statistics/u-boot-stats-v2014.10` which was released on 14 October 2014.
+
+* :doc:`statistics/u-boot-stats-v2014.07` which was released on 14 July 2014.
+
+* :doc:`statistics/u-boot-stats-v2014.04` which was released on 14 April 2014.
+
+* :doc:`statistics/u-boot-stats-v2014.01` which was released on 20 January 2014.
+
+* :doc:`statistics/u-boot-stats-v2013.10` which was released on 16 October 2013.
+
+* :doc:`statistics/u-boot-stats-v2013.07` which was released on 22 July 2013.
+
+* :doc:`statistics/u-boot-stats-v2013.04` which was released on 19 April 2013.
+
+* :doc:`statistics/u-boot-stats-v2013.01` which was released on 15 January 2013.
+
+* :doc:`statistics/u-boot-stats-v2012.10` which was released on 15 October 2012.
+
+* :doc:`statistics/u-boot-stats-v2012.07` which was released on 30 July 2012.
+
+* :doc:`statistics/u-boot-stats-v2012.04` which was released on 21 April 2012.
+
+* :doc:`statistics/u-boot-stats-v2011.12` which was released on 23 December 2011.
+
+* :doc:`statistics/u-boot-stats-v2011.09` which was released on 29 September 2011.
+
+* :doc:`statistics/u-boot-stats-v2011.06` which was released on 27 July 2011.
+
+* :doc:`statistics/u-boot-stats-v2011.03` which was released on 31 March 2011.
+
+* :doc:`statistics/u-boot-stats-v2010.12` which was released on 22 December 2010.
+
+* :doc:`statistics/u-boot-stats-v2010.09` which was released on 28 September 2010.
+
+* :doc:`statistics/u-boot-stats-v2010.06` which was released on 29 June 2010.
+
+* :doc:`statistics/u-boot-stats-v2010.03` which was released on 31 March 2010.
+
+* :doc:`statistics/u-boot-stats-v2009.11` which was released on 15 December 2009.
+
+* :doc:`statistics/u-boot-stats-v2009.08` which was released on 31 August 2009.
+
+* :doc:`statistics/u-boot-stats-v2009.06` which was released on 14 June 2009.
+
+* :doc:`statistics/u-boot-stats-v2009.03` which was released on 21 March 2009.
+
+* :doc:`statistics/u-boot-stats-v2009.01` which was released on 21 January 2009.
+
+* :doc:`statistics/u-boot-stats-v2008.10` which was released on 18 October 2008.
+
+* :doc:`statistics/u-boot-stats-v1.3.4` which was released on 12 August 2008.
+
+* :doc:`statistics/u-boot-stats-v1.3.3` which was released on 19 May 2008.
+
+* :doc:`statistics/u-boot-stats-v1.3.1` which was released on 06 December 2007. (St Nicholas release).
+
+* :doc:`statistics/u-boot-stats-v1.3.0` which was released on 19 November 2007.
diff --git a/doc/develop/statistics/u-boot-stats-v1.3.0.rst b/doc/develop/statistics/u-boot-stats-v1.3.0.rst
new file mode 100644
index 0000000..c891468
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v1.3.0.rst
@@ -0,0 +1,539 @@
+:orphan:
+
+Release Statistics for U-Boot v1.3.0
+====================================
+
+* Processed 1153 csets from 102 developers
+
+* 38 employers found
+
+* A total of 238271 lines added, 197375 removed (delta 40896)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 150 (13.0%)
+ Jon Loeliger 123 (10.7%)
+ Wolfgang Denk 110 (9.5%)
+ TsiChung Liew 61 (5.3%)
+ Michal Simek 57 (4.9%)
+ Grant Likely 50 (4.3%)
+ Kim Phillips 36 (3.1%)
+ Andy Fleming 31 (2.7%)
+ Gerald Van Baren 30 (2.6%)
+ Bartlomiej Sieka 29 (2.5%)
+ Markus Klotzbuecher 28 (2.4%)
+ Roy Zang 27 (2.3%)
+ Haavard Skinnemoen 26 (2.3%)
+ Ed Swarthout 26 (2.3%)
+ Peter Pearse 23 (2.0%)
+ Shinya Kuribayashi 20 (1.7%)
+ Heiko Schocher 19 (1.6%)
+ Aubrey.Li 19 (1.6%)
+ Jean-Christophe PLAGNIOL-VILLARD 16 (1.4%)
+ Matthias Fuchs 15 (1.3%)
+ Jason Jin 14 (1.2%)
+ Niklaus Giger 14 (1.2%)
+ Dave Liu 12 (1.0%)
+ Martin Krause 11 (1.0%)
+ Grzegorz Bernacki 11 (1.0%)
+ Kumar Gala 11 (1.0%)
+ Timur Tabi 9 (0.8%)
+ Scott Wood 8 (0.7%)
+ Haiying Wang 7 (0.6%)
+ Zhang Wei 6 (0.5%)
+ Rodolfo Giometti 6 (0.5%)
+ Rafal Jaworowski 6 (0.5%)
+ Stefano Babic 6 (0.5%)
+ Jeffrey Mann 6 (0.5%)
+ Joe Hamman 5 (0.4%)
+ Kyungmin Park 4 (0.3%)
+ Detlev Zundel 4 (0.3%)
+ Dirk Behme 4 (0.3%)
+ Gary Jennejohn 4 (0.3%)
+ Jerry Van Baren 4 (0.3%)
+ Sergei Poselenov 4 (0.3%)
+ Xie Xiaobo 4 (0.3%)
+ Vlad Lungu 3 (0.3%)
+ Marian Balakowicz 3 (0.3%)
+ urwithsughosh@gmail.com 3 (0.3%)
+ Tony Li 3 (0.3%)
+ Mike Frysinger 3 (0.3%)
+ Sergei Shtylyov 3 (0.3%)
+ Domen Puncer 3 (0.3%)
+ Justin Flammia 2 (0.2%)
+ Larry Johnson 2 (0.2%)
+ Bruce Adler 2 (0.2%)
+ Guennadi Liakhovetski 2 (0.2%)
+ Sergej Stepanov 2 (0.2%)
+ Rune Torgersen 2 (0.2%)
+ David Saada 2 (0.2%)
+ Eirik Aanonsen 2 (0.2%)
+ Sam Sparks 2 (0.2%)
+ Hans-Christian Egtvedt 2 (0.2%)
+ Yuri Tikhonov 2 (0.2%)
+ ksi@koi8.net 2 (0.2%)
+ Benoit Monin 2 (0.2%)
+ David Updegraff 2 (0.2%)
+ Piotr Kruszynski 2 (0.2%)
+ John Otken 2 (0.2%)
+ Igor Lisitsin 2 (0.2%)
+ Thomas Knobloch 2 (0.2%)
+ Nikita V. Youshchenko 2 (0.2%)
+ Ladislav Michl 2 (0.2%)
+ James Yang 2 (0.2%)
+ mushtaq khan 2 (0.2%)
+ Grzegorz Wianecki 2 (0.2%)
+ Luotao Fu 1 (0.1%)
+ Marcel Ziswiler 1 (0.1%)
+ Dan Wilson 1 (0.1%)
+ Jens Gehrlein 1 (0.1%)
+ Timo Ketola 1 (0.1%)
+ Sean MCGOOGAN 1 (0.1%)
+ Semih Hazar 1 (0.1%)
+ Ulf Samuelsson 1 (0.1%)
+ Randy Vinson 1 (0.1%)
+ Ebony Zhu 1 (0.1%)
+ Wilson Callan 1 (0.1%)
+ Mike Rapoport 1 (0.1%)
+ Lee Nipper 1 (0.1%)
+ Zach Sadecki 1 (0.1%)
+ Eugene OBrien 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Pavel Kolesnikov 1 (0.1%)
+ TsiChung 1 (0.1%)
+ Mushtaq Khan 1 (0.1%)
+ Vadim Bendebury 1 (0.1%)
+ Stephen Williams 1 (0.1%)
+ Dan Malek 1 (0.1%)
+ Denis Peter 1 (0.1%)
+ Greg Lopp 1 (0.1%)
+ Igor Marnat 1 (0.1%)
+ Emilian Medve 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Paul Gortmaker 1 (0.1%)
+ Sam Song 1 (0.1%)
+ Reinhard Thies 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jason Jin 125258 (32.7%)
+ Wolfgang Denk 40869 (10.7%)
+ TsiChung Liew 28857 (7.5%)
+ Aubrey.Li 26630 (7.0%)
+ Stefan Roese 25448 (6.6%)
+ Jon Loeliger 13063 (3.4%)
+ Grant Likely 10507 (2.7%)
+ Vadim Bendebury 8369 (2.2%)
+ Roy Zang 8255 (2.2%)
+ Peter Pearse 8243 (2.2%)
+ Michal Simek 8123 (2.1%)
+ Heiko Schocher 6203 (1.6%)
+ Markus Klotzbuecher 5981 (1.6%)
+ ksi@koi8.net 5467 (1.4%)
+ Rafal Jaworowski 4963 (1.3%)
+ Dave Liu 4502 (1.2%)
+ Gerald Van Baren 4448 (1.2%)
+ Niklaus Giger 3556 (0.9%)
+ Haavard Skinnemoen 3494 (0.9%)
+ Bartlomiej Sieka 3279 (0.9%)
+ Gary Jennejohn 2911 (0.8%)
+ Andy Fleming 2643 (0.7%)
+ John Otken 2626 (0.7%)
+ Kim Phillips 2411 (0.6%)
+ Kyungmin Park 2401 (0.6%)
+ Paul Gortmaker 2077 (0.5%)
+ Rodolfo Giometti 1943 (0.5%)
+ Matthias Fuchs 1932 (0.5%)
+ Sergei Poselenov 1918 (0.5%)
+ Ed Swarthout 1782 (0.5%)
+ Scott Wood 1667 (0.4%)
+ Joe Hamman 1527 (0.4%)
+ Stefano Babic 1519 (0.4%)
+ Dan Malek 1316 (0.3%)
+ mushtaq khan 1107 (0.3%)
+ Igor Lisitsin 720 (0.2%)
+ Grzegorz Bernacki 651 (0.2%)
+ Timur Tabi 593 (0.2%)
+ Dirk Behme 583 (0.2%)
+ David Updegraff 453 (0.1%)
+ Xie Xiaobo 451 (0.1%)
+ Shinya Kuribayashi 424 (0.1%)
+ Haiying Wang 388 (0.1%)
+ Jean-Christophe PLAGNIOL-VILLARD 327 (0.1%)
+ Pavel Kolesnikov 318 (0.1%)
+ Zhang Wei 294 (0.1%)
+ Eugene OBrien 248 (0.1%)
+ Larry Johnson 244 (0.1%)
+ Tony Li 176 (0.0%)
+ Kumar Gala 153 (0.0%)
+ Sergej Stepanov 139 (0.0%)
+ Martin Krause 98 (0.0%)
+ Ladislav Michl 86 (0.0%)
+ Jerry Van Baren 85 (0.0%)
+ Domen Puncer 77 (0.0%)
+ Randy Vinson 75 (0.0%)
+ Anatolij Gustschin 73 (0.0%)
+ Timo Ketola 72 (0.0%)
+ Marcel Ziswiler 60 (0.0%)
+ James Yang 57 (0.0%)
+ Yuri Tikhonov 46 (0.0%)
+ Vlad Lungu 39 (0.0%)
+ Piotr Kruszynski 38 (0.0%)
+ Mike Rapoport 38 (0.0%)
+ TsiChung 38 (0.0%)
+ Thomas Knobloch 37 (0.0%)
+ Rune Torgersen 35 (0.0%)
+ Grzegorz Wianecki 28 (0.0%)
+ Marian Balakowicz 26 (0.0%)
+ Sergei Shtylyov 25 (0.0%)
+ Bruce Adler 25 (0.0%)
+ Jeffrey Mann 23 (0.0%)
+ Eirik Aanonsen 21 (0.0%)
+ Detlev Zundel 20 (0.0%)
+ urwithsughosh@gmail.com 15 (0.0%)
+ Justin Flammia 14 (0.0%)
+ Joakim Tjernlund 14 (0.0%)
+ Nikita V. Youshchenko 12 (0.0%)
+ Mushtaq Khan 12 (0.0%)
+ Reinhard Thies 12 (0.0%)
+ Mike Frysinger 9 (0.0%)
+ David Saada 9 (0.0%)
+ Benoit Monin 9 (0.0%)
+ Jens Gehrlein 9 (0.0%)
+ Lee Nipper 9 (0.0%)
+ Sam Sparks 6 (0.0%)
+ Wilson Callan 6 (0.0%)
+ Igor Marnat 5 (0.0%)
+ Luotao Fu 4 (0.0%)
+ Hans-Christian Egtvedt 3 (0.0%)
+ Greg Lopp 3 (0.0%)
+ Guennadi Liakhovetski 2 (0.0%)
+ Ulf Samuelsson 2 (0.0%)
+ Zach Sadecki 2 (0.0%)
+ Denis Peter 2 (0.0%)
+ Dan Wilson 1 (0.0%)
+ Sean MCGOOGAN 1 (0.0%)
+ Semih Hazar 1 (0.0%)
+ Ebony Zhu 1 (0.0%)
+ Stephen Williams 1 (0.0%)
+ Emilian Medve 1 (0.0%)
+ Sam Song 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jason Jin 87019 (44.1%)
+ Grant Likely 8023 (4.1%)
+ Vadim Bendebury 700 (0.4%)
+ Dirk Behme 564 (0.3%)
+ Matthias Fuchs 126 (0.1%)
+ Shinya Kuribayashi 86 (0.0%)
+ Ladislav Michl 68 (0.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 31 (0.0%)
+ Vlad Lungu 17 (0.0%)
+ Rune Torgersen 11 (0.0%)
+ Detlev Zundel 11 (0.0%)
+ Kumar Gala 9 (0.0%)
+ TsiChung 9 (0.0%)
+ Guennadi Liakhovetski 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 268)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 41 (15.3%)
+ Jon Loeliger 30 (11.2%)
+ Alexandre Bounine 21 (7.8%)
+ Kim Phillips 21 (7.8%)
+ Grant Likely 16 (6.0%)
+ Ed Swarthout 13 (4.9%)
+ Ben Warren 12 (4.5%)
+ Piotr Kruszynski 7 (2.6%)
+ Grzegorz Bernacki 7 (2.6%)
+ Gerald Van Baren 7 (2.6%)
+ Zhang Wei 6 (2.2%)
+ Haavard Skinnemoen 6 (2.2%)
+ Reinhard Arlt 5 (1.9%)
+ Heiko Schocher 5 (1.9%)
+ Jan Wrobel 4 (1.5%)
+ Marian Balakowicz 4 (1.5%)
+ Rafal Jaworowski 4 (1.5%)
+ Wolfgang Grandegger 3 (1.1%)
+ James Yang 3 (1.1%)
+ Haiying Wang 3 (1.1%)
+ Andy Fleming 3 (1.1%)
+ Bartlomiej Sieka 3 (1.1%)
+ Jason Jin 2 (0.7%)
+ Shinya Kuribayashi 2 (0.7%)
+ Benoit Monin 2 (0.7%)
+ Igor Lisitsin 2 (0.7%)
+ Markus Klotzbuecher 2 (0.7%)
+ Scott Wood 2 (0.7%)
+ Dirk Behme 1 (0.4%)
+ Ladislav Michl 1 (0.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 1 (0.4%)
+ Vlad Lungu 1 (0.4%)
+ Detlev Zundel 1 (0.4%)
+ Ebony Zhu 1 (0.4%)
+ Emilian Medve 1 (0.4%)
+ Alain Gravel 1 (0.4%)
+ York Sun 1 (0.4%)
+ Greg Davis 1 (0.4%)
+ Michael Barkowski 1 (0.4%)
+ Eran Liberty 1 (0.4%)
+ Vitaly Bordug 1 (0.4%)
+ Swarthout Edward 1 (0.4%)
+ Nick Spence 1 (0.4%)
+ Chereji Marian 1 (0.4%)
+ Gridish Shlomi 1 (0.4%)
+ Yuli Barcohen 1 (0.4%)
+ Mike Frysinger 1 (0.4%)
+ David Saada 1 (0.4%)
+ Ulf Samuelsson 1 (0.4%)
+ Justin Flammia 1 (0.4%)
+ Martin Krause 1 (0.4%)
+ Randy Vinson 1 (0.4%)
+ Domen Puncer 1 (0.4%)
+ Timur Tabi 1 (0.4%)
+ Dave Liu 1 (0.4%)
+ Sergei Poselenov 1 (0.4%)
+ Kyungmin Park 1 (0.4%)
+ Roy Zang 1 (0.4%)
+ Wolfgang Denk 1 (0.4%)
+ TsiChung Liew 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 335 (29.1%)
+ DENX Software Engineering 317 (27.5%)
+ (Unknown) 139 (12.1%)
+ Xilinx 57 (4.9%)
+ Semihalf Embedded Systems 51 (4.4%)
+ Secretlab 50 (4.3%)
+ Custom IDEAS 33 (2.9%)
+ Atmel 29 (2.5%)
+ ARM 23 (2.0%)
+ jcrosoft 16 (1.4%)
+ ESD Electronics 15 (1.3%)
+ TQ Systems 12 (1.0%)
+ EmCraft Systems 9 (0.8%)
+ NEC 9 (0.8%)
+ Embedded Planet 6 (0.5%)
+ Embedded Specialties 5 (0.4%)
+ Wind River 4 (0.3%)
+ Samsung 4 (0.3%)
+ Dirk Behme 4 (0.3%)
+ Analog Devices 3 (0.3%)
+ MontaVista 3 (0.3%)
+ Netstal-Maschinen 3 (0.3%)
+ Savant Systems 3 (0.3%)
+ Telargo 3 (0.3%)
+ Cray 2 (0.2%)
+ Debian.org 2 (0.2%)
+ ECI Telecom 2 (0.2%)
+ IDS 2 (0.2%)
+ Siemens 2 (0.2%)
+ Sergey Kubushyn 2 (0.2%)
+ Advantech 1 (0.1%)
+ Google, Inc. 1 (0.1%)
+ CompuLab 1 (0.1%)
+ Embedded Alley Solutions 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ ST Microelectronics 1 (0.1%)
+ Transmode Systems 1 (0.1%)
+ Cameron 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 186012 (48.6%)
+ DENX Software Engineering 81973 (21.4%)
+ (Unknown) 42285 (11.0%)
+ Secretlab 10507 (2.7%)
+ Semihalf Embedded Systems 8957 (2.3%)
+ Google, Inc. 8369 (2.2%)
+ ARM 8243 (2.2%)
+ Xilinx 8123 (2.1%)
+ Sergey Kubushyn 5467 (1.4%)
+ Custom IDEAS 4517 (1.2%)
+ Atmel 3499 (0.9%)
+ EmCraft Systems 3002 (0.8%)
+ Samsung 2401 (0.6%)
+ Wind River 2116 (0.6%)
+ ESD Electronics 1932 (0.5%)
+ Embedded Specialties 1527 (0.4%)
+ Embedded Alley Solutions 1316 (0.3%)
+ Dirk Behme 583 (0.2%)
+ Cray 453 (0.1%)
+ jcrosoft 327 (0.1%)
+ NEC 271 (0.1%)
+ Advantech 248 (0.1%)
+ IDS 139 (0.0%)
+ TQ Systems 107 (0.0%)
+ Netstal-Maschinen 90 (0.0%)
+ Telargo 77 (0.0%)
+ CompuLab 38 (0.0%)
+ Siemens 37 (0.0%)
+ MontaVista 25 (0.0%)
+ Embedded Planet 23 (0.0%)
+ Savant Systems 20 (0.0%)
+ Transmode Systems 14 (0.0%)
+ Debian.org 12 (0.0%)
+ Cameron 12 (0.0%)
+ Analog Devices 9 (0.0%)
+ ECI Telecom 9 (0.0%)
+ Pengutronix 4 (0.0%)
+ ST Microelectronics 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 268)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 94 (35.1%)
+ DENX Software Engineering 53 (19.8%)
+ Semihalf Embedded Systems 29 (10.8%)
+ (Unknown) 21 (7.8%)
+ Tundra Semiconductor 21 (7.8%)
+ Secretlab 16 (6.0%)
+ Custom IDEAS 7 (2.6%)
+ Atmel 7 (2.6%)
+ ESD Electronics 5 (1.9%)
+ EmCraft Systems 3 (1.1%)
+ MontaVista 2 (0.7%)
+ Samsung 1 (0.4%)
+ Wind River 1 (0.4%)
+ jcrosoft 1 (0.4%)
+ NEC 1 (0.4%)
+ TQ Systems 1 (0.4%)
+ Telargo 1 (0.4%)
+ Embedded Planet 1 (0.4%)
+ Savant Systems 1 (0.4%)
+ Analog Devices 1 (0.4%)
+ ECI Telecom 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 108)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 32 (29.6%)
+ Freescale 19 (17.6%)
+ DENX Software Engineering 9 (8.3%)
+ Semihalf Embedded Systems 5 (4.6%)
+ EmCraft Systems 4 (3.7%)
+ Atmel 3 (2.8%)
+ Custom IDEAS 2 (1.9%)
+ Wind River 2 (1.9%)
+ TQ Systems 2 (1.9%)
+ Savant Systems 2 (1.9%)
+ Secretlab 1 (0.9%)
+ ESD Electronics 1 (0.9%)
+ MontaVista 1 (0.9%)
+ Samsung 1 (0.9%)
+ jcrosoft 1 (0.9%)
+ NEC 1 (0.9%)
+ Telargo 1 (0.9%)
+ Embedded Planet 1 (0.9%)
+ Analog Devices 1 (0.9%)
+ ECI Telecom 1 (0.9%)
+ Google, Inc. 1 (0.9%)
+ ARM 1 (0.9%)
+ Xilinx 1 (0.9%)
+ Sergey Kubushyn 1 (0.9%)
+ Embedded Specialties 1 (0.9%)
+ Embedded Alley Solutions 1 (0.9%)
+ Dirk Behme 1 (0.9%)
+ Cray 1 (0.9%)
+ Advantech 1 (0.9%)
+ IDS 1 (0.9%)
+ Netstal-Maschinen 1 (0.9%)
+ CompuLab 1 (0.9%)
+ Siemens 1 (0.9%)
+ Transmode Systems 1 (0.9%)
+ Debian.org 1 (0.9%)
+ Cameron 1 (0.9%)
+ Pengutronix 1 (0.9%)
+ ST Microelectronics 1 (0.9%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v1.3.1.rst b/doc/develop/statistics/u-boot-stats-v1.3.1.rst
new file mode 100644
index 0000000..e6ddd54
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v1.3.1.rst
@@ -0,0 +1,153 @@
+:orphan:
+
+Release Statistics for U-Boot v1.3.1
+====================================
+
+* Processed 40 csets from 5 developers
+
+* 5 employers found
+
+* A total of 3267 lines added, 1338 removed (delta 1929)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jean-Christophe PLAGNIOL-VILLARD 16 (40.0%)
+ Grant Likely 11 (27.5%)
+ Kumar Gala 8 (20.0%)
+ Wolfgang Denk 4 (10.0%)
+ Gerald Van Baren 1 (2.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 1942 (54.1%)
+ Grant Likely 673 (18.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 551 (15.3%)
+ Wolfgang Denk 398 (11.1%)
+ Gerald Van Baren 27 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jean-Christophe PLAGNIOL-VILLARD 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ jcrosoft 16 (40.0%)
+ Secretlab 11 (27.5%)
+ Freescale 8 (20.0%)
+ DENX Software Engineering 4 (10.0%)
+ Custom IDEAS 1 (2.5%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 1942 (54.1%)
+ Secretlab 673 (18.7%)
+ jcrosoft 551 (15.3%)
+ DENX Software Engineering 398 (11.1%)
+ Custom IDEAS 27 (0.8%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ jcrosoft 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ jcrosoft 1 (20.0%)
+ Freescale 1 (20.0%)
+ Secretlab 1 (20.0%)
+ DENX Software Engineering 1 (20.0%)
+ Custom IDEAS 1 (20.0%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v1.3.2.rst b/doc/develop/statistics/u-boot-stats-v1.3.2.rst
new file mode 100644
index 0000000..f050558
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v1.3.2.rst
@@ -0,0 +1,475 @@
+:orphan:
+
+Release Statistics for U-Boot v1.3.2
+====================================
+
+* Processed 744 csets from 79 developers
+
+* 38 employers found
+
+* A total of 169710 lines added, 43975 removed (delta 125735)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 111 (14.9%)
+ Kumar Gala 61 (8.2%)
+ Wolfgang Denk 58 (7.8%)
+ Jean-Christophe PLAGNIOL-VILLARD 37 (5.0%)
+ Matthias Fuchs 35 (4.7%)
+ Larry Johnson 32 (4.3%)
+ Mike Frysinger 32 (4.3%)
+ Haavard Skinnemoen 28 (3.8%)
+ Nobuhiro Iwamatsu 25 (3.4%)
+ Dave Liu 22 (3.0%)
+ Jon Loeliger 22 (3.0%)
+ TsiChung Liew 22 (3.0%)
+ Kim Phillips 21 (2.8%)
+ Anatolij Gustschin 13 (1.7%)
+ Niklaus Giger 13 (1.7%)
+ Heiko Schocher 12 (1.6%)
+ Shinya Kuribayashi 12 (1.6%)
+ Michael Schwingen 10 (1.3%)
+ Stelian Pop 10 (1.3%)
+ Becky Bruce 8 (1.1%)
+ Timur Tabi 7 (0.9%)
+ Martin Krause 7 (0.9%)
+ Rafal Jaworowski 7 (0.9%)
+ Harald Welte 7 (0.9%)
+ Guennadi Liakhovetski 6 (0.8%)
+ Gerald Van Baren 6 (0.8%)
+ Anton Vorontsov 6 (0.8%)
+ Andy Fleming 5 (0.7%)
+ Peter Pearse 5 (0.7%)
+ Grzegorz Bernacki 5 (0.7%)
+ Jens Gehrlein 5 (0.7%)
+ John Rigby 4 (0.5%)
+ Ben Warren 4 (0.5%)
+ Markus Klotzbuecher 4 (0.5%)
+ Marian Balakowicz 4 (0.5%)
+ York Sun 4 (0.5%)
+ Jason Jin 4 (0.5%)
+ Stefano Babic 3 (0.4%)
+ Kyungmin Park 3 (0.4%)
+ Ladislav Michl 3 (0.4%)
+ James Yang 3 (0.4%)
+ Yoshihiro Shimoda 3 (0.4%)
+ Zhang Wei 3 (0.4%)
+ Paul Gortmaker 3 (0.4%)
+ Detlev Zundel 2 (0.3%)
+ Mike Nuss 2 (0.3%)
+ Yuri Tikhonov 2 (0.3%)
+ K R Gururaja Hebbar 2 (0.3%)
+ Vlad Lungu 2 (0.3%)
+ Andreas Engel 2 (0.3%)
+ Haiying Wang 2 (0.3%)
+ Joakim Tjernlund 2 (0.3%)
+ Roy Zang 2 (0.3%)
+ robert lazarski 2 (0.3%)
+ Joe Hamman 2 (0.3%)
+ Marcel Ziswiler 2 (0.3%)
+ David Gibson 2 (0.3%)
+ Eugene O'Brien 2 (0.3%)
+ Markus Brunner 1 (0.1%)
+ Bernhard Nemec 1 (0.1%)
+ Kim B. Heino 1 (0.1%)
+ michael 1 (0.1%)
+ Woodruff, Richard 1 (0.1%)
+ Li Yang 1 (0.1%)
+ Marcel Moolenaar 1 (0.1%)
+ Uwe Kleine-König 1 (0.1%)
+ Timo Tuunainen 1 (0.1%)
+ Hiroshi Ito 1 (0.1%)
+ Johannes Stezenbach 1 (0.1%)
+ michael.firth@bt.com 1 (0.1%)
+ Poonam Aggrwal 1 (0.1%)
+ Jerry Van Baren 1 (0.1%)
+ David Saada 1 (0.1%)
+ Oliver Weber 1 (0.1%)
+ Rodolfo Giometti 1 (0.1%)
+ raptorbrino@aim.com 1 (0.1%)
+ Hans-Christian Egtvedt 1 (0.1%)
+ Upakul Barkakaty 1 (0.1%)
+ Bartlomiej Sieka 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 61912 (33.7%)
+ Wolfgang Denk 19704 (10.7%)
+ TsiChung Liew 15764 (8.6%)
+ Stefan Roese 9860 (5.4%)
+ Matthias Fuchs 9204 (5.0%)
+ Larry Johnson 7605 (4.1%)
+ Kumar Gala 7203 (3.9%)
+ Nobuhiro Iwamatsu 6268 (3.4%)
+ Michael Schwingen 5797 (3.2%)
+ Haavard Skinnemoen 2916 (1.6%)
+ Rafal Jaworowski 2889 (1.6%)
+ Dave Liu 2871 (1.6%)
+ Peter Pearse 2622 (1.4%)
+ Heiko Schocher 2410 (1.3%)
+ Kim Phillips 2088 (1.1%)
+ Jon Loeliger 2035 (1.1%)
+ Stelian Pop 1946 (1.1%)
+ York Sun 1839 (1.0%)
+ Joe Hamman 1654 (0.9%)
+ Yoshihiro Shimoda 1466 (0.8%)
+ Andreas Engel 1455 (0.8%)
+ robert lazarski 1393 (0.8%)
+ Anton Vorontsov 1269 (0.7%)
+ Niklaus Giger 1088 (0.6%)
+ Anatolij Gustschin 1022 (0.6%)
+ Timo Tuunainen 985 (0.5%)
+ Becky Bruce 887 (0.5%)
+ Kyungmin Park 742 (0.4%)
+ Guennadi Liakhovetski 689 (0.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 613 (0.3%)
+ Marian Balakowicz 574 (0.3%)
+ Vlad Lungu 488 (0.3%)
+ Harald Welte 487 (0.3%)
+ John Rigby 435 (0.2%)
+ Timur Tabi 403 (0.2%)
+ Stefano Babic 390 (0.2%)
+ Paul Gortmaker 339 (0.2%)
+ Ben Warren 334 (0.2%)
+ David Gibson 323 (0.2%)
+ Haiying Wang 284 (0.2%)
+ Shinya Kuribayashi 224 (0.1%)
+ Ladislav Michl 189 (0.1%)
+ Martin Krause 161 (0.1%)
+ Joakim Tjernlund 143 (0.1%)
+ James Yang 142 (0.1%)
+ Markus Klotzbuecher 86 (0.0%)
+ Hans-Christian Egtvedt 85 (0.0%)
+ Grzegorz Bernacki 84 (0.0%)
+ Gerald Van Baren 65 (0.0%)
+ Andy Fleming 61 (0.0%)
+ Marcel Ziswiler 57 (0.0%)
+ David Saada 45 (0.0%)
+ Jens Gehrlein 39 (0.0%)
+ Zhang Wei 39 (0.0%)
+ Detlev Zundel 33 (0.0%)
+ Bernhard Nemec 22 (0.0%)
+ Bartlomiej Sieka 21 (0.0%)
+ K R Gururaja Hebbar 20 (0.0%)
+ michael.firth@bt.com 20 (0.0%)
+ Jason Jin 19 (0.0%)
+ Poonam Aggrwal 16 (0.0%)
+ Rodolfo Giometti 16 (0.0%)
+ Yuri Tikhonov 15 (0.0%)
+ Eugene O'Brien 13 (0.0%)
+ Roy Zang 9 (0.0%)
+ Uwe Kleine-König 9 (0.0%)
+ Mike Nuss 7 (0.0%)
+ Li Yang 7 (0.0%)
+ michael 6 (0.0%)
+ Woodruff, Richard 6 (0.0%)
+ Hiroshi Ito 6 (0.0%)
+ Oliver Weber 4 (0.0%)
+ Upakul Barkakaty 4 (0.0%)
+ Johannes Stezenbach 3 (0.0%)
+ Marcel Moolenaar 2 (0.0%)
+ Markus Brunner 1 (0.0%)
+ Kim B. Heino 1 (0.0%)
+ Jerry Van Baren 1 (0.0%)
+ raptorbrino@aim.com 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andreas Engel 1422 (3.2%)
+ Kumar Gala 1335 (3.0%)
+ Marian Balakowicz 337 (0.8%)
+ Paul Gortmaker 325 (0.7%)
+ Becky Bruce 290 (0.7%)
+ Shinya Kuribayashi 145 (0.3%)
+ Ladislav Michl 137 (0.3%)
+ Bernhard Nemec 22 (0.1%)
+ Andy Fleming 8 (0.0%)
+ michael.firth@bt.com 8 (0.0%)
+ Roy Zang 3 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 127)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kim Phillips 24 (18.9%)
+ Ben Warren 17 (13.4%)
+ Stefan Roese 14 (11.0%)
+ Kumar Gala 5 (3.9%)
+ Jon Loeliger 5 (3.9%)
+ Markus Klotzbuecher 4 (3.1%)
+ Ed Swarthout 3 (2.4%)
+ Mahesh Jade 3 (2.4%)
+ Jason Jin 3 (2.4%)
+ Martin Krause 3 (2.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 3 (2.4%)
+ Andy Fleming 2 (1.6%)
+ Joe D'Abbraccio 2 (1.6%)
+ Rafal Zabdyr 2 (1.6%)
+ Gerald Van Baren 2 (1.6%)
+ Rodolfo Giometti 2 (1.6%)
+ John Rigby 2 (1.6%)
+ Rafal Jaworowski 2 (1.6%)
+ Matthias Fuchs 2 (1.6%)
+ Ladislav Michl 1 (0.8%)
+ Andrew Morton 1 (0.8%)
+ Olaf Hering 1 (0.8%)
+ Michael Hennerich 1 (0.8%)
+ Dmitry Rakhchev 1 (0.8%)
+ James Mahan 1 (0.8%)
+ Dirk Behme 1 (0.8%)
+ Dmitry Ivanov 1 (0.8%)
+ Kevin Lam 1 (0.8%)
+ Michael Barkowski 1 (0.8%)
+ Scott McNutt 1 (0.8%)
+ Brian Miller 1 (0.8%)
+ Piotr Kruszynski 1 (0.8%)
+ Pravin M. Bathija 1 (0.8%)
+ Tirumala R Marri 1 (0.8%)
+ K R Gururaja Hebbar 1 (0.8%)
+ Joakim Tjernlund 1 (0.8%)
+ Timur Tabi 1 (0.8%)
+ Guennadi Liakhovetski 1 (0.8%)
+ Kyungmin Park 1 (0.8%)
+ Haavard Skinnemoen 1 (0.8%)
+ Heiko Schocher 1 (0.8%)
+ Dave Liu 1 (0.8%)
+ Larry Johnson 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Wolfgang Denk 1 (0.8%)
+ Mike Frysinger 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 206 (27.7%)
+ Freescale 191 (25.7%)
+ (Unknown) 64 (8.6%)
+ jcrosoft 37 (5.0%)
+ ESD Electronics 35 (4.7%)
+ Analog Devices 32 (4.3%)
+ Atmel 28 (3.8%)
+ Nobuhiro Iwamatsu 23 (3.1%)
+ Semihalf Embedded Systems 17 (2.3%)
+ ACM 13 (1.7%)
+ TQ Systems 12 (1.6%)
+ Netstal-Maschinen 10 (1.3%)
+ Stelian Pop 8 (1.1%)
+ Custom IDEAS 7 (0.9%)
+ Openmoko 7 (0.9%)
+ MontaVista 6 (0.8%)
+ NEC 6 (0.8%)
+ ARM 5 (0.7%)
+ Wind River 5 (0.7%)
+ Renesas Electronics 3 (0.4%)
+ Samsung 3 (0.4%)
+ Funky 3 (0.4%)
+ Advantech 2 (0.3%)
+ Embedded Specialties 2 (0.3%)
+ EmCraft Systems 2 (0.3%)
+ Ericsson 2 (0.3%)
+ Sanyo LSI Technology India 2 (0.3%)
+ Terascala 2 (0.3%)
+ Transmode Systems 2 (0.3%)
+ Bluegiga Technologies 1 (0.1%)
+ BT Group 1 (0.1%)
+ Digi International 1 (0.1%)
+ ECI Telecom 1 (0.1%)
+ Ingenieurbuero Ganssloser 1 (0.1%)
+ Juniper Networks 1 (0.1%)
+ Media Lab 1 (0.1%)
+ Sysart Oy 1 (0.1%)
+ Texas Instruments 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Analog Devices 61912 (33.7%)
+ DENX Software Engineering 34164 (18.6%)
+ Freescale 34101 (18.5%)
+ (Unknown) 16949 (9.2%)
+ ESD Electronics 9204 (5.0%)
+ Semihalf Embedded Systems 3568 (1.9%)
+ Nobuhiro Iwamatsu 3532 (1.9%)
+ Atmel 3000 (1.6%)
+ ARM 2622 (1.4%)
+ Embedded Specialties 1654 (0.9%)
+ ACM 1639 (0.9%)
+ Stelian Pop 1480 (0.8%)
+ Renesas Electronics 1466 (0.8%)
+ Ericsson 1455 (0.8%)
+ MontaVista 1269 (0.7%)
+ Netstal-Maschinen 1062 (0.6%)
+ Sysart Oy 985 (0.5%)
+ Wind River 827 (0.4%)
+ Samsung 742 (0.4%)
+ jcrosoft 613 (0.3%)
+ Openmoko 487 (0.3%)
+ Funky 467 (0.3%)
+ TQ Systems 200 (0.1%)
+ NEC 162 (0.1%)
+ Transmode Systems 143 (0.1%)
+ Custom IDEAS 66 (0.0%)
+ ECI Telecom 45 (0.0%)
+ Ingenieurbuero Ganssloser 22 (0.0%)
+ Sanyo LSI Technology India 20 (0.0%)
+ BT Group 20 (0.0%)
+ EmCraft Systems 15 (0.0%)
+ Advantech 13 (0.0%)
+ Digi International 9 (0.0%)
+ Terascala 7 (0.0%)
+ Media Lab 6 (0.0%)
+ Texas Instruments 6 (0.0%)
+ Juniper Networks 2 (0.0%)
+ Bluegiga Technologies 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 127)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 54 (42.5%)
+ (Unknown) 23 (18.1%)
+ DENX Software Engineering 21 (16.5%)
+ Semihalf Embedded Systems 5 (3.9%)
+ jcrosoft 3 (2.4%)
+ TQ Systems 3 (2.4%)
+ Analog Devices 2 (1.6%)
+ ESD Electronics 2 (1.6%)
+ Custom IDEAS 2 (1.6%)
+ AMCC 2 (1.6%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Atmel 1 (0.8%)
+ ACM 1 (0.8%)
+ Samsung 1 (0.8%)
+ Transmode Systems 1 (0.8%)
+ Sanyo LSI Technology India 1 (0.8%)
+ EmCraft Systems 1 (0.8%)
+ Linux Foundation 1 (0.8%)
+ Novell 1 (0.8%)
+ Psyent 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 88)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 20 (22.7%)
+ Freescale 17 (19.3%)
+ DENX Software Engineering 8 (9.1%)
+ Semihalf Embedded Systems 4 (4.5%)
+ TQ Systems 2 (2.3%)
+ Custom IDEAS 2 (2.3%)
+ Atmel 2 (2.3%)
+ Wind River 2 (2.3%)
+ Funky 2 (2.3%)
+ jcrosoft 1 (1.1%)
+ Analog Devices 1 (1.1%)
+ ESD Electronics 1 (1.1%)
+ Nobuhiro Iwamatsu 1 (1.1%)
+ ACM 1 (1.1%)
+ Samsung 1 (1.1%)
+ Transmode Systems 1 (1.1%)
+ Sanyo LSI Technology India 1 (1.1%)
+ EmCraft Systems 1 (1.1%)
+ ARM 1 (1.1%)
+ Embedded Specialties 1 (1.1%)
+ Stelian Pop 1 (1.1%)
+ Renesas Electronics 1 (1.1%)
+ Ericsson 1 (1.1%)
+ MontaVista 1 (1.1%)
+ Netstal-Maschinen 1 (1.1%)
+ Sysart Oy 1 (1.1%)
+ Openmoko 1 (1.1%)
+ NEC 1 (1.1%)
+ ECI Telecom 1 (1.1%)
+ Ingenieurbuero Ganssloser 1 (1.1%)
+ BT Group 1 (1.1%)
+ Advantech 1 (1.1%)
+ Digi International 1 (1.1%)
+ Terascala 1 (1.1%)
+ Media Lab 1 (1.1%)
+ Texas Instruments 1 (1.1%)
+ Juniper Networks 1 (1.1%)
+ Bluegiga Technologies 1 (1.1%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v1.3.3.rst b/doc/develop/statistics/u-boot-stats-v1.3.3.rst
new file mode 100644
index 0000000..c381a73
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v1.3.3.rst
@@ -0,0 +1,456 @@
+:orphan:
+
+Release Statistics for U-Boot v1.3.3
+====================================
+
+* Processed 646 csets from 75 developers
+
+* 38 employers found
+
+* A total of 81810 lines added, 37342 removed (delta 44468)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marian Balakowicz 68 (10.5%)
+ Wolfgang Denk 63 (9.8%)
+ Stefan Roese 63 (9.8%)
+ Kumar Gala 35 (5.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 28 (4.3%)
+ Yuri Tikhonov 27 (4.2%)
+ Mike Frysinger 21 (3.3%)
+ Shinya Kuribayashi 20 (3.1%)
+ Dave Liu 19 (2.9%)
+ Guennadi Liakhovetski 18 (2.8%)
+ Bartlomiej Sieka 18 (2.8%)
+ Anton Vorontsov 18 (2.8%)
+ Matthias Fuchs 15 (2.3%)
+ Michal Simek 14 (2.2%)
+ Daniel Hellstrom 14 (2.2%)
+ TsiChung Liew 13 (2.0%)
+ Stelian Pop 12 (1.9%)
+ Sascha Hauer 12 (1.9%)
+ Nobuhiro Iwamatsu 10 (1.5%)
+ Kim Phillips 7 (1.1%)
+ Anatolij Gustschin 7 (1.1%)
+ Jon Loeliger 7 (1.1%)
+ Sascha Laue 6 (0.9%)
+ Yusuke Goda 6 (0.9%)
+ David Gibson 6 (0.9%)
+ James Yang 5 (0.8%)
+ Detlev Zundel 5 (0.8%)
+ Vlad Lungu 5 (0.8%)
+ Andy Fleming 5 (0.8%)
+ Timur Tabi 5 (0.8%)
+ Michael Barkowski 5 (0.8%)
+ Niklaus Giger 5 (0.8%)
+ Markus Klotzbuecher 4 (0.6%)
+ Marcel Ziswiler 4 (0.6%)
+ Magnus Lilja 4 (0.6%)
+ Kyungmin Park 4 (0.6%)
+ Grant Erickson 3 (0.5%)
+ Andre Schwarz 3 (0.5%)
+ Dirk Behme 3 (0.5%)
+ Martin Krause 3 (0.5%)
+ Joakim Tjernlund 3 (0.5%)
+ Tor Krill 3 (0.5%)
+ Jerry Van Baren 3 (0.5%)
+ Larry Johnson 3 (0.5%)
+ Pieter Voorthuijsen 3 (0.5%)
+ Nick Spence 2 (0.3%)
+ Becky Bruce 2 (0.3%)
+ Lee Nipper 2 (0.3%)
+ Markus Brunner 2 (0.3%)
+ Ulf Samuelsson 2 (0.3%)
+ Matthew Fettke 2 (0.3%)
+ David Brownell 2 (0.3%)
+ Peter Pearse 2 (0.3%)
+ Aras Vaichas 2 (0.3%)
+ Mark Jonas 2 (0.3%)
+ Bryan O'Donoghue 2 (0.3%)
+ Adrian Filipi 1 (0.2%)
+ Wheatley Travis 1 (0.2%)
+ Ira Snyder 1 (0.2%)
+ Dave Mitchell 1 (0.2%)
+ Jeremy McNicoll 1 (0.2%)
+ Ben Warren 1 (0.2%)
+ Ed Swarthout 1 (0.2%)
+ Roy Zang 1 (0.2%)
+ Sergei Poselenov 1 (0.2%)
+ Troy Kisky 1 (0.2%)
+ Jason Wessel 1 (0.2%)
+ Gururaja Hebbar K R 1 (0.2%)
+ eran liberty 1 (0.2%)
+ Eugene O'Brien 1 (0.2%)
+ Mike Nuss 1 (0.2%)
+ Haavard Skinnemoen 1 (0.2%)
+ Joe D'Abbraccio 1 (0.2%)
+ Scott Wood 1 (0.2%)
+ Heiko Schocher 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Daniel Hellstrom 15355 (15.5%)
+ Wolfgang Denk 13136 (13.3%)
+ Mike Frysinger 12077 (12.2%)
+ Marian Balakowicz 10224 (10.3%)
+ Stefan Roese 5181 (5.2%)
+ Sascha Hauer 5161 (5.2%)
+ Matthias Fuchs 4604 (4.6%)
+ Dave Liu 3701 (3.7%)
+ Guennadi Liakhovetski 3447 (3.5%)
+ Yusuke Goda 3133 (3.2%)
+ Stelian Pop 2669 (2.7%)
+ Yuri Tikhonov 2635 (2.7%)
+ Matthew Fettke 1823 (1.8%)
+ Kumar Gala 1799 (1.8%)
+ TsiChung Liew 1477 (1.5%)
+ Niklaus Giger 1438 (1.5%)
+ Shinya Kuribayashi 1189 (1.2%)
+ Michal Simek 980 (1.0%)
+ Bartlomiej Sieka 927 (0.9%)
+ Nobuhiro Iwamatsu 869 (0.9%)
+ Jean-Christophe PLAGNIOL-VILLARD 759 (0.8%)
+ Pieter Voorthuijsen 688 (0.7%)
+ Mark Jonas 645 (0.7%)
+ Anton Vorontsov 517 (0.5%)
+ Larry Johnson 507 (0.5%)
+ Timur Tabi 462 (0.5%)
+ Kim Phillips 437 (0.4%)
+ David Gibson 427 (0.4%)
+ eran liberty 324 (0.3%)
+ Jerry Van Baren 283 (0.3%)
+ Tor Krill 257 (0.3%)
+ Jason Wessel 233 (0.2%)
+ Andy Fleming 206 (0.2%)
+ Ulf Samuelsson 150 (0.2%)
+ Detlev Zundel 121 (0.1%)
+ Michael Barkowski 118 (0.1%)
+ Andre Schwarz 115 (0.1%)
+ Mike Nuss 99 (0.1%)
+ Dirk Behme 97 (0.1%)
+ Bryan O'Donoghue 93 (0.1%)
+ Kyungmin Park 82 (0.1%)
+ James Yang 73 (0.1%)
+ Vlad Lungu 72 (0.1%)
+ Sascha Laue 54 (0.1%)
+ Jon Loeliger 53 (0.1%)
+ Grant Erickson 33 (0.0%)
+ Joakim Tjernlund 33 (0.0%)
+ Ira Snyder 32 (0.0%)
+ Magnus Lilja 30 (0.0%)
+ Anatolij Gustschin 27 (0.0%)
+ Markus Klotzbuecher 27 (0.0%)
+ Aras Vaichas 25 (0.0%)
+ Martin Krause 22 (0.0%)
+ Wheatley Travis 21 (0.0%)
+ Nick Spence 12 (0.0%)
+ Lee Nipper 12 (0.0%)
+ Becky Bruce 10 (0.0%)
+ David Brownell 10 (0.0%)
+ Markus Brunner 9 (0.0%)
+ Troy Kisky 9 (0.0%)
+ Marcel Ziswiler 8 (0.0%)
+ Eugene O'Brien 8 (0.0%)
+ Sergei Poselenov 7 (0.0%)
+ Scott Wood 5 (0.0%)
+ Haavard Skinnemoen 4 (0.0%)
+ Adrian Filipi 3 (0.0%)
+ Jeremy McNicoll 3 (0.0%)
+ Heiko Schocher 3 (0.0%)
+ Peter Pearse 2 (0.0%)
+ Dave Mitchell 1 (0.0%)
+ Ben Warren 1 (0.0%)
+ Ed Swarthout 1 (0.0%)
+ Roy Zang 1 (0.0%)
+ Gururaja Hebbar K R 1 (0.0%)
+ Joe D'Abbraccio 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 7579 (20.3%)
+ Matthias Fuchs 443 (1.2%)
+ TsiChung Liew 379 (1.0%)
+ Jason Wessel 233 (0.6%)
+ Kim Phillips 218 (0.6%)
+ Jerry Van Baren 186 (0.5%)
+ David Gibson 53 (0.1%)
+ Dirk Behme 49 (0.1%)
+ Markus Klotzbuecher 13 (0.0%)
+ Eugene O'Brien 7 (0.0%)
+ Nick Spence 6 (0.0%)
+ Marcel Ziswiler 3 (0.0%)
+ Troy Kisky 1 (0.0%)
+ Adrian Filipi 1 (0.0%)
+ Heiko Schocher 1 (0.0%)
+ Gururaja Hebbar K R 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Dmitry Rakhchev 15 (12.8%)
+ Kim Phillips 14 (12.0%)
+ Guennadi Liakhovetski 13 (11.1%)
+ Ben Warren 12 (10.3%)
+ Kumar Gala 9 (7.7%)
+ Wolfgang Denk 9 (7.7%)
+ Nobuhiro Iwamatsu 6 (5.1%)
+ Stefan Roese 5 (4.3%)
+ Gerald Van Baren 4 (3.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 3 (2.6%)
+ TsiChung Liew 2 (1.7%)
+ Markus Klotzbuecher 2 (1.7%)
+ Bartlomiej Sieka 2 (1.7%)
+ Mike Frysinger 1 (0.9%)
+ Jerry Van Baren 1 (0.9%)
+ Ebony Zhu 1 (0.9%)
+ Luigi Comio Mantellini 1 (0.9%)
+ Kurt Mahan 1 (0.9%)
+ Dejan Minic 1 (0.9%)
+ Srikanth Srinivasan 1 (0.9%)
+ Michael Hennerich 1 (0.9%)
+ Eran Liberty 1 (0.9%)
+ Zachary P. Landau 1 (0.9%)
+ Matt Wadel 1 (0.9%)
+ Jon Loeliger 1 (0.9%)
+ Markus Brunner 1 (0.9%)
+ Sergei Poselenov 1 (0.9%)
+ Detlev Zundel 1 (0.9%)
+ Vlad Lungu 1 (0.9%)
+ Andy Fleming 1 (0.9%)
+ Tor Krill 1 (0.9%)
+ Shinya Kuribayashi 1 (0.9%)
+ Yuri Tikhonov 1 (0.9%)
+ Dave Liu 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kim Phillips 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 171 (26.5%)
+ Freescale 112 (17.3%)
+ Semihalf Embedded Systems 86 (13.3%)
+ (Unknown) 59 (9.1%)
+ jcrosoft 28 (4.3%)
+ Analog Devices 21 (3.3%)
+ MontaVista 18 (2.8%)
+ ESD Electronics 15 (2.3%)
+ Gaisler Research 14 (2.2%)
+ Xilinx 14 (2.2%)
+ EmCraft Systems 12 (1.9%)
+ Pengutronix 12 (1.9%)
+ Stelian Pop 12 (1.9%)
+ Nobuhiro Iwamatsu 10 (1.5%)
+ Wind River 7 (1.1%)
+ Renesas Electronics 6 (0.9%)
+ Netstal-Maschinen 5 (0.8%)
+ Samsung 4 (0.6%)
+ ACM 3 (0.5%)
+ Atmel 3 (0.5%)
+ Custom IDEAS 3 (0.5%)
+ Excito Elektronik 3 (0.5%)
+ Matrix Vision 3 (0.5%)
+ Nuovation System Designs 3 (0.5%)
+ TQ Systems 3 (0.5%)
+ Transmode Systems 3 (0.5%)
+ ARM 2 (0.3%)
+ MagTech Systems 2 (0.3%)
+ NEC 2 (0.3%)
+ Dirk Behme 2 (0.3%)
+ Advantech 1 (0.2%)
+ AMCC 1 (0.2%)
+ Boundary Devices 1 (0.2%)
+ EuroTech 1 (0.2%)
+ OVRO 1 (0.2%)
+ Prodrive 1 (0.2%)
+ Sanyo LSI Technology India 1 (0.2%)
+ Terascala 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 22112 (22.3%)
+ Gaisler Research 15355 (15.5%)
+ Analog Devices 12077 (12.2%)
+ Semihalf Embedded Systems 11151 (11.3%)
+ Freescale 8389 (8.5%)
+ (Unknown) 7280 (7.3%)
+ Pengutronix 5161 (5.2%)
+ ESD Electronics 4604 (4.6%)
+ Renesas Electronics 3133 (3.2%)
+ Stelian Pop 2669 (2.7%)
+ Netstal-Maschinen 1438 (1.5%)
+ Xilinx 980 (1.0%)
+ Nobuhiro Iwamatsu 869 (0.9%)
+ jcrosoft 759 (0.8%)
+ MontaVista 517 (0.5%)
+ ACM 507 (0.5%)
+ EmCraft Systems 495 (0.5%)
+ Wind River 308 (0.3%)
+ Custom IDEAS 283 (0.3%)
+ Excito Elektronik 257 (0.3%)
+ Atmel 154 (0.2%)
+ Matrix Vision 115 (0.1%)
+ Terascala 99 (0.1%)
+ Samsung 82 (0.1%)
+ Dirk Behme 50 (0.1%)
+ NEC 35 (0.0%)
+ Nuovation System Designs 33 (0.0%)
+ Transmode Systems 33 (0.0%)
+ OVRO 32 (0.0%)
+ MagTech Systems 25 (0.0%)
+ TQ Systems 22 (0.0%)
+ Prodrive 10 (0.0%)
+ Boundary Devices 9 (0.0%)
+ Advantech 8 (0.0%)
+ EuroTech 3 (0.0%)
+ ARM 2 (0.0%)
+ AMCC 1 (0.0%)
+ Sanyo LSI Technology India 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 33 (28.2%)
+ DENX Software Engineering 30 (25.6%)
+ EmCraft Systems 17 (14.5%)
+ (Unknown) 14 (12.0%)
+ Nobuhiro Iwamatsu 6 (5.1%)
+ Custom IDEAS 4 (3.4%)
+ jcrosoft 3 (2.6%)
+ Analog Devices 2 (1.7%)
+ Semihalf Embedded Systems 2 (1.7%)
+ Wind River 1 (0.9%)
+ Excito Elektronik 1 (0.9%)
+ Extricom 1 (0.9%)
+ General Electric 1 (0.9%)
+ Industrie Dial Face 1 (0.9%)
+ Lab X Technologies 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 80)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 17 (21.2%)
+ (Unknown) 15 (18.8%)
+ DENX Software Engineering 8 (10.0%)
+ Wind River 3 (3.8%)
+ EmCraft Systems 2 (2.5%)
+ Semihalf Embedded Systems 2 (2.5%)
+ Atmel 2 (2.5%)
+ Nobuhiro Iwamatsu 1 (1.2%)
+ Custom IDEAS 1 (1.2%)
+ jcrosoft 1 (1.2%)
+ Analog Devices 1 (1.2%)
+ Excito Elektronik 1 (1.2%)
+ Gaisler Research 1 (1.2%)
+ Pengutronix 1 (1.2%)
+ ESD Electronics 1 (1.2%)
+ Renesas Electronics 1 (1.2%)
+ Stelian Pop 1 (1.2%)
+ Netstal-Maschinen 1 (1.2%)
+ Xilinx 1 (1.2%)
+ MontaVista 1 (1.2%)
+ ACM 1 (1.2%)
+ Matrix Vision 1 (1.2%)
+ Terascala 1 (1.2%)
+ Samsung 1 (1.2%)
+ Dirk Behme 1 (1.2%)
+ NEC 1 (1.2%)
+ Nuovation System Designs 1 (1.2%)
+ Transmode Systems 1 (1.2%)
+ OVRO 1 (1.2%)
+ MagTech Systems 1 (1.2%)
+ TQ Systems 1 (1.2%)
+ Prodrive 1 (1.2%)
+ Boundary Devices 1 (1.2%)
+ Advantech 1 (1.2%)
+ EuroTech 1 (1.2%)
+ ARM 1 (1.2%)
+ AMCC 1 (1.2%)
+ Sanyo LSI Technology India 1 (1.2%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v1.3.4.rst b/doc/develop/statistics/u-boot-stats-v1.3.4.rst
new file mode 100644
index 0000000..125de24
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v1.3.4.rst
@@ -0,0 +1,508 @@
+:orphan:
+
+Release Statistics for U-Boot v1.3.4
+====================================
+
+* Processed 511 csets from 86 developers
+
+* 46 employers found
+
+* A total of 52636 lines added, 31679 removed (delta 20957)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 56 (11.0%)
+ Stefan Roese 34 (6.7%)
+ Haavard Skinnemoen 33 (6.5%)
+ Kumar Gala 27 (5.3%)
+ Stelian Pop 27 (5.3%)
+ Nobuhiro Iwamatsu 21 (4.1%)
+ Wolfgang Grandegger 19 (3.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 18 (3.5%)
+ TsiChung Liew 18 (3.5%)
+ Sergei Poselenov 17 (3.3%)
+ Becky Bruce 15 (2.9%)
+ Shinya Kuribayashi 12 (2.3%)
+ Andy Fleming 11 (2.2%)
+ Remy Bohmer 10 (2.0%)
+ Hugo Villeneuve 10 (2.0%)
+ Andre Schwarz 8 (1.6%)
+ Paul Gortmaker 8 (1.6%)
+ Michal Simek 7 (1.4%)
+ Yuri Tikhonov 7 (1.4%)
+ Scott Wood 6 (1.2%)
+ Kim Phillips 6 (1.2%)
+ Gerald Van Baren 6 (1.2%)
+ Anatolij Gustschin 5 (1.0%)
+ Marcel Ziswiler 5 (1.0%)
+ Christian Eggers 5 (1.0%)
+ York Sun 5 (1.0%)
+ Magnus Lilja 4 (0.8%)
+ Matvejchikov Ilya 4 (0.8%)
+ Kyungmin Park 4 (0.8%)
+ Rafal Jaworowski 4 (0.8%)
+ Detlev Zundel 4 (0.8%)
+ Jason McMullan 4 (0.8%)
+ Anton Vorontsov 4 (0.8%)
+ Grant Erickson 4 (0.8%)
+ Ben Warren 3 (0.6%)
+ Gururaja Hebbar K R 3 (0.6%)
+ Steven A. Falco 3 (0.6%)
+ Kenneth Johansson 3 (0.6%)
+ Mark Jackson 3 (0.6%)
+ Harald Welte 3 (0.6%)
+ Gary Jennejohn 3 (0.6%)
+ Stuart Wood 3 (0.6%)
+ Tor Krill 3 (0.6%)
+ Dirk Behme 2 (0.4%)
+ Peter Tyser 2 (0.4%)
+ Sergey Lapin 2 (0.4%)
+ John Rigby 2 (0.4%)
+ Timur Tabi 2 (0.4%)
+ Sebastian Siewior 2 (0.4%)
+ Andrew Klossner 2 (0.4%)
+ Martha Marx 2 (0.4%)
+ Larry Johnson 2 (0.4%)
+ Marian Balakowicz 2 (0.4%)
+ Sascha Laue 2 (0.4%)
+ Vasiliy Leoenenko 2 (0.4%)
+ David Brownell 2 (0.4%)
+ Jens Gehrlein 1 (0.2%)
+ Steve Sakoman 1 (0.2%)
+ Roy Zang 1 (0.2%)
+ David Saada 1 (0.2%)
+ Yoshihiro Shimoda 1 (0.2%)
+ Markus Klotzbuecher 1 (0.2%)
+ Hunter, Jon 1 (0.2%)
+ Guennadi Liakhovetski 1 (0.2%)
+ Frank Svendsbøe 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ Heiko Schocher 1 (0.2%)
+ Adrian Filipi 1 (0.2%)
+ Wolfgang Ocker 1 (0.2%)
+ Ricardo Ribalda 1 (0.2%)
+ Niklaus Giger 1 (0.2%)
+ Juergen Kilb 1 (0.2%)
+ Robin Getz 1 (0.2%)
+ Jon Loeliger 1 (0.2%)
+ Dave Liu 1 (0.2%)
+ Daniel Hellstrom 1 (0.2%)
+ Joakim Tjernlund 1 (0.2%)
+ Jason Jin 1 (0.2%)
+ Patrice Vilchez 1 (0.2%)
+ Esben Haabendal 1 (0.2%)
+ Philip Balister 1 (0.2%)
+ Peter Ma 1 (0.2%)
+ David Gibson 1 (0.2%)
+ Matthias Fuchs 1 (0.2%)
+ Hans-Christian Egtvedt 1 (0.2%)
+ Ron Madrid 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 22067 (35.6%)
+ Stefan Roese 6880 (11.1%)
+ Stelian Pop 3760 (6.1%)
+ Haavard Skinnemoen 2754 (4.4%)
+ Andre Schwarz 2398 (3.9%)
+ Nobuhiro Iwamatsu 2064 (3.3%)
+ Wolfgang Grandegger 2042 (3.3%)
+ Shinya Kuribayashi 1721 (2.8%)
+ Sergei Poselenov 1706 (2.7%)
+ Yoshihiro Shimoda 1589 (2.6%)
+ Adrian Filipi 1320 (2.1%)
+ Kumar Gala 1196 (1.9%)
+ Grant Erickson 1196 (1.9%)
+ Hugo Villeneuve 1193 (1.9%)
+ Tor Krill 990 (1.6%)
+ Michal Simek 795 (1.3%)
+ Becky Bruce 786 (1.3%)
+ Gary Jennejohn 690 (1.1%)
+ Gerald Van Baren 642 (1.0%)
+ Anton Vorontsov 602 (1.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 441 (0.7%)
+ Timur Tabi 407 (0.7%)
+ Martha Marx 389 (0.6%)
+ Kenneth Johansson 382 (0.6%)
+ Hans-Christian Egtvedt 360 (0.6%)
+ York Sun 344 (0.6%)
+ Remy Bohmer 304 (0.5%)
+ Kim Phillips 254 (0.4%)
+ Andy Fleming 191 (0.3%)
+ Jason McMullan 167 (0.3%)
+ Scott Wood 158 (0.3%)
+ Yuri Tikhonov 157 (0.3%)
+ Ben Warren 139 (0.2%)
+ John Rigby 133 (0.2%)
+ Paul Gortmaker 129 (0.2%)
+ Stuart Wood 108 (0.2%)
+ Rafal Jaworowski 94 (0.2%)
+ Matthias Fuchs 93 (0.1%)
+ Marian Balakowicz 89 (0.1%)
+ Larry Johnson 86 (0.1%)
+ Matvejchikov Ilya 85 (0.1%)
+ Marcel Ziswiler 81 (0.1%)
+ Christian Eggers 81 (0.1%)
+ Jon Loeliger 75 (0.1%)
+ Peter Ma 64 (0.1%)
+ Harald Welte 59 (0.1%)
+ TsiChung Liew 58 (0.1%)
+ David Gibson 55 (0.1%)
+ David Saada 53 (0.1%)
+ Anatolij Gustschin 52 (0.1%)
+ Magnus Lilja 52 (0.1%)
+ Sascha Laue 52 (0.1%)
+ Vasiliy Leoenenko 36 (0.1%)
+ Jens Gehrlein 34 (0.1%)
+ Jason Jin 32 (0.1%)
+ Ron Madrid 31 (0.0%)
+ Sergey Lapin 30 (0.0%)
+ Andrew Klossner 29 (0.0%)
+ Hunter, Jon 25 (0.0%)
+ Heiko Schocher 24 (0.0%)
+ Kyungmin Park 22 (0.0%)
+ Mark Jackson 22 (0.0%)
+ Steven A. Falco 21 (0.0%)
+ Markus Klotzbuecher 18 (0.0%)
+ Dirk Behme 16 (0.0%)
+ Patrice Vilchez 16 (0.0%)
+ Detlev Zundel 15 (0.0%)
+ Joakim Tjernlund 15 (0.0%)
+ David Brownell 13 (0.0%)
+ Gururaja Hebbar K R 12 (0.0%)
+ Sebastian Siewior 8 (0.0%)
+ Dave Liu 8 (0.0%)
+ Peter Tyser 7 (0.0%)
+ Ricardo Ribalda 5 (0.0%)
+ Esben Haabendal 5 (0.0%)
+ Steve Sakoman 4 (0.0%)
+ Roy Zang 4 (0.0%)
+ Guennadi Liakhovetski 3 (0.0%)
+ Daniel Hellstrom 3 (0.0%)
+ Stefano Babic 2 (0.0%)
+ Niklaus Giger 2 (0.0%)
+ Juergen Kilb 2 (0.0%)
+ Robin Getz 2 (0.0%)
+ Philip Balister 2 (0.0%)
+ Frank Svendsbøe 1 (0.0%)
+ Wolfgang Ocker 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 3095 (9.8%)
+ Adrian Filipi 1320 (4.2%)
+ Michal Simek 676 (2.1%)
+ Gerald Van Baren 569 (1.8%)
+ Matthias Fuchs 93 (0.3%)
+ Kumar Gala 79 (0.2%)
+ Jon Loeliger 75 (0.2%)
+ Kenneth Johansson 53 (0.2%)
+ Harald Welte 25 (0.1%)
+ David Gibson 11 (0.0%)
+ Peter Tyser 6 (0.0%)
+ Kyungmin Park 5 (0.0%)
+ Heiko Schocher 2 (0.0%)
+ Dirk Behme 2 (0.0%)
+ Gururaja Hebbar K R 2 (0.0%)
+ Steve Sakoman 2 (0.0%)
+ Robin Getz 2 (0.0%)
+ Guennadi Liakhovetski 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 133)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jean-Christophe PLAGNIOL-VILLARD 30 (22.6%)
+ Ben Warren 21 (15.8%)
+ Kim Phillips 8 (6.0%)
+ Andy Fleming 7 (5.3%)
+ Stefan Roese 6 (4.5%)
+ Ilya Yanok 6 (4.5%)
+ Markus Klotzbuecher 5 (3.8%)
+ Scott Wood 5 (3.8%)
+ Rafal Czubak 4 (3.0%)
+ Martin Krause 4 (3.0%)
+ Thomas Waehner 4 (3.0%)
+ Shinya Kuribayashi 4 (3.0%)
+ Haavard Skinnemoen 4 (3.0%)
+ Kurt Mahan 3 (2.3%)
+ Wolfgang Denk 3 (2.3%)
+ Alexey Korolev 2 (1.5%)
+ Dirk Behme 1 (0.8%)
+ Steve Sakoman 1 (0.8%)
+ Manikandan Pillai 1 (0.8%)
+ Ricardo Ribalda Delgado 1 (0.8%)
+ Grant Likely 1 (0.8%)
+ Manuel Sahm 1 (0.8%)
+ John Roberts 1 (0.8%)
+ Philip Balister, OpenSDR 1 (0.8%)
+ Werner Almesberger 1 (0.8%)
+ Francesco Albanese 1 (0.8%)
+ Juergen Kilb 1 (0.8%)
+ Philip Balister 1 (0.8%)
+ Dave Liu 1 (0.8%)
+ Jens Gehrlein 1 (0.8%)
+ Timur Tabi 1 (0.8%)
+ Sergei Poselenov 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Guennadi Liakhovetski 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Haavard Skinnemoen 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Gururaja Hebbar K R 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Haavard Skinnemoen 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 124 (24.3%)
+ Freescale 96 (18.8%)
+ (Unknown) 50 (9.8%)
+ Atmel 35 (6.8%)
+ Stelian Pop 27 (5.3%)
+ EmCraft Systems 24 (4.7%)
+ jcrosoft 18 (3.5%)
+ Renesas Electronics 17 (3.3%)
+ Lyrtech 10 (2.0%)
+ Oce Technologies 10 (2.0%)
+ Wind River 8 (1.6%)
+ Matrix Vision 8 (1.6%)
+ Xilinx 7 (1.4%)
+ Custom IDEAS 6 (1.2%)
+ Semihalf Embedded Systems 6 (1.2%)
+ Nobuhiro Iwamatsu 5 (1.0%)
+ MontaVista 4 (0.8%)
+ NetApp 4 (0.8%)
+ Nuovation System Designs 4 (0.8%)
+ Samsung 4 (0.8%)
+ Excito Elektronik 3 (0.6%)
+ Harris Corporation 3 (0.6%)
+ Lab X Technologies 3 (0.6%)
+ Mercury IMC Ltd. 3 (0.6%)
+ Sanyo LSI Technology India 3 (0.6%)
+ South Pole AB 3 (0.6%)
+ ACM 2 (0.4%)
+ Xerox 2 (0.4%)
+ Liebherr 2 (0.4%)
+ linutronix 2 (0.4%)
+ Silicon Turnkey Express 2 (0.4%)
+ Extreme Engineering Solutions 2 (0.4%)
+ Analog Devices 1 (0.2%)
+ ECI Telecom 1 (0.2%)
+ ESD Electronics 1 (0.2%)
+ EuroTech 1 (0.2%)
+ Gaisler Research 1 (0.2%)
+ Mediama Technologies 1 (0.2%)
+ Netstal-Maschinen 1 (0.2%)
+ Reccoware Systems 1 (0.2%)
+ Sakoman Inc. 1 (0.2%)
+ Texas Instruments 1 (0.2%)
+ TQ Systems 1 (0.2%)
+ Transmode Systems 1 (0.2%)
+ Dirk Behme 1 (0.2%)
+ Sheldon Instruments 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 31112 (50.1%)
+ Stelian Pop 3760 (6.1%)
+ Freescale 3646 (5.9%)
+ Renesas Electronics 3616 (5.8%)
+ Atmel 3130 (5.0%)
+ (Unknown) 3055 (4.9%)
+ Matrix Vision 2398 (3.9%)
+ EmCraft Systems 1863 (3.0%)
+ EuroTech 1320 (2.1%)
+ Nuovation System Designs 1196 (1.9%)
+ Lyrtech 1193 (1.9%)
+ Excito Elektronik 990 (1.6%)
+ Xilinx 795 (1.3%)
+ Custom IDEAS 642 (1.0%)
+ MontaVista 602 (1.0%)
+ jcrosoft 441 (0.7%)
+ Silicon Turnkey Express 389 (0.6%)
+ South Pole AB 382 (0.6%)
+ Oce Technologies 304 (0.5%)
+ Semihalf Embedded Systems 183 (0.3%)
+ NetApp 167 (0.3%)
+ Wind River 129 (0.2%)
+ Lab X Technologies 108 (0.2%)
+ ESD Electronics 93 (0.1%)
+ ACM 86 (0.1%)
+ Mediama Technologies 64 (0.1%)
+ ECI Telecom 53 (0.1%)
+ Liebherr 52 (0.1%)
+ Nobuhiro Iwamatsu 37 (0.1%)
+ TQ Systems 34 (0.1%)
+ Sheldon Instruments 31 (0.0%)
+ Xerox 29 (0.0%)
+ Texas Instruments 25 (0.0%)
+ Samsung 22 (0.0%)
+ Mercury IMC Ltd. 22 (0.0%)
+ Harris Corporation 21 (0.0%)
+ Transmode Systems 15 (0.0%)
+ Sanyo LSI Technology India 12 (0.0%)
+ Dirk Behme 9 (0.0%)
+ linutronix 8 (0.0%)
+ Extreme Engineering Solutions 7 (0.0%)
+ Sakoman Inc. 4 (0.0%)
+ Gaisler Research 3 (0.0%)
+ Analog Devices 2 (0.0%)
+ Netstal-Maschinen 2 (0.0%)
+ Reccoware Systems 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 133)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 31 (23.3%)
+ jcrosoft 30 (22.6%)
+ Freescale 25 (18.8%)
+ DENX Software Engineering 14 (10.5%)
+ TQ Systems 9 (6.8%)
+ EmCraft Systems 7 (5.3%)
+ Atmel 4 (3.0%)
+ Semihalf Embedded Systems 4 (3.0%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Texas Instruments 1 (0.8%)
+ Sakoman Inc. 1 (0.8%)
+ Feig Electronic 1 (0.8%)
+ Openmoko 1 (0.8%)
+ OpenSDR 1 (0.8%)
+ Powerwave Technologies 1 (0.8%)
+ Secretlab 1 (0.8%)
+ Universidad Autonoma de Madrid 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 89)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 18 (20.2%)
+ Freescale 13 (14.6%)
+ DENX Software Engineering 10 (11.2%)
+ Atmel 3 (3.4%)
+ EmCraft Systems 2 (2.2%)
+ Semihalf Embedded Systems 2 (2.2%)
+ Renesas Electronics 2 (2.2%)
+ jcrosoft 1 (1.1%)
+ TQ Systems 1 (1.1%)
+ Nobuhiro Iwamatsu 1 (1.1%)
+ Texas Instruments 1 (1.1%)
+ Sakoman Inc. 1 (1.1%)
+ Stelian Pop 1 (1.1%)
+ Matrix Vision 1 (1.1%)
+ EuroTech 1 (1.1%)
+ Nuovation System Designs 1 (1.1%)
+ Lyrtech 1 (1.1%)
+ Excito Elektronik 1 (1.1%)
+ Xilinx 1 (1.1%)
+ Custom IDEAS 1 (1.1%)
+ MontaVista 1 (1.1%)
+ Silicon Turnkey Express 1 (1.1%)
+ South Pole AB 1 (1.1%)
+ Oce Technologies 1 (1.1%)
+ NetApp 1 (1.1%)
+ Wind River 1 (1.1%)
+ Lab X Technologies 1 (1.1%)
+ ESD Electronics 1 (1.1%)
+ ACM 1 (1.1%)
+ Mediama Technologies 1 (1.1%)
+ ECI Telecom 1 (1.1%)
+ Liebherr 1 (1.1%)
+ Sheldon Instruments 1 (1.1%)
+ Xerox 1 (1.1%)
+ Samsung 1 (1.1%)
+ Mercury IMC Ltd. 1 (1.1%)
+ Harris Corporation 1 (1.1%)
+ Transmode Systems 1 (1.1%)
+ Sanyo LSI Technology India 1 (1.1%)
+ Dirk Behme 1 (1.1%)
+ linutronix 1 (1.1%)
+ Extreme Engineering Solutions 1 (1.1%)
+ Gaisler Research 1 (1.1%)
+ Analog Devices 1 (1.1%)
+ Netstal-Maschinen 1 (1.1%)
+ Reccoware Systems 1 (1.1%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2008.10.rst b/doc/develop/statistics/u-boot-stats-v2008.10.rst
new file mode 100644
index 0000000..b163a5c
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2008.10.rst
@@ -0,0 +1,897 @@
+:orphan:
+
+Release Statistics for U-Boot v2008.10
+======================================
+
+* Processed 2498 csets from 174 developers
+
+* 85 employers found
+
+* A total of 402101 lines added, 156903 removed (delta 245198)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 245 (9.8%)
+ Wolfgang Denk 211 (8.4%)
+ Kumar Gala 185 (7.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 175 (7.0%)
+ Nobuhiro Iwamatsu 78 (3.1%)
+ TsiChung Liew 78 (3.1%)
+ Marian Balakowicz 74 (3.0%)
+ Matthias Fuchs 73 (2.9%)
+ Haavard Skinnemoen 67 (2.7%)
+ Mike Frysinger 56 (2.2%)
+ Stelian Pop 49 (2.0%)
+ Shinya Kuribayashi 46 (1.8%)
+ Dave Liu 42 (1.7%)
+ Yuri Tikhonov 39 (1.6%)
+ Guennadi Liakhovetski 39 (1.6%)
+ Kim Phillips 37 (1.5%)
+ Jon Loeliger 37 (1.5%)
+ Anton Vorontsov 37 (1.5%)
+ Larry Johnson 37 (1.5%)
+ Ben Warren 35 (1.4%)
+ Anatolij Gustschin 31 (1.2%)
+ Heiko Schocher 27 (1.1%)
+ Andy Fleming 27 (1.1%)
+ Becky Bruce 25 (1.0%)
+ Michal Simek 24 (1.0%)
+ Sergei Poselenov 23 (0.9%)
+ Scott Wood 22 (0.9%)
+ Bartlomiej Sieka 21 (0.8%)
+ Wolfgang Grandegger 20 (0.8%)
+ Niklaus Giger 19 (0.8%)
+ Hugo Villeneuve 18 (0.7%)
+ David Gibson 16 (0.6%)
+ Timur Tabi 16 (0.6%)
+ Andre Schwarz 15 (0.6%)
+ Gerald Van Baren 15 (0.6%)
+ Remy Bohmer 15 (0.6%)
+ Kyungmin Park 15 (0.6%)
+ Daniel Hellstrom 15 (0.6%)
+ Ricardo Ribalda 14 (0.6%)
+ Detlev Zundel 13 (0.5%)
+ Harald Welte 12 (0.5%)
+ Marcel Ziswiler 12 (0.5%)
+ Grant Erickson 12 (0.5%)
+ Sascha Hauer 12 (0.5%)
+ Gururaja Hebbar K R 11 (0.4%)
+ Rafal Jaworowski 11 (0.4%)
+ Grant Likely 11 (0.4%)
+ Paul Gortmaker 11 (0.4%)
+ Peter Tyser 10 (0.4%)
+ Nick Spence 10 (0.4%)
+ Magnus Lilja 10 (0.4%)
+ William Juul 10 (0.4%)
+ Martin Krause 10 (0.4%)
+ Michael Schwingen 10 (0.4%)
+ Jason Jin 9 (0.4%)
+ James Yang 9 (0.4%)
+ Markus Klotzbuecher 9 (0.4%)
+ York Sun 9 (0.4%)
+ Sascha Laue 8 (0.3%)
+ Yoshihiro Shimoda 7 (0.3%)
+ John Rigby 7 (0.3%)
+ Jens Gehrlein 7 (0.3%)
+ Vlad Lungu 7 (0.3%)
+ Peter Pearse 7 (0.3%)
+ Steven A. Falco 6 (0.2%)
+ Joakim Tjernlund 6 (0.2%)
+ Tor Krill 6 (0.2%)
+ Yusuke Goda 6 (0.2%)
+ Haiying Wang 5 (0.2%)
+ Andrew Dyer 5 (0.2%)
+ Mark Jackson 5 (0.2%)
+ Dirk Behme 5 (0.2%)
+ Christian Eggers 5 (0.2%)
+ Michael Barkowski 5 (0.2%)
+ Grzegorz Bernacki 5 (0.2%)
+ Victor Gallardo 4 (0.2%)
+ Jason McMullan 4 (0.2%)
+ Andreas Engel 4 (0.2%)
+ Ira W. Snyder 4 (0.2%)
+ Roy Zang 4 (0.2%)
+ Matvejchikov Ilya 4 (0.2%)
+ Stefano Babic 4 (0.2%)
+ David Brownell 4 (0.2%)
+ Jerry Van Baren 4 (0.2%)
+ Ed Swarthout 3 (0.1%)
+ Adam Graham 3 (0.1%)
+ Gary Jennejohn 3 (0.1%)
+ Adrian Filipi 3 (0.1%)
+ Andrew Klossner 3 (0.1%)
+ Markus Heidelberg 3 (0.1%)
+ Hans-Christian Egtvedt 3 (0.1%)
+ Kenneth Johansson 3 (0.1%)
+ Feng Kan 3 (0.1%)
+ Stuart Wood 3 (0.1%)
+ Markus Brunner 3 (0.1%)
+ Eugene O'Brien 3 (0.1%)
+ Pieter Voorthuijsen 3 (0.1%)
+ Mike Nuss 3 (0.1%)
+ Ladislav Michl 3 (0.1%)
+ Zhang Wei 3 (0.1%)
+ Selvamuthukumar 2 (0.1%)
+ Luigi 'Comio' Mantellini 2 (0.1%)
+ Laurent Pinchart 2 (0.1%)
+ u-boot@bugs.denx.de 2 (0.1%)
+ Wolfgang Ocker 2 (0.1%)
+ Prodyut Hazarika 2 (0.1%)
+ Martha J Marx 2 (0.1%)
+ Sebastian Siewior 2 (0.1%)
+ Sergey Lapin 2 (0.1%)
+ David Saada 2 (0.1%)
+ Vasiliy Leoenenko 2 (0.1%)
+ Lee Nipper 2 (0.1%)
+ Ulf Samuelsson 2 (0.1%)
+ Matthew Fettke 2 (0.1%)
+ Aras Vaichas 2 (0.1%)
+ Mark Jonas 2 (0.1%)
+ Bryan O'Donoghue 2 (0.1%)
+ robert lazarski 2 (0.1%)
+ Joe Hamman 2 (0.1%)
+ Lepcha Suchit 1 (0.0%)
+ Nikita V. Youshchenko 1 (0.0%)
+ Louis Su 1 (0.0%)
+ Rafal Czubak 1 (0.0%)
+ gnusercn 1 (0.0%)
+ Jens Scharsig 1 (0.0%)
+ Claudio Scordino 1 (0.0%)
+ Petri Lehtinen 1 (0.0%)
+ Ryan CHEN 1 (0.0%)
+ Nícolas Carneiro Lebedenco 1 (0.0%)
+ Graeme Russ 1 (0.0%)
+ Jochen Friedrich 1 (0.0%)
+ Sandeep Paulraj 1 (0.0%)
+ Randy Vinson 1 (0.0%)
+ Wolfram Sang 1 (0.0%)
+ Tirumala R Marri 1 (0.0%)
+ Axel Beierlein 1 (0.0%)
+ Fathi BOUDRA 1 (0.0%)
+ Ilya Yanok 1 (0.0%)
+ Sergey Kubushyn 1 (0.0%)
+ Steve Sakoman 1 (0.0%)
+ Hunter, Jon 1 (0.0%)
+ Rafael Campos 1 (0.0%)
+ Julien May 1 (0.0%)
+ Frank Svendsbøe 1 (0.0%)
+ Juergen Kilb 1 (0.0%)
+ Robin Getz 1 (0.0%)
+ Patrice Vilchez 1 (0.0%)
+ Esben Haabendal 1 (0.0%)
+ Philip Balister 1 (0.0%)
+ Peter Ma 1 (0.0%)
+ Ron Madrid 1 (0.0%)
+ Wheatley Travis 1 (0.0%)
+ Dave Mitchell 1 (0.0%)
+ Jeremy McNicoll 1 (0.0%)
+ Troy Kisky 1 (0.0%)
+ Jason Wessel 1 (0.0%)
+ eran liberty 1 (0.0%)
+ Joe D'Abbraccio 1 (0.0%)
+ Bernhard Nemec 1 (0.0%)
+ Kim B. Heino 1 (0.0%)
+ michael 1 (0.0%)
+ Woodruff, Richard 1 (0.0%)
+ Li Yang 1 (0.0%)
+ Marcel Moolenaar 1 (0.0%)
+ Uwe Kleine-König 1 (0.0%)
+ Timo Tuunainen 1 (0.0%)
+ Hiroshi Ito 1 (0.0%)
+ Johannes Stezenbach 1 (0.0%)
+ michael.firth@bt.com 1 (0.0%)
+ Poonam Aggrwal 1 (0.0%)
+ Oliver Weber 1 (0.0%)
+ Rodolfo Giometti 1 (0.0%)
+ raptorbrino@aim.com 1 (0.0%)
+ Upakul Barkakaty 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 73997 (15.9%)
+ Wolfgang Denk 64193 (13.8%)
+ William Juul 40361 (8.7%)
+ Stefan Roese 27101 (5.8%)
+ Kumar Gala 25096 (5.4%)
+ TsiChung Liew 22189 (4.8%)
+ Daniel Hellstrom 15358 (3.3%)
+ Matthias Fuchs 14568 (3.1%)
+ Nobuhiro Iwamatsu 14165 (3.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 12562 (2.7%)
+ Marian Balakowicz 10887 (2.3%)
+ Guennadi Liakhovetski 8914 (1.9%)
+ Stelian Pop 8375 (1.8%)
+ Larry Johnson 8198 (1.8%)
+ Dave Liu 6580 (1.4%)
+ Michael Schwingen 5797 (1.2%)
+ Haavard Skinnemoen 5748 (1.2%)
+ Sascha Hauer 5161 (1.1%)
+ Heiko Schocher 4625 (1.0%)
+ Andre Schwarz 4028 (0.9%)
+ Yoshihiro Shimoda 3240 (0.7%)
+ Shinya Kuribayashi 3159 (0.7%)
+ Yusuke Goda 3133 (0.7%)
+ Rafal Jaworowski 2983 (0.6%)
+ Yuri Tikhonov 2862 (0.6%)
+ Jon Loeliger 2813 (0.6%)
+ Kim Phillips 2792 (0.6%)
+ Peter Pearse 2624 (0.6%)
+ Anton Vorontsov 2572 (0.6%)
+ Luigi 'Comio' Mantellini 2540 (0.5%)
+ Niklaus Giger 2528 (0.5%)
+ Scott Wood 2456 (0.5%)
+ York Sun 2183 (0.5%)
+ Wolfgang Grandegger 2044 (0.4%)
+ Kyungmin Park 1928 (0.4%)
+ Michal Simek 1885 (0.4%)
+ Ricardo Ribalda 1849 (0.4%)
+ Grant Erickson 1840 (0.4%)
+ Matthew Fettke 1823 (0.4%)
+ Sergei Poselenov 1815 (0.4%)
+ Hugo Villeneuve 1777 (0.4%)
+ Becky Bruce 1683 (0.4%)
+ Joe Hamman 1654 (0.4%)
+ Andreas Engel 1649 (0.4%)
+ Anatolij Gustschin 1626 (0.3%)
+ Ben Warren 1437 (0.3%)
+ Timur Tabi 1406 (0.3%)
+ robert lazarski 1393 (0.3%)
+ Adam Graham 1382 (0.3%)
+ Adrian Filipi 1325 (0.3%)
+ Tor Krill 1247 (0.3%)
+ Louis Su 1140 (0.2%)
+ Feng Kan 1122 (0.2%)
+ David Gibson 1105 (0.2%)
+ Hans-Christian Egtvedt 1097 (0.2%)
+ Bartlomiej Sieka 1011 (0.2%)
+ Timo Tuunainen 985 (0.2%)
+ Andy Fleming 803 (0.2%)
+ Gerald Van Baren 737 (0.2%)
+ Harald Welte 706 (0.2%)
+ Gary Jennejohn 690 (0.1%)
+ Pieter Voorthuijsen 688 (0.1%)
+ Grant Likely 673 (0.1%)
+ Mark Jonas 645 (0.1%)
+ John Rigby 574 (0.1%)
+ James Yang 569 (0.1%)
+ Mark Jackson 566 (0.1%)
+ Vlad Lungu 560 (0.1%)
+ Paul Gortmaker 468 (0.1%)
+ Ira W. Snyder 455 (0.1%)
+ Detlev Zundel 433 (0.1%)
+ Julien May 416 (0.1%)
+ Stefano Babic 392 (0.1%)
+ Martha J Marx 389 (0.1%)
+ Kenneth Johansson 382 (0.1%)
+ Remy Bohmer 333 (0.1%)
+ eran liberty 324 (0.1%)
+ Haiying Wang 302 (0.1%)
+ Jerry Van Baren 284 (0.1%)
+ Gururaja Hebbar K R 264 (0.1%)
+ Victor Gallardo 247 (0.1%)
+ Jason Wessel 233 (0.0%)
+ Nick Spence 218 (0.0%)
+ Andrew Dyer 202 (0.0%)
+ Joakim Tjernlund 191 (0.0%)
+ Ladislav Michl 189 (0.0%)
+ Martin Krause 183 (0.0%)
+ Prodyut Hazarika 183 (0.0%)
+ Jason McMullan 167 (0.0%)
+ Peter Tyser 165 (0.0%)
+ Ulf Samuelsson 150 (0.0%)
+ Marcel Ziswiler 147 (0.0%)
+ Steven A. Falco 132 (0.0%)
+ Magnus Lilja 131 (0.0%)
+ Markus Klotzbuecher 131 (0.0%)
+ Michael Barkowski 118 (0.0%)
+ Dirk Behme 113 (0.0%)
+ Stuart Wood 108 (0.0%)
+ Sascha Laue 106 (0.0%)
+ Mike Nuss 106 (0.0%)
+ David Saada 98 (0.0%)
+ Graeme Russ 96 (0.0%)
+ Jason Jin 94 (0.0%)
+ Bryan O'Donoghue 93 (0.0%)
+ Matvejchikov Ilya 85 (0.0%)
+ Grzegorz Bernacki 84 (0.0%)
+ Sandeep Paulraj 82 (0.0%)
+ Christian Eggers 81 (0.0%)
+ Jens Gehrlein 75 (0.0%)
+ Peter Ma 64 (0.0%)
+ u-boot@bugs.denx.de 48 (0.0%)
+ Rafael Campos 43 (0.0%)
+ Zhang Wei 39 (0.0%)
+ Andrew Klossner 38 (0.0%)
+ Vasiliy Leoenenko 36 (0.0%)
+ Ron Madrid 31 (0.0%)
+ Sergey Lapin 30 (0.0%)
+ Aras Vaichas 25 (0.0%)
+ Hunter, Jon 25 (0.0%)
+ David Brownell 23 (0.0%)
+ Axel Beierlein 22 (0.0%)
+ Bernhard Nemec 22 (0.0%)
+ Ed Swarthout 21 (0.0%)
+ Eugene O'Brien 21 (0.0%)
+ Wheatley Travis 21 (0.0%)
+ Fathi BOUDRA 20 (0.0%)
+ michael.firth@bt.com 20 (0.0%)
+ Selvamuthukumar 16 (0.0%)
+ Patrice Vilchez 16 (0.0%)
+ Poonam Aggrwal 16 (0.0%)
+ Rodolfo Giometti 16 (0.0%)
+ Roy Zang 14 (0.0%)
+ Wolfram Sang 14 (0.0%)
+ Sergey Kubushyn 14 (0.0%)
+ Laurent Pinchart 12 (0.0%)
+ Lee Nipper 12 (0.0%)
+ Lepcha Suchit 12 (0.0%)
+ Markus Heidelberg 10 (0.0%)
+ Markus Brunner 10 (0.0%)
+ Jens Scharsig 10 (0.0%)
+ Ilya Yanok 9 (0.0%)
+ Troy Kisky 9 (0.0%)
+ Uwe Kleine-König 9 (0.0%)
+ Sebastian Siewior 8 (0.0%)
+ Li Yang 7 (0.0%)
+ Wolfgang Ocker 6 (0.0%)
+ Nícolas Carneiro Lebedenco 6 (0.0%)
+ michael 6 (0.0%)
+ Woodruff, Richard 6 (0.0%)
+ Hiroshi Ito 6 (0.0%)
+ Tirumala R Marri 5 (0.0%)
+ Esben Haabendal 5 (0.0%)
+ Steve Sakoman 4 (0.0%)
+ Oliver Weber 4 (0.0%)
+ Upakul Barkakaty 4 (0.0%)
+ Nikita V. Youshchenko 3 (0.0%)
+ Petri Lehtinen 3 (0.0%)
+ Jeremy McNicoll 3 (0.0%)
+ Johannes Stezenbach 3 (0.0%)
+ gnusercn 2 (0.0%)
+ Ryan CHEN 2 (0.0%)
+ Jochen Friedrich 2 (0.0%)
+ Randy Vinson 2 (0.0%)
+ Juergen Kilb 2 (0.0%)
+ Robin Getz 2 (0.0%)
+ Philip Balister 2 (0.0%)
+ Marcel Moolenaar 2 (0.0%)
+ Rafal Czubak 1 (0.0%)
+ Claudio Scordino 1 (0.0%)
+ Frank Svendsbøe 1 (0.0%)
+ Dave Mitchell 1 (0.0%)
+ Joe D'Abbraccio 1 (0.0%)
+ Kim B. Heino 1 (0.0%)
+ raptorbrino@aim.com 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andreas Engel 1535 (1.0%)
+ Adrian Filipi 1321 (0.8%)
+ Gerald Van Baren 556 (0.4%)
+ Paul Gortmaker 241 (0.2%)
+ Jason Wessel 233 (0.1%)
+ Jerry Van Baren 185 (0.1%)
+ Becky Bruce 158 (0.1%)
+ Ladislav Michl 137 (0.1%)
+ Ira W. Snyder 119 (0.1%)
+ Andrew Dyer 80 (0.1%)
+ Kenneth Johansson 53 (0.0%)
+ Peter Tyser 51 (0.0%)
+ Dirk Behme 51 (0.0%)
+ Bernhard Nemec 22 (0.0%)
+ Laurent Pinchart 9 (0.0%)
+ michael.firth@bt.com 8 (0.0%)
+ Steven A. Falco 4 (0.0%)
+ Steve Sakoman 2 (0.0%)
+ Robin Getz 2 (0.0%)
+ Troy Kisky 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 580)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 82 (14.1%)
+ Ben Warren 70 (12.1%)
+ Kim Phillips 63 (10.9%)
+ Jean-Christophe PLAGNIOL-VILLARD 40 (6.9%)
+ Scott Wood 26 (4.5%)
+ Kumar Gala 21 (3.6%)
+ Wolfgang Denk 20 (3.4%)
+ Dmitry Rakhchev 16 (2.8%)
+ Ricardo Ribalda Delgado 15 (2.6%)
+ Guennadi Liakhovetski 14 (2.4%)
+ Markus Klotzbuecher 11 (1.9%)
+ Andy Fleming 11 (1.9%)
+ Jon Loeliger 10 (1.7%)
+ Haavard Skinnemoen 9 (1.6%)
+ Nobuhiro Iwamatsu 9 (1.6%)
+ Gerald Van Baren 7 (1.2%)
+ Martin Krause 7 (1.2%)
+ Kurt Mahan 6 (1.0%)
+ Ilya Yanok 6 (1.0%)
+ Shinya Kuribayashi 6 (1.0%)
+ Jason Jin 5 (0.9%)
+ Sergei Poselenov 5 (0.9%)
+ Dave Liu 5 (0.9%)
+ Rafal Czubak 4 (0.7%)
+ Thomas Waehner 4 (0.7%)
+ Ed Swarthout 4 (0.7%)
+ David Woodhouse 3 (0.5%)
+ Srikanth Srinivasan 3 (0.5%)
+ Dejan Minic 3 (0.5%)
+ Mahesh Jade 3 (0.5%)
+ James Yang 3 (0.5%)
+ TsiChung Liew 3 (0.5%)
+ Dirk Behme 2 (0.3%)
+ Steven A. Falco 2 (0.3%)
+ Joe D'Abbraccio 2 (0.3%)
+ Werner Almesberger 2 (0.3%)
+ Stig Olsen 2 (0.3%)
+ Alexey Korolev 2 (0.3%)
+ Michael Hennerich 2 (0.3%)
+ Rafal Zabdyr 2 (0.3%)
+ Rodolfo Giometti 2 (0.3%)
+ Detlev Zundel 2 (0.3%)
+ Jason McMullan 2 (0.3%)
+ John Rigby 2 (0.3%)
+ Bartlomiej Sieka 2 (0.3%)
+ Timur Tabi 2 (0.3%)
+ Wolfgang Grandegger 2 (0.3%)
+ Yuri Tikhonov 2 (0.3%)
+ Luigi 'Comio' Mantellini 2 (0.3%)
+ Rafal Jaworowski 2 (0.3%)
+ Matthias Fuchs 2 (0.3%)
+ Mike Frysinger 2 (0.3%)
+ Jerry Van Baren 1 (0.2%)
+ Becky Bruce 1 (0.2%)
+ Ladislav Michl 1 (0.2%)
+ Steve Sakoman 1 (0.2%)
+ Tirumala R Marri 1 (0.2%)
+ Andrew Morton 1 (0.2%)
+ Peter Korsgaard 1 (0.2%)
+ Morten Ebbell Hestnes 1 (0.2%)
+ Manikandan Pillai 1 (0.2%)
+ Manuel Sahm 1 (0.2%)
+ John Roberts 1 (0.2%)
+ Philip Balister, OpenSDR 1 (0.2%)
+ Francesco Albanese 1 (0.2%)
+ Ebony Zhu 1 (0.2%)
+ Eran Liberty 1 (0.2%)
+ Zachary P. Landau 1 (0.2%)
+ Matt Wadel 1 (0.2%)
+ Olaf Hering 1 (0.2%)
+ Dmitry Ivanov 1 (0.2%)
+ Kevin Lam 1 (0.2%)
+ Scott McNutt 1 (0.2%)
+ Brian Miller 1 (0.2%)
+ Piotr Kruszynski 1 (0.2%)
+ Pravin M. Bathija 1 (0.2%)
+ Juergen Kilb 1 (0.2%)
+ Philip Balister 1 (0.2%)
+ Sebastian Siewior 1 (0.2%)
+ Wolfgang Ocker 1 (0.2%)
+ Markus Brunner 1 (0.2%)
+ Jens Gehrlein 1 (0.2%)
+ Michael Barkowski 1 (0.2%)
+ Gururaja Hebbar K R 1 (0.2%)
+ Joakim Tjernlund 1 (0.2%)
+ Grant Likely 1 (0.2%)
+ Victor Gallardo 1 (0.2%)
+ Martha J Marx 1 (0.2%)
+ David Gibson 1 (0.2%)
+ Vlad Lungu 1 (0.2%)
+ Gary Jennejohn 1 (0.2%)
+ Tor Krill 1 (0.2%)
+ Adam Graham 1 (0.2%)
+ Anatolij Gustschin 1 (0.2%)
+ Kyungmin Park 1 (0.2%)
+ Larry Johnson 1 (0.2%)
+ Yoshihiro Shimoda 1 (0.2%)
+ Heiko Schocher 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kim Phillips 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Guennadi Liakhovetski 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Haavard Skinnemoen 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Gururaja Hebbar K R 1 (50.0%)
+ Coray Tate 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Haavard Skinnemoen 1 (50.0%)
+ Kim Phillips 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 610 (24.4%)
+ Freescale 539 (21.6%)
+ (Unknown) 241 (9.6%)
+ jcrosoft 175 (7.0%)
+ Semihalf Embedded Systems 112 (4.5%)
+ ESD Electronics 73 (2.9%)
+ Atmel 72 (2.9%)
+ Analog Devices 57 (2.3%)
+ Nobuhiro Iwamatsu 48 (1.9%)
+ EmCraft Systems 47 (1.9%)
+ Stelian Pop 47 (1.9%)
+ Renesas Electronics 41 (1.6%)
+ MontaVista 38 (1.5%)
+ Xilinx 24 (1.0%)
+ Wind River 20 (0.8%)
+ Custom IDEAS 19 (0.8%)
+ ACM 18 (0.7%)
+ Lyrtech 18 (0.7%)
+ TQ Systems 17 (0.7%)
+ Netstal-Maschinen 16 (0.6%)
+ Gaisler Research 15 (0.6%)
+ Matrix Vision 15 (0.6%)
+ Samsung 15 (0.6%)
+ Oce Technologies 15 (0.6%)
+ AMCC 14 (0.6%)
+ Pengutronix 13 (0.5%)
+ Nuovation System Designs 12 (0.5%)
+ Sanyo LSI Technology India 11 (0.4%)
+ Secretlab 11 (0.4%)
+ Extreme Engineering Solutions 10 (0.4%)
+ NEC 8 (0.3%)
+ Openmoko 8 (0.3%)
+ ARM 7 (0.3%)
+ Excito Elektronik 6 (0.2%)
+ Harris Corporation 6 (0.2%)
+ Transmode Systems 6 (0.2%)
+ Mercury IMC Ltd. 5 (0.2%)
+ RightHand Technologies 5 (0.2%)
+ Ericsson 4 (0.2%)
+ NetApp 4 (0.2%)
+ OVRO 4 (0.2%)
+ Advantech 3 (0.1%)
+ Xerox 3 (0.1%)
+ EuroTech 3 (0.1%)
+ Lab X Technologies 3 (0.1%)
+ South Pole AB 3 (0.1%)
+ Terascala 3 (0.1%)
+ Texas Instruments 3 (0.1%)
+ Dirk Behme 3 (0.1%)
+ Funky 3 (0.1%)
+ CSE Semaphore, Inc. 2 (0.1%)
+ e-con Infotech 2 (0.1%)
+ ECI Telecom 2 (0.1%)
+ Embedded Specialties 2 (0.1%)
+ Industrie Dial Face 2 (0.1%)
+ Liebherr 2 (0.1%)
+ linutronix 2 (0.1%)
+ MagTech Systems 2 (0.1%)
+ Reccoware Systems 2 (0.1%)
+ Silicon Turnkey Express 2 (0.1%)
+ ASIX 1 (0.0%)
+ Bluegiga Technologies 1 (0.0%)
+ Boundary Devices 1 (0.0%)
+ BT Group 1 (0.0%)
+ BuS Elektronik 1 (0.0%)
+ Debian.org 1 (0.0%)
+ Digi International 1 (0.0%)
+ Evidence S.r.l. 1 (0.0%)
+ Ingenieurbuero Ganssloser 1 (0.0%)
+ Hanscan 1 (0.0%)
+ Inoi Oy 1 (0.0%)
+ Juniper Networks 1 (0.0%)
+ Mediama Technologies 1 (0.0%)
+ Micromico 1 (0.0%)
+ Media Lab 1 (0.0%)
+ Prodrive 1 (0.0%)
+ Sakoman Inc. 1 (0.0%)
+ scram! e.V. 1 (0.0%)
+ ST Microelectronics 1 (0.0%)
+ Sysart Oy 1 (0.0%)
+ TANDBERG 1 (0.0%)
+ Task Sistemas 1 (0.0%)
+ Graeme Russ 1 (0.0%)
+ Sergey Kubushyn 1 (0.0%)
+ Sheldon Instruments 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 109656 (23.5%)
+ Analog Devices 73999 (15.9%)
+ Freescale 70018 (15.0%)
+ (Unknown) 60455 (13.0%)
+ Gaisler Research 15358 (3.3%)
+ Semihalf Embedded Systems 14966 (3.2%)
+ ESD Electronics 14568 (3.1%)
+ jcrosoft 12562 (2.7%)
+ TANDBERG 10446 (2.2%)
+ Renesas Electronics 9529 (2.0%)
+ Nobuhiro Iwamatsu 8273 (1.8%)
+ Stelian Pop 7909 (1.7%)
+ Atmel 7010 (1.5%)
+ Pengutronix 5175 (1.1%)
+ Matrix Vision 4028 (0.9%)
+ AMCC 2940 (0.6%)
+ ARM 2624 (0.6%)
+ MontaVista 2574 (0.6%)
+ Industrie Dial Face 2540 (0.5%)
+ EmCraft Systems 2539 (0.5%)
+ Netstal-Maschinen 2502 (0.5%)
+ ACM 2232 (0.5%)
+ Samsung 1928 (0.4%)
+ Xilinx 1885 (0.4%)
+ Nuovation System Designs 1840 (0.4%)
+ Lyrtech 1777 (0.4%)
+ Embedded Specialties 1654 (0.4%)
+ Ericsson 1649 (0.4%)
+ EuroTech 1325 (0.3%)
+ Wind River 1264 (0.3%)
+ Excito Elektronik 1247 (0.3%)
+ ASIX 1140 (0.2%)
+ Custom IDEAS 1021 (0.2%)
+ Sysart Oy 985 (0.2%)
+ Secretlab 673 (0.1%)
+ Openmoko 610 (0.1%)
+ Mercury IMC Ltd. 566 (0.1%)
+ Funky 467 (0.1%)
+ OVRO 455 (0.1%)
+ Micromico 416 (0.1%)
+ Silicon Turnkey Express 389 (0.1%)
+ South Pole AB 382 (0.1%)
+ Oce Technologies 333 (0.1%)
+ Sanyo LSI Technology India 264 (0.1%)
+ TQ Systems 258 (0.1%)
+ RightHand Technologies 202 (0.0%)
+ NEC 197 (0.0%)
+ Transmode Systems 191 (0.0%)
+ NetApp 167 (0.0%)
+ Extreme Engineering Solutions 165 (0.0%)
+ Harris Corporation 132 (0.0%)
+ Texas Instruments 113 (0.0%)
+ Lab X Technologies 108 (0.0%)
+ Terascala 106 (0.0%)
+ ECI Telecom 98 (0.0%)
+ Graeme Russ 96 (0.0%)
+ Mediama Technologies 64 (0.0%)
+ Dirk Behme 59 (0.0%)
+ Liebherr 52 (0.0%)
+ Hanscan 43 (0.0%)
+ Xerox 38 (0.0%)
+ Sheldon Instruments 31 (0.0%)
+ MagTech Systems 25 (0.0%)
+ Ingenieurbuero Ganssloser 22 (0.0%)
+ Advantech 21 (0.0%)
+ BT Group 20 (0.0%)
+ Debian.org 20 (0.0%)
+ e-con Infotech 16 (0.0%)
+ Sergey Kubushyn 14 (0.0%)
+ CSE Semaphore, Inc. 12 (0.0%)
+ BuS Elektronik 10 (0.0%)
+ Prodrive 10 (0.0%)
+ Boundary Devices 9 (0.0%)
+ Digi International 9 (0.0%)
+ linutronix 8 (0.0%)
+ Reccoware Systems 6 (0.0%)
+ Media Lab 6 (0.0%)
+ Task Sistemas 6 (0.0%)
+ Sakoman Inc. 4 (0.0%)
+ Inoi Oy 3 (0.0%)
+ Juniper Networks 2 (0.0%)
+ scram! e.V. 2 (0.0%)
+ ST Microelectronics 2 (0.0%)
+ Bluegiga Technologies 1 (0.0%)
+ Evidence S.r.l. 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 580)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 177 (30.5%)
+ DENX Software Engineering 134 (23.1%)
+ (Unknown) 90 (15.5%)
+ jcrosoft 40 (6.9%)
+ EmCraft Systems 29 (5.0%)
+ Universidad Autonoma de Madrid 15 (2.6%)
+ TQ Systems 12 (2.1%)
+ Semihalf Embedded Systems 11 (1.9%)
+ Nobuhiro Iwamatsu 9 (1.6%)
+ Atmel 9 (1.6%)
+ Custom IDEAS 7 (1.2%)
+ Analog Devices 4 (0.7%)
+ AMCC 4 (0.7%)
+ TANDBERG 3 (0.5%)
+ Intel 3 (0.5%)
+ ESD Electronics 2 (0.3%)
+ Industrie Dial Face 2 (0.3%)
+ Openmoko 2 (0.3%)
+ NetApp 2 (0.3%)
+ Harris Corporation 2 (0.3%)
+ Renesas Electronics 1 (0.2%)
+ ACM 1 (0.2%)
+ Samsung 1 (0.2%)
+ Wind River 1 (0.2%)
+ Excito Elektronik 1 (0.2%)
+ Secretlab 1 (0.2%)
+ Silicon Turnkey Express 1 (0.2%)
+ Sanyo LSI Technology India 1 (0.2%)
+ Transmode Systems 1 (0.2%)
+ Texas Instruments 1 (0.2%)
+ Lab X Technologies 1 (0.2%)
+ linutronix 1 (0.2%)
+ Reccoware Systems 1 (0.2%)
+ Sakoman Inc. 1 (0.2%)
+ Extricom 1 (0.2%)
+ Feig Electronic 1 (0.2%)
+ General Electric 1 (0.2%)
+ Linux Foundation 1 (0.2%)
+ Novell 1 (0.2%)
+ OpenSDR 1 (0.2%)
+ Psyent 1 (0.2%)
+ Powerwave Technologies 1 (0.2%)
+ Barco 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 191)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 45 (23.6%)
+ Freescale 25 (13.1%)
+ DENX Software Engineering 12 (6.3%)
+ AMCC 6 (3.1%)
+ Semihalf Embedded Systems 5 (2.6%)
+ Atmel 4 (2.1%)
+ Wind River 4 (2.1%)
+ EmCraft Systems 3 (1.6%)
+ Renesas Electronics 3 (1.6%)
+ Texas Instruments 3 (1.6%)
+ TQ Systems 2 (1.0%)
+ Custom IDEAS 2 (1.0%)
+ Analog Devices 2 (1.0%)
+ Pengutronix 2 (1.0%)
+ MontaVista 2 (1.0%)
+ Funky 2 (1.0%)
+ jcrosoft 1 (0.5%)
+ Nobuhiro Iwamatsu 1 (0.5%)
+ TANDBERG 1 (0.5%)
+ ESD Electronics 1 (0.5%)
+ Industrie Dial Face 1 (0.5%)
+ Openmoko 1 (0.5%)
+ NetApp 1 (0.5%)
+ Harris Corporation 1 (0.5%)
+ ACM 1 (0.5%)
+ Samsung 1 (0.5%)
+ Excito Elektronik 1 (0.5%)
+ Secretlab 1 (0.5%)
+ Silicon Turnkey Express 1 (0.5%)
+ Sanyo LSI Technology India 1 (0.5%)
+ Transmode Systems 1 (0.5%)
+ Lab X Technologies 1 (0.5%)
+ linutronix 1 (0.5%)
+ Reccoware Systems 1 (0.5%)
+ Sakoman Inc. 1 (0.5%)
+ Gaisler Research 1 (0.5%)
+ Stelian Pop 1 (0.5%)
+ Matrix Vision 1 (0.5%)
+ ARM 1 (0.5%)
+ Netstal-Maschinen 1 (0.5%)
+ Xilinx 1 (0.5%)
+ Nuovation System Designs 1 (0.5%)
+ Lyrtech 1 (0.5%)
+ Embedded Specialties 1 (0.5%)
+ Ericsson 1 (0.5%)
+ EuroTech 1 (0.5%)
+ ASIX 1 (0.5%)
+ Sysart Oy 1 (0.5%)
+ Mercury IMC Ltd. 1 (0.5%)
+ OVRO 1 (0.5%)
+ Micromico 1 (0.5%)
+ South Pole AB 1 (0.5%)
+ Oce Technologies 1 (0.5%)
+ RightHand Technologies 1 (0.5%)
+ NEC 1 (0.5%)
+ Extreme Engineering Solutions 1 (0.5%)
+ Terascala 1 (0.5%)
+ ECI Telecom 1 (0.5%)
+ Graeme Russ 1 (0.5%)
+ Mediama Technologies 1 (0.5%)
+ Dirk Behme 1 (0.5%)
+ Liebherr 1 (0.5%)
+ Hanscan 1 (0.5%)
+ Xerox 1 (0.5%)
+ Sheldon Instruments 1 (0.5%)
+ MagTech Systems 1 (0.5%)
+ Ingenieurbuero Ganssloser 1 (0.5%)
+ Advantech 1 (0.5%)
+ BT Group 1 (0.5%)
+ Debian.org 1 (0.5%)
+ e-con Infotech 1 (0.5%)
+ Sergey Kubushyn 1 (0.5%)
+ CSE Semaphore, Inc. 1 (0.5%)
+ BuS Elektronik 1 (0.5%)
+ Prodrive 1 (0.5%)
+ Boundary Devices 1 (0.5%)
+ Digi International 1 (0.5%)
+ Media Lab 1 (0.5%)
+ Task Sistemas 1 (0.5%)
+ Inoi Oy 1 (0.5%)
+ Juniper Networks 1 (0.5%)
+ scram! e.V. 1 (0.5%)
+ ST Microelectronics 1 (0.5%)
+ Bluegiga Technologies 1 (0.5%)
+ Evidence S.r.l. 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2009.01.rst b/doc/develop/statistics/u-boot-stats-v2009.01.rst
new file mode 100644
index 0000000..94c9bda
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2009.01.rst
@@ -0,0 +1,425 @@
+:orphan:
+
+Release Statistics for U-Boot v2009.01
+======================================
+
+* Processed 464 csets from 69 developers
+
+* 33 employers found
+
+* A total of 102552 lines added, 74330 removed (delta 28222)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 37 (8.0%)
+ Kumar Gala 33 (7.1%)
+ Jean-Christophe PLAGNIOL-VILLARD 30 (6.5%)
+ Heiko Schocher 27 (5.8%)
+ Wolfgang Denk 26 (5.6%)
+ Becky Bruce 25 (5.4%)
+ Stefan Roese 22 (4.7%)
+ Peter Tyser 21 (4.5%)
+ Matthias Fuchs 16 (3.4%)
+ Nobuhiro Iwamatsu 15 (3.2%)
+ Dave Liu 14 (3.0%)
+ Haiying Wang 13 (2.8%)
+ Kyungmin Park 12 (2.6%)
+ Ben Warren 10 (2.2%)
+ TsiChung Liew 10 (2.2%)
+ Scott Wood 9 (1.9%)
+ Richard Retanubun 8 (1.7%)
+ Anton Vorontsov 8 (1.7%)
+ Remy Böhmer 7 (1.5%)
+ Ilya Yanok 7 (1.5%)
+ Trent Piepho 6 (1.3%)
+ Ed Swarthout 6 (1.3%)
+ Bartlomiej Sieka 6 (1.3%)
+ Michal Simek 5 (1.1%)
+ Niklaus Giger 5 (1.1%)
+ Piotr Ziecik 5 (1.1%)
+ Haavard Skinnemoen 5 (1.1%)
+ Graeme Russ 4 (0.9%)
+ Anatolij Gustschin 4 (0.9%)
+ Gary Jennejohn 4 (0.9%)
+ Stelian Pop 4 (0.9%)
+ Roy Zang 3 (0.6%)
+ Paul Gortmaker 3 (0.6%)
+ Jon Loeliger 3 (0.6%)
+ Ilko Iliev 3 (0.6%)
+ Adam Graham 3 (0.6%)
+ Peter Korsgaard 2 (0.4%)
+ Nicolas Ferre 2 (0.4%)
+ Timur Tabi 2 (0.4%)
+ Yuri Tikhonov 2 (0.4%)
+ Andy Fleming 2 (0.4%)
+ Michael Trimarchi 2 (0.4%)
+ Dave Mitchell 2 (0.4%)
+ Roman Mashak 2 (0.4%)
+ Jason Jin 2 (0.4%)
+ Ricardo Ribalda 2 (0.4%)
+ Dirk Eibach 2 (0.4%)
+ Liu Yu 2 (0.4%)
+ Kieran Bingham 1 (0.2%)
+ Shinya Kuribayashi 1 (0.2%)
+ Martin Michlmayr 1 (0.2%)
+ Sergei Poselenov 1 (0.2%)
+ Sonic Zhang 1 (0.2%)
+ Jerry Van Baren 1 (0.2%)
+ Stefan Althoefer 1 (0.2%)
+ Daniel Hellstrom 1 (0.2%)
+ Jens Scharsig 1 (0.2%)
+ Steven A. Falco 1 (0.2%)
+ Dirk Behme 1 (0.2%)
+ Howard Gregory 1 (0.2%)
+ Selvamuthukumar 1 (0.2%)
+ Clive Stubbings 1 (0.2%)
+ Sergey Lapin 1 (0.2%)
+ Tomohiro Masubuchi 1 (0.2%)
+ Alessandro Rubini 1 (0.2%)
+ David Gibson 1 (0.2%)
+ Karl Beldan 1 (0.2%)
+ Georg Schardt 1 (0.2%)
+ Ben Maan 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jean-Christophe PLAGNIOL-VILLARD 56116 (49.1%)
+ Kyungmin Park 15163 (13.3%)
+ TsiChung Liew 11218 (9.8%)
+ Wolfgang Denk 6977 (6.1%)
+ Peter Tyser 3736 (3.3%)
+ Kumar Gala 1824 (1.6%)
+ Gary Jennejohn 1805 (1.6%)
+ Heiko Schocher 1569 (1.4%)
+ Matthias Fuchs 1405 (1.2%)
+ Mike Frysinger 1229 (1.1%)
+ Remy Böhmer 1013 (0.9%)
+ Michal Simek 935 (0.8%)
+ Becky Bruce 882 (0.8%)
+ Richard Retanubun 870 (0.8%)
+ Ricardo Ribalda 842 (0.7%)
+ Haiying Wang 823 (0.7%)
+ Dirk Eibach 723 (0.6%)
+ Ilya Yanok 643 (0.6%)
+ Bartlomiej Sieka 599 (0.5%)
+ Sergey Lapin 592 (0.5%)
+ Michael Trimarchi 474 (0.4%)
+ Adam Graham 458 (0.4%)
+ Niklaus Giger 425 (0.4%)
+ Stefan Roese 363 (0.3%)
+ Nobuhiro Iwamatsu 282 (0.2%)
+ Scott Wood 269 (0.2%)
+ Selvamuthukumar 260 (0.2%)
+ Piotr Ziecik 258 (0.2%)
+ Georg Schardt 252 (0.2%)
+ Anton Vorontsov 234 (0.2%)
+ Timur Tabi 232 (0.2%)
+ Dave Liu 228 (0.2%)
+ Haavard Skinnemoen 198 (0.2%)
+ Ben Warren 190 (0.2%)
+ Nicolas Ferre 171 (0.1%)
+ Dave Mitchell 130 (0.1%)
+ Trent Piepho 107 (0.1%)
+ Jason Jin 105 (0.1%)
+ Liu Yu 94 (0.1%)
+ Jon Loeliger 88 (0.1%)
+ Stelian Pop 77 (0.1%)
+ Alessandro Rubini 69 (0.1%)
+ Dirk Behme 67 (0.1%)
+ Graeme Russ 65 (0.1%)
+ Tomohiro Masubuchi 45 (0.0%)
+ Andy Fleming 33 (0.0%)
+ Ben Maan 32 (0.0%)
+ Ed Swarthout 31 (0.0%)
+ Roman Mashak 24 (0.0%)
+ Kieran Bingham 19 (0.0%)
+ Paul Gortmaker 17 (0.0%)
+ Anatolij Gustschin 15 (0.0%)
+ Ilko Iliev 15 (0.0%)
+ Yuri Tikhonov 14 (0.0%)
+ Steven A. Falco 12 (0.0%)
+ Shinya Kuribayashi 11 (0.0%)
+ Jens Scharsig 11 (0.0%)
+ Roy Zang 10 (0.0%)
+ Sergei Poselenov 10 (0.0%)
+ Karl Beldan 8 (0.0%)
+ David Gibson 7 (0.0%)
+ Peter Korsgaard 6 (0.0%)
+ Howard Gregory 6 (0.0%)
+ Sonic Zhang 3 (0.0%)
+ Jerry Van Baren 2 (0.0%)
+ Daniel Hellstrom 2 (0.0%)
+ Martin Michlmayr 1 (0.0%)
+ Stefan Althoefer 1 (0.0%)
+ Clive Stubbings 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ TsiChung Liew 3057 (4.1%)
+ Michal Simek 920 (1.2%)
+ Matthias Fuchs 795 (1.1%)
+ Jean-Christophe PLAGNIOL-VILLARD 436 (0.6%)
+ Mike Frysinger 279 (0.4%)
+ Timur Tabi 170 (0.2%)
+ Dave Liu 161 (0.2%)
+ Nobuhiro Iwamatsu 127 (0.2%)
+ Alessandro Rubini 68 (0.1%)
+ Jon Loeliger 32 (0.0%)
+ Roman Mashak 22 (0.0%)
+ Paul Gortmaker 12 (0.0%)
+ Steven A. Falco 9 (0.0%)
+ Andy Fleming 8 (0.0%)
+ Dirk Behme 3 (0.0%)
+ Ilko Iliev 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 170)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 47 (27.6%)
+ Ben Warren 15 (8.8%)
+ Kim Phillips 12 (7.1%)
+ Andy Fleming 11 (6.5%)
+ Nobuhiro Iwamatsu 10 (5.9%)
+ Wolfgang Denk 8 (4.7%)
+ Shinya Kuribayashi 7 (4.1%)
+ Markus Klotzbuecher 6 (3.5%)
+ Remy Böhmer 6 (3.5%)
+ Anatolij Gustschin 5 (2.9%)
+ Scott Wood 5 (2.9%)
+ Jean-Christophe PLAGNIOL-VILLARD 4 (2.4%)
+ Alexey Neyman 4 (2.4%)
+ Rafal Czubak 4 (2.4%)
+ Kumar Gala 4 (2.4%)
+ Ricardo Ribalda Delgado 3 (1.8%)
+ Victor Gallardo 3 (1.8%)
+ Jason Jin 3 (1.8%)
+ Mike Frysinger 2 (1.2%)
+ James Yang 2 (1.2%)
+ Yuri Tikhonov 2 (1.2%)
+ Dave Liu 1 (0.6%)
+ Vladimir Panfilov 1 (0.6%)
+ Gerald Van Baren 1 (0.6%)
+ Valeriy Glushkov 1 (0.6%)
+ Nick Spence 1 (0.6%)
+ Ilya Yanok 1 (0.6%)
+ Haiying Wang 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Scott Wood 1 (33.3%)
+ Alessandro Rubini 1 (33.3%)
+ Martin Michlmayr 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Scott Wood 1 (33.3%)
+ Alessandro Rubini 1 (33.3%)
+ Martin Michlmayr 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 131 (28.2%)
+ DENX Software Engineering 83 (17.9%)
+ Analog Devices 38 (8.2%)
+ (Unknown) 32 (6.9%)
+ jcrosoft 30 (6.5%)
+ Extreme Engineering Solutions 21 (4.5%)
+ ESD Electronics 16 (3.4%)
+ Samsung 12 (2.6%)
+ Semihalf Embedded Systems 11 (2.4%)
+ EmCraft Systems 10 (2.2%)
+ Nobuhiro Iwamatsu 9 (1.9%)
+ MontaVista 8 (1.7%)
+ RuggedCom 8 (1.7%)
+ Atmel 7 (1.5%)
+ Oce Technologies 7 (1.5%)
+ Renesas Electronics 6 (1.3%)
+ Xilinx 5 (1.1%)
+ Graeme Russ 4 (0.9%)
+ Stelian Pop 4 (0.9%)
+ AMCC 3 (0.6%)
+ Wind River 3 (0.6%)
+ Ronetix 3 (0.6%)
+ Guntermann & Drunck 2 (0.4%)
+ Barco 2 (0.4%)
+ BuS Elektronik 1 (0.2%)
+ Custom IDEAS 1 (0.2%)
+ e-con Infotech 1 (0.2%)
+ Gaisler Research 1 (0.2%)
+ Harris Corporation 1 (0.2%)
+ Netstal-Maschinen 1 (0.2%)
+ cTech 1 (0.2%)
+ Xentech Solutions 1 (0.2%)
+ Funky 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ jcrosoft 56116 (49.1%)
+ Freescale 15950 (13.9%)
+ Samsung 15163 (13.3%)
+ DENX Software Engineering 10729 (9.4%)
+ Extreme Engineering Solutions 3736 (3.3%)
+ (Unknown) 2600 (2.3%)
+ ESD Electronics 1405 (1.2%)
+ Analog Devices 1232 (1.1%)
+ Oce Technologies 1013 (0.9%)
+ Xilinx 935 (0.8%)
+ RuggedCom 870 (0.8%)
+ Semihalf Embedded Systems 857 (0.7%)
+ Guntermann & Drunck 723 (0.6%)
+ EmCraft Systems 667 (0.6%)
+ AMCC 458 (0.4%)
+ Atmel 369 (0.3%)
+ Netstal-Maschinen 292 (0.3%)
+ Renesas Electronics 260 (0.2%)
+ e-con Infotech 260 (0.2%)
+ cTech 252 (0.2%)
+ MontaVista 234 (0.2%)
+ Stelian Pop 77 (0.1%)
+ Graeme Russ 65 (0.1%)
+ Funky 45 (0.0%)
+ Nobuhiro Iwamatsu 22 (0.0%)
+ Wind River 17 (0.0%)
+ Ronetix 15 (0.0%)
+ Harris Corporation 12 (0.0%)
+ BuS Elektronik 11 (0.0%)
+ Barco 6 (0.0%)
+ Custom IDEAS 2 (0.0%)
+ Gaisler Research 2 (0.0%)
+ Xentech Solutions 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 170)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 66 (38.8%)
+ Freescale 40 (23.5%)
+ (Unknown) 23 (13.5%)
+ Nobuhiro Iwamatsu 10 (5.9%)
+ EmCraft Systems 8 (4.7%)
+ Oce Technologies 6 (3.5%)
+ jcrosoft 4 (2.4%)
+ Semihalf Embedded Systems 4 (2.4%)
+ AMCC 3 (1.8%)
+ Universidad Autonoma de Madrid 3 (1.8%)
+ Analog Devices 2 (1.2%)
+ Custom IDEAS 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 71)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 16 (22.5%)
+ Freescale 15 (21.1%)
+ DENX Software Engineering 5 (7.0%)
+ EmCraft Systems 3 (4.2%)
+ Semihalf Embedded Systems 2 (2.8%)
+ Analog Devices 2 (2.8%)
+ Atmel 2 (2.8%)
+ Nobuhiro Iwamatsu 1 (1.4%)
+ Oce Technologies 1 (1.4%)
+ jcrosoft 1 (1.4%)
+ AMCC 1 (1.4%)
+ Custom IDEAS 1 (1.4%)
+ Samsung 1 (1.4%)
+ Extreme Engineering Solutions 1 (1.4%)
+ ESD Electronics 1 (1.4%)
+ Xilinx 1 (1.4%)
+ RuggedCom 1 (1.4%)
+ Guntermann & Drunck 1 (1.4%)
+ Netstal-Maschinen 1 (1.4%)
+ Renesas Electronics 1 (1.4%)
+ e-con Infotech 1 (1.4%)
+ cTech 1 (1.4%)
+ MontaVista 1 (1.4%)
+ Stelian Pop 1 (1.4%)
+ Graeme Russ 1 (1.4%)
+ Funky 1 (1.4%)
+ Wind River 1 (1.4%)
+ Ronetix 1 (1.4%)
+ Harris Corporation 1 (1.4%)
+ BuS Elektronik 1 (1.4%)
+ Barco 1 (1.4%)
+ Gaisler Research 1 (1.4%)
+ Xentech Solutions 1 (1.4%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2009.03.rst b/doc/develop/statistics/u-boot-stats-v2009.03.rst
new file mode 100644
index 0000000..8c8a10e
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2009.03.rst
@@ -0,0 +1,526 @@
+:orphan:
+
+Release Statistics for U-Boot v2009.03
+======================================
+
+* Processed 489 csets from 90 developers
+
+* 46 employers found
+
+* A total of 55137 lines added, 8339 removed (delta 46798)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 92 (18.8%)
+ Heiko Schocher 31 (6.3%)
+ Stefan Roese 28 (5.7%)
+ Kumar Gala 23 (4.7%)
+ Wolfgang Denk 21 (4.3%)
+ Dirk Behme 20 (4.1%)
+ Jean-Christophe PLAGNIOL-VILLARD 20 (4.1%)
+ Andy Fleming 14 (2.9%)
+ Richard Retanubun 12 (2.5%)
+ Becky Bruce 12 (2.5%)
+ Peter Tyser 12 (2.5%)
+ Anton Vorontsov 10 (2.0%)
+ Graeme Russ 10 (2.0%)
+ Guennadi Liakhovetski 9 (1.8%)
+ Wolfgang Grandegger 9 (1.8%)
+ Dave Liu 8 (1.6%)
+ Michael Trimarchi 8 (1.6%)
+ Yoshihiro Shimoda 7 (1.4%)
+ Matthias Fuchs 7 (1.4%)
+ Abraham, Thomas 7 (1.4%)
+ Michal Simek 6 (1.2%)
+ Nobuhiro Iwamatsu 5 (1.0%)
+ TsiChung Liew 5 (1.0%)
+ Dirk Eibach 5 (1.0%)
+ Kim Phillips 4 (0.8%)
+ Valeriy Glushkov 4 (0.8%)
+ Alessandro Rubini 4 (0.8%)
+ Ron Madrid 4 (0.8%)
+ Ilya Yanok 4 (0.8%)
+ Rafal Jaworowski 4 (0.8%)
+ Shinya Kuribayashi 3 (0.6%)
+ Tom Rix 3 (0.6%)
+ John Rigby 3 (0.6%)
+ Bryan Wu 3 (0.6%)
+ Remy Bohmer 2 (0.4%)
+ Jon Smirl 2 (0.4%)
+ Anatolij Gustschin 2 (0.4%)
+ Ladislav Michl 2 (0.4%)
+ Scott Wood 2 (0.4%)
+ Jerry Van Baren 2 (0.4%)
+ ksi@koi8.net 2 (0.4%)
+ Ben Warren 2 (0.4%)
+ Jens Gehrlein 2 (0.4%)
+ Nishanth Menon 2 (0.4%)
+ Larry Johnson 2 (0.4%)
+ michael 2 (0.4%)
+ Gary Jennejohn 2 (0.4%)
+ Haiying Wang 2 (0.4%)
+ Kyungmin Park 2 (0.4%)
+ Ira Snyder 2 (0.4%)
+ Vivek Kutal 1 (0.2%)
+ Grzegorz Bernacki 1 (0.2%)
+ arun c 1 (0.2%)
+ Mikhail Zolotaryov 1 (0.2%)
+ Norbert van Bolhuis 1 (0.2%)
+ Yusuke.Goda 1 (0.2%)
+ Paul Gortmaker 1 (0.2%)
+ Ed Swarthout 1 (0.2%)
+ Mark Jackson 1 (0.2%)
+ Pieter Henning 1 (0.2%)
+ Hugo Villeneuve 1 (0.2%)
+ Derek Ou 1 (0.2%)
+ Peter Griffin 1 (0.2%)
+ Minkyu Kang 1 (0.2%)
+ Micha Kalfon 1 (0.2%)
+ Petri Lehtinen 1 (0.2%)
+ Poonam_Aggrwal-b10812 1 (0.2%)
+ Srikanth Srinivasan 1 (0.2%)
+ Atin Malaviya 1 (0.2%)
+ Carolyn Smith 1 (0.2%)
+ Adam Graham 1 (0.2%)
+ Sonic Zhang 1 (0.2%)
+ Simon Munton 1 (0.2%)
+ derek@siconix.com 1 (0.2%)
+ Ralph Kondziella 1 (0.2%)
+ Martha Marx 1 (0.2%)
+ Cliff Cai 1 (0.2%)
+ Gunnar Rangoy 1 (0.2%)
+ Olav Morken 1 (0.2%)
+ Tomasz Figa 1 (0.2%)
+ Andrew Dyer 1 (0.2%)
+ Stefan Althoefer 1 (0.2%)
+ Maxim Artamonov 1 (0.2%)
+ Brad Bozarth 1 (0.2%)
+ Yuri Tikhonov 1 (0.2%)
+ Peter Korsgaard 1 (0.2%)
+ Niklaus Giger 1 (0.2%)
+ Sergei Poselenov 1 (0.2%)
+ Schlaegl Manfred jun 1 (0.2%)
+ Haavard Skinnemoen 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Dirk Behme 11275 (19.9%)
+ Wolfgang Denk 8001 (14.1%)
+ Stefan Roese 5794 (10.2%)
+ Mike Frysinger 4516 (8.0%)
+ Heiko Schocher 3620 (6.4%)
+ Andy Fleming 2180 (3.9%)
+ Sonic Zhang 1595 (2.8%)
+ Abraham, Thomas 1545 (2.7%)
+ Michael Trimarchi 1538 (2.7%)
+ Alessandro Rubini 1304 (2.3%)
+ Ilya Yanok 1304 (2.3%)
+ Guennadi Liakhovetski 1303 (2.3%)
+ Peter Tyser 1280 (2.3%)
+ Ron Madrid 1243 (2.2%)
+ Dirk Eibach 927 (1.6%)
+ Graeme Russ 902 (1.6%)
+ Kumar Gala 876 (1.5%)
+ Anton Vorontsov 791 (1.4%)
+ Cliff Cai 729 (1.3%)
+ Jean-Christophe PLAGNIOL-VILLARD 560 (1.0%)
+ Yoshihiro Shimoda 481 (0.8%)
+ Martha Marx 449 (0.8%)
+ Kyungmin Park 439 (0.8%)
+ Becky Bruce 369 (0.7%)
+ michael 368 (0.7%)
+ Nobuhiro Iwamatsu 358 (0.6%)
+ Matthias Fuchs 342 (0.6%)
+ Wolfgang Grandegger 268 (0.5%)
+ Haiying Wang 196 (0.3%)
+ Ralph Kondziella 189 (0.3%)
+ Richard Retanubun 176 (0.3%)
+ Michal Simek 134 (0.2%)
+ Remy Bohmer 108 (0.2%)
+ Hugo Villeneuve 105 (0.2%)
+ Dave Liu 103 (0.2%)
+ Rafal Jaworowski 96 (0.2%)
+ Nishanth Menon 93 (0.2%)
+ Tomasz Figa 92 (0.2%)
+ Larry Johnson 86 (0.2%)
+ Gary Jennejohn 78 (0.1%)
+ Tom Rix 67 (0.1%)
+ Ben Warren 53 (0.1%)
+ Adam Graham 47 (0.1%)
+ John Rigby 43 (0.1%)
+ Mark Jackson 41 (0.1%)
+ Micha Kalfon 33 (0.1%)
+ Valeriy Glushkov 32 (0.1%)
+ Srikanth Srinivasan 32 (0.1%)
+ Gunnar Rangoy 31 (0.1%)
+ TsiChung Liew 30 (0.1%)
+ Pieter Henning 30 (0.1%)
+ Yuri Tikhonov 30 (0.1%)
+ Poonam_Aggrwal-b10812 25 (0.0%)
+ Jon Smirl 23 (0.0%)
+ Jens Gehrlein 23 (0.0%)
+ Ladislav Michl 22 (0.0%)
+ Petri Lehtinen 22 (0.0%)
+ Andrew Dyer 20 (0.0%)
+ Bryan Wu 16 (0.0%)
+ Scott Wood 16 (0.0%)
+ Jerry Van Baren 16 (0.0%)
+ Peter Korsgaard 14 (0.0%)
+ Niklaus Giger 14 (0.0%)
+ Ira Snyder 13 (0.0%)
+ Kim Phillips 11 (0.0%)
+ Atin Malaviya 11 (0.0%)
+ Sergei Poselenov 10 (0.0%)
+ Anatolij Gustschin 8 (0.0%)
+ Haavard Skinnemoen 7 (0.0%)
+ Vivek Kutal 6 (0.0%)
+ Carolyn Smith 5 (0.0%)
+ Paul Gortmaker 4 (0.0%)
+ Minkyu Kang 4 (0.0%)
+ derek@siconix.com 4 (0.0%)
+ Brad Bozarth 4 (0.0%)
+ Schlaegl Manfred jun 4 (0.0%)
+ arun c 3 (0.0%)
+ Shinya Kuribayashi 2 (0.0%)
+ ksi@koi8.net 2 (0.0%)
+ Grzegorz Bernacki 2 (0.0%)
+ Ed Swarthout 2 (0.0%)
+ Mikhail Zolotaryov 1 (0.0%)
+ Norbert van Bolhuis 1 (0.0%)
+ Yusuke.Goda 1 (0.0%)
+ Derek Ou 1 (0.0%)
+ Peter Griffin 1 (0.0%)
+ Simon Munton 1 (0.0%)
+ Olav Morken 1 (0.0%)
+ Stefan Althoefer 1 (0.0%)
+ Maxim Artamonov 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Matthias Fuchs 73 (0.9%)
+ Tom Rix 64 (0.8%)
+ Ladislav Michl 7 (0.1%)
+ Haavard Skinnemoen 5 (0.1%)
+ Becky Bruce 4 (0.0%)
+ Hugo Villeneuve 4 (0.0%)
+ Ben Warren 4 (0.0%)
+ Carolyn Smith 3 (0.0%)
+ Ira Snyder 1 (0.0%)
+ Paul Gortmaker 1 (0.0%)
+ Schlaegl Manfred jun 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 207)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kim Phillips 32 (15.5%)
+ Remy Bohmer 29 (14.0%)
+ Stefan Roese 24 (11.6%)
+ Ben Warren 18 (8.7%)
+ Scott Wood 15 (7.2%)
+ Nobuhiro Iwamatsu 7 (3.4%)
+ Mike Frysinger 7 (3.4%)
+ Jason Kridner 5 (2.4%)
+ Ravi Babu 5 (2.4%)
+ Swaminathan S 5 (2.4%)
+ Ajay Kumar Gupta 5 (2.4%)
+ Jean-Christophe PLAGNIOL-VILLARD 4 (1.9%)
+ Wolfgang Denk 4 (1.9%)
+ Steve Sakoman 3 (1.4%)
+ Rafal Czubak 3 (1.4%)
+ Michael Trimarchi 3 (1.4%)
+ Derek Ou 2 (1.0%)
+ Gerald Van Baren 2 (1.0%)
+ Grazvydas Ignotas 2 (1.0%)
+ Paul Driveklepp 2 (1.0%)
+ Shinya Kuribayashi 2 (1.0%)
+ Nishanth Menon 2 (1.0%)
+ Jens Gehrlein 2 (1.0%)
+ John Rigby 2 (1.0%)
+ Kumar Gala 2 (1.0%)
+ Matthias Fuchs 1 (0.5%)
+ Becky Bruce 1 (0.5%)
+ Olav Morken 1 (0.5%)
+ Arun C 1 (0.5%)
+ Poonam_Agarwal-b10812 1 (0.5%)
+ Travis Wheatley 1 (0.5%)
+ Robin Getz 1 (0.5%)
+ Manikandan Pillai 1 (0.5%)
+ Stelian Pop 1 (0.5%)
+ Syed Mohammed Khasim 1 (0.5%)
+ James Yang 1 (0.5%)
+ Tony Li 1 (0.5%)
+ Valeriy Glushkov 1 (0.5%)
+ Gunnar Rangoy 1 (0.5%)
+ Martha Marx 1 (0.5%)
+ Peter Tyser 1 (0.5%)
+ Dirk Eibach 1 (0.5%)
+ Guennadi Liakhovetski 1 (0.5%)
+ Sonic Zhang 1 (0.5%)
+ Heiko Schocher 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Joakim Tjernlund 1 (33.3%)
+ Huang Changming 1 (33.3%)
+ Suchit Lepcha 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Scott Wood 1 (33.3%)
+ Dave Liu 1 (33.3%)
+ Anton Vorontsov 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 102 (20.9%)
+ Analog Devices 97 (19.8%)
+ Freescale 76 (15.5%)
+ (Unknown) 31 (6.3%)
+ jcrosoft 20 (4.1%)
+ Dirk Behme 20 (4.1%)
+ Renesas Electronics 13 (2.7%)
+ RuggedCom 12 (2.5%)
+ Extreme Engineering Solutions 12 (2.5%)
+ MontaVista 10 (2.0%)
+ Graeme Russ 10 (2.0%)
+ Texas Instruments 9 (1.8%)
+ ESD Electronics 7 (1.4%)
+ EmCraft Systems 6 (1.2%)
+ Xilinx 6 (1.2%)
+ Guntermann & Drunck 5 (1.0%)
+ Semihalf Embedded Systems 5 (1.0%)
+ Wind River 4 (0.8%)
+ Universita di Pavia 4 (0.8%)
+ Sheldon Instruments 4 (0.8%)
+ Samsung 3 (0.6%)
+ ACM 2 (0.4%)
+ Custom IDEAS 2 (0.4%)
+ OVRO 2 (0.4%)
+ Siconix Inc. 2 (0.4%)
+ TQ Systems 2 (0.4%)
+ Jon Smirl 2 (0.4%)
+ Sergey Kubushyn 2 (0.4%)
+ Oce Technologies 2 (0.4%)
+ AMCC 1 (0.2%)
+ Argos Meßtechnik GmbH 1 (0.2%)
+ Atmel 1 (0.2%)
+ Azingo 1 (0.2%)
+ Inoi Oy 1 (0.2%)
+ Lyrtech 1 (0.2%)
+ Mercury IMC Ltd. 1 (0.2%)
+ MPC Data 1 (0.2%)
+ NEC 1 (0.2%)
+ Netstal-Maschinen 1 (0.2%)
+ RightHand Technologies 1 (0.2%)
+ Silicon Turnkey Express 1 (0.2%)
+ Tektronix 1 (0.2%)
+ VASTech SA 1 (0.2%)
+ Radiient Technologies 1 (0.2%)
+ Barco 1 (0.2%)
+ Micha Kalfon 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 19072 (33.7%)
+ Dirk Behme 11275 (19.9%)
+ Analog Devices 6856 (12.1%)
+ Freescale 3883 (6.9%)
+ (Unknown) 2161 (3.8%)
+ Texas Instruments 1638 (2.9%)
+ EmCraft Systems 1344 (2.4%)
+ Universita di Pavia 1304 (2.3%)
+ Extreme Engineering Solutions 1280 (2.3%)
+ Sheldon Instruments 1243 (2.2%)
+ Guntermann & Drunck 927 (1.6%)
+ Graeme Russ 902 (1.6%)
+ Renesas Electronics 840 (1.5%)
+ MontaVista 791 (1.4%)
+ jcrosoft 560 (1.0%)
+ Silicon Turnkey Express 449 (0.8%)
+ Samsung 443 (0.8%)
+ ESD Electronics 342 (0.6%)
+ Argos Meßtechnik GmbH 189 (0.3%)
+ RuggedCom 176 (0.3%)
+ Xilinx 134 (0.2%)
+ Oce Technologies 108 (0.2%)
+ Lyrtech 105 (0.2%)
+ Semihalf Embedded Systems 98 (0.2%)
+ ACM 86 (0.2%)
+ Wind River 71 (0.1%)
+ AMCC 47 (0.1%)
+ Mercury IMC Ltd. 41 (0.1%)
+ Micha Kalfon 33 (0.1%)
+ VASTech SA 30 (0.1%)
+ TQ Systems 23 (0.0%)
+ Jon Smirl 23 (0.0%)
+ Inoi Oy 22 (0.0%)
+ RightHand Technologies 20 (0.0%)
+ Custom IDEAS 16 (0.0%)
+ Netstal-Maschinen 14 (0.0%)
+ Barco 14 (0.0%)
+ OVRO 13 (0.0%)
+ Atmel 7 (0.0%)
+ Azingo 6 (0.0%)
+ Siconix Inc. 5 (0.0%)
+ Tektronix 5 (0.0%)
+ Radiient Technologies 4 (0.0%)
+ Sergey Kubushyn 2 (0.0%)
+ MPC Data 1 (0.0%)
+ NEC 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 207)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 56 (27.1%)
+ DENX Software Engineering 30 (14.5%)
+ Oce Technologies 29 (14.0%)
+ (Unknown) 28 (13.5%)
+ Texas Instruments 24 (11.6%)
+ Analog Devices 9 (4.3%)
+ Nobuhiro Iwamatsu 7 (3.4%)
+ jcrosoft 4 (1.9%)
+ Semihalf Embedded Systems 3 (1.4%)
+ Sakoman Inc. 3 (1.4%)
+ TQ Systems 2 (1.0%)
+ Custom IDEAS 2 (1.0%)
+ Siconix Inc. 2 (1.0%)
+ Grazvydas Ignotas 2 (1.0%)
+ Extreme Engineering Solutions 1 (0.5%)
+ Guntermann & Drunck 1 (0.5%)
+ Silicon Turnkey Express 1 (0.5%)
+ ESD Electronics 1 (0.5%)
+ Mistral 1 (0.5%)
+ Stelian Pop 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 91)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 17 (18.7%)
+ Freescale 12 (13.2%)
+ DENX Software Engineering 7 (7.7%)
+ Analog Devices 4 (4.4%)
+ EmCraft Systems 3 (3.3%)
+ Renesas Electronics 3 (3.3%)
+ Texas Instruments 2 (2.2%)
+ Semihalf Embedded Systems 2 (2.2%)
+ Siconix Inc. 2 (2.2%)
+ Samsung 2 (2.2%)
+ Wind River 2 (2.2%)
+ Oce Technologies 1 (1.1%)
+ jcrosoft 1 (1.1%)
+ TQ Systems 1 (1.1%)
+ Custom IDEAS 1 (1.1%)
+ Extreme Engineering Solutions 1 (1.1%)
+ Guntermann & Drunck 1 (1.1%)
+ Silicon Turnkey Express 1 (1.1%)
+ ESD Electronics 1 (1.1%)
+ Dirk Behme 1 (1.1%)
+ Universita di Pavia 1 (1.1%)
+ Sheldon Instruments 1 (1.1%)
+ Graeme Russ 1 (1.1%)
+ MontaVista 1 (1.1%)
+ Argos Meßtechnik GmbH 1 (1.1%)
+ RuggedCom 1 (1.1%)
+ Xilinx 1 (1.1%)
+ Lyrtech 1 (1.1%)
+ ACM 1 (1.1%)
+ AMCC 1 (1.1%)
+ Mercury IMC Ltd. 1 (1.1%)
+ Micha Kalfon 1 (1.1%)
+ VASTech SA 1 (1.1%)
+ Jon Smirl 1 (1.1%)
+ Inoi Oy 1 (1.1%)
+ RightHand Technologies 1 (1.1%)
+ Netstal-Maschinen 1 (1.1%)
+ Barco 1 (1.1%)
+ OVRO 1 (1.1%)
+ Atmel 1 (1.1%)
+ Azingo 1 (1.1%)
+ Tektronix 1 (1.1%)
+ Radiient Technologies 1 (1.1%)
+ Sergey Kubushyn 1 (1.1%)
+ MPC Data 1 (1.1%)
+ NEC 1 (1.1%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2009.06.rst b/doc/develop/statistics/u-boot-stats-v2009.06.rst
new file mode 100644
index 0000000..192d85f
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2009.06.rst
@@ -0,0 +1,432 @@
+:orphan:
+
+Release Statistics for U-Boot v2009.06
+======================================
+
+* Processed 433 csets from 74 developers
+
+* 27 employers found
+
+* A total of 52469 lines added, 17023 removed (delta 35446)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 95 (21.9%)
+ Jean-Christophe PLAGNIOL-VILLARD 55 (12.7%)
+ Peter Tyser 32 (7.4%)
+ Wolfgang Denk 29 (6.7%)
+ Stefan Roese 24 (5.5%)
+ Detlev Zundel 15 (3.5%)
+ Kumar Gala 12 (2.8%)
+ Ladislav Michl 12 (2.8%)
+ Haavard Skinnemoen 9 (2.1%)
+ Haiying Wang 8 (1.8%)
+ Scott Wood 7 (1.6%)
+ Matthias Fuchs 6 (1.4%)
+ Graeme Russ 6 (1.4%)
+ Dave Liu 5 (1.2%)
+ Rabin Vincent 5 (1.2%)
+ Heiko Schocher 5 (1.2%)
+ David Brownell 5 (1.2%)
+ Wolfgang Grandegger 5 (1.2%)
+ Shinya Kuribayashi 4 (0.9%)
+ Kim Phillips 4 (0.9%)
+ Graf Yang 4 (0.9%)
+ Dirk Behme 4 (0.9%)
+ Sanjeev Premi 4 (0.9%)
+ Daniel Mack 3 (0.7%)
+ Ricardo Ribalda 3 (0.7%)
+ Minkyu Kang 3 (0.7%)
+ Guennadi Liakhovetski 3 (0.7%)
+ Jon Smirl 3 (0.7%)
+ Mark Jackson 3 (0.7%)
+ Olav Morken 3 (0.7%)
+ Remy Bohmer 2 (0.5%)
+ RONETIX - Ilko Iliev 2 (0.5%)
+ Yoshihiro Shimoda 2 (0.5%)
+ Manikandan Pillai 2 (0.5%)
+ Yauhen Kharuzhy 2 (0.5%)
+ Andreas Huber 2 (0.5%)
+ Emil Medve 2 (0.5%)
+ Sascha Hauer 2 (0.5%)
+ Anatolij Gustschin 2 (0.5%)
+ Kyungmin Park 2 (0.5%)
+ Tom Rix 2 (0.5%)
+ Mingkai Hu 2 (0.5%)
+ David Gibson 2 (0.5%)
+ Ben Warren 1 (0.2%)
+ Fredrik Arnerup 1 (0.2%)
+ Felix Radensky 1 (0.2%)
+ Ilya Yanok 1 (0.2%)
+ Thomas Lange 1 (0.2%)
+ Rohit Hagargundgi 1 (0.2%)
+ Marco Stornelli 1 (0.2%)
+ Sergey Lapin 1 (0.2%)
+ Daniel Gorsulowski 1 (0.2%)
+ Adrian Hunter 1 (0.2%)
+ Gao Guanhua 1 (0.2%)
+ Michael Zaidman 1 (0.2%)
+ Timur Tabi 1 (0.2%)
+ Todor I Mollov 1 (0.2%)
+ Becky Bruce 1 (0.2%)
+ Peter Korsgaard 1 (0.2%)
+ Alan Carvalho de Assis 1 (0.2%)
+ Artem Bityutskiy 1 (0.2%)
+ Ulf Samuelsson 1 (0.2%)
+ Nicolas Ferre 1 (0.2%)
+ unsik Kim 1 (0.2%)
+ apgmoorthy 1 (0.2%)
+ Laurent Gregoire 1 (0.2%)
+ Jens Scharsig 1 (0.2%)
+ Nishanth Menon 1 (0.2%)
+ Sonic Zhang 1 (0.2%)
+ Eric Schumann 1 (0.2%)
+ Michael Lawnick 1 (0.2%)
+ Grzegorz Bernacki 1 (0.2%)
+ Trent Piepho 1 (0.2%)
+ Gunnar Rangoy 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 21338 (36.5%)
+ Mike Frysinger 7887 (13.5%)
+ Wolfgang Denk 5938 (10.2%)
+ Jean-Christophe PLAGNIOL-VILLARD 4888 (8.4%)
+ Detlev Zundel 1771 (3.0%)
+ Haiying Wang 1577 (2.7%)
+ RONETIX - Ilko Iliev 1344 (2.3%)
+ Graeme Russ 1331 (2.3%)
+ Haavard Skinnemoen 1272 (2.2%)
+ unsik Kim 1080 (1.8%)
+ Remy Bohmer 1054 (1.8%)
+ Dave Liu 868 (1.5%)
+ Kumar Gala 830 (1.4%)
+ Grzegorz Bernacki 788 (1.3%)
+ Peter Tyser 751 (1.3%)
+ Ladislav Michl 750 (1.3%)
+ Ulf Samuelsson 747 (1.3%)
+ Trent Piepho 738 (1.3%)
+ Matthias Fuchs 678 (1.2%)
+ Marco Stornelli 433 (0.7%)
+ Mingkai Hu 374 (0.6%)
+ Sanjeev Premi 177 (0.3%)
+ Scott Wood 174 (0.3%)
+ Dirk Behme 148 (0.3%)
+ Wolfgang Grandegger 127 (0.2%)
+ Heiko Schocher 115 (0.2%)
+ Manikandan Pillai 105 (0.2%)
+ David Gibson 95 (0.2%)
+ Gunnar Rangoy 88 (0.2%)
+ Graf Yang 72 (0.1%)
+ Artem Bityutskiy 71 (0.1%)
+ Minkyu Kang 63 (0.1%)
+ Michael Zaidman 59 (0.1%)
+ Olav Morken 53 (0.1%)
+ Tom Rix 53 (0.1%)
+ Kyungmin Park 52 (0.1%)
+ Rabin Vincent 47 (0.1%)
+ Adrian Hunter 47 (0.1%)
+ Nicolas Ferre 47 (0.1%)
+ apgmoorthy 44 (0.1%)
+ Shinya Kuribayashi 35 (0.1%)
+ Anatolij Gustschin 35 (0.1%)
+ Kim Phillips 29 (0.0%)
+ Ricardo Ribalda 26 (0.0%)
+ Mark Jackson 26 (0.0%)
+ Andreas Huber 25 (0.0%)
+ Jon Smirl 24 (0.0%)
+ David Brownell 20 (0.0%)
+ Ben Warren 19 (0.0%)
+ Yoshihiro Shimoda 18 (0.0%)
+ Becky Bruce 18 (0.0%)
+ Daniel Mack 15 (0.0%)
+ Todor I Mollov 15 (0.0%)
+ Guennadi Liakhovetski 14 (0.0%)
+ Sascha Hauer 14 (0.0%)
+ Yauhen Kharuzhy 9 (0.0%)
+ Felix Radensky 6 (0.0%)
+ Jens Scharsig 5 (0.0%)
+ Nishanth Menon 5 (0.0%)
+ Sonic Zhang 5 (0.0%)
+ Ilya Yanok 4 (0.0%)
+ Thomas Lange 4 (0.0%)
+ Michael Lawnick 4 (0.0%)
+ Eric Schumann 3 (0.0%)
+ Emil Medve 2 (0.0%)
+ Sergey Lapin 2 (0.0%)
+ Gao Guanhua 2 (0.0%)
+ Fredrik Arnerup 1 (0.0%)
+ Rohit Hagargundgi 1 (0.0%)
+ Daniel Gorsulowski 1 (0.0%)
+ Timur Tabi 1 (0.0%)
+ Peter Korsgaard 1 (0.0%)
+ Alan Carvalho de Assis 1 (0.0%)
+ Laurent Gregoire 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ladislav Michl 550 (3.2%)
+ Trent Piepho 405 (2.4%)
+ Matthias Fuchs 262 (1.5%)
+ Kumar Gala 232 (1.4%)
+ Dirk Behme 103 (0.6%)
+ Michael Zaidman 55 (0.3%)
+ David Gibson 34 (0.2%)
+ Kyungmin Park 33 (0.2%)
+ Adrian Hunter 24 (0.1%)
+ Kim Phillips 24 (0.1%)
+ Tom Rix 17 (0.1%)
+ Scott Wood 10 (0.1%)
+ Manikandan Pillai 6 (0.0%)
+ David Brownell 4 (0.0%)
+ Yauhen Kharuzhy 4 (0.0%)
+ Jens Scharsig 4 (0.0%)
+ Ilya Yanok 4 (0.0%)
+ Sonic Zhang 2 (0.0%)
+ Shinya Kuribayashi 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 104)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 11 (10.6%)
+ Mike Frysinger 10 (9.6%)
+ Kumar Gala 9 (8.7%)
+ Ben Warren 8 (7.7%)
+ Haavard Skinnemoen 8 (7.7%)
+ Scott Wood 7 (6.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 7 (6.7%)
+ Andreas Pfefferle 4 (3.8%)
+ Paul Driveklepp 4 (3.8%)
+ Kim Phillips 3 (2.9%)
+ Andy Fleming 3 (2.9%)
+ Steve Sakoman 3 (2.9%)
+ Ricardo Ribalda Delgado 3 (2.9%)
+ Gunnar Rangoy 3 (2.9%)
+ Remy Bohmer 3 (2.9%)
+ Wolfgang Denk 3 (2.9%)
+ Hillel Avni 2 (1.9%)
+ Dirk Behme 1 (1.0%)
+ Kyungmin Park 1 (1.0%)
+ Shinya Kuribayashi 1 (1.0%)
+ Yu Liu 1 (1.0%)
+ Vivek Kutal 1 (1.0%)
+ Travis Wheatley 1 (1.0%)
+ Justin Waters 1 (1.0%)
+ Rohit Hagargundgi 1 (1.0%)
+ Sascha Hauer 1 (1.0%)
+ Olav Morken 1 (1.0%)
+ Becky Bruce 1 (1.0%)
+ Nicolas Ferre 1 (1.0%)
+ Dave Liu 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ David Hawkins 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 8)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nobuhiro Iwamatsu 2 (25.0%)
+ Stefan Roese 1 (12.5%)
+ Sergey Lapin 1 (12.5%)
+ Mikhail Zaturenskiy 1 (12.5%)
+ Paul Gortmaker 1 (12.5%)
+ Eric BENARD 1 (12.5%)
+ Heiko Schocher 1 (12.5%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 8)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 4 (50.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 2 (25.0%)
+ Kim Phillips 1 (12.5%)
+ Yoshihiro Shimoda 1 (12.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 2 (66.7%)
+ Joakim Tjernlund 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Guennadi Liakhovetski 2 (66.7%)
+ Dave Liu 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Analog Devices 100 (23.1%)
+ DENX Software Engineering 83 (19.2%)
+ jcrosoft 55 (12.7%)
+ (Unknown) 51 (11.8%)
+ Freescale 44 (10.2%)
+ Extreme Engineering Solutions 32 (7.4%)
+ Atmel 11 (2.5%)
+ ESD Electronics 7 (1.6%)
+ Samsung 7 (1.6%)
+ Texas Instruments 7 (1.6%)
+ Graeme Russ 6 (1.4%)
+ Dirk Behme 4 (0.9%)
+ Mercury IMC Ltd. 3 (0.7%)
+ Jon Smirl 3 (0.7%)
+ Wind River 2 (0.5%)
+ Keymile 2 (0.5%)
+ Nokia 2 (0.5%)
+ Pengutronix 2 (0.5%)
+ Renesas Electronics 2 (0.5%)
+ Ronetix 2 (0.5%)
+ Oce Technologies 2 (0.5%)
+ BuS Elektronik 1 (0.2%)
+ EmCraft Systems 1 (0.2%)
+ NEC 1 (0.2%)
+ Phytec 1 (0.2%)
+ Semihalf Embedded Systems 1 (0.2%)
+ Barco 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 29338 (50.2%)
+ Analog Devices 7964 (13.6%)
+ jcrosoft 4888 (8.4%)
+ Freescale 4613 (7.9%)
+ (Unknown) 2763 (4.7%)
+ Atmel 2066 (3.5%)
+ Ronetix 1344 (2.3%)
+ Graeme Russ 1331 (2.3%)
+ Oce Technologies 1054 (1.8%)
+ Semihalf Embedded Systems 788 (1.3%)
+ Extreme Engineering Solutions 751 (1.3%)
+ ESD Electronics 679 (1.2%)
+ Texas Instruments 287 (0.5%)
+ Samsung 160 (0.3%)
+ Dirk Behme 148 (0.3%)
+ Nokia 118 (0.2%)
+ Wind River 53 (0.1%)
+ Mercury IMC Ltd. 26 (0.0%)
+ Keymile 25 (0.0%)
+ Jon Smirl 24 (0.0%)
+ Renesas Electronics 18 (0.0%)
+ Pengutronix 14 (0.0%)
+ BuS Elektronik 5 (0.0%)
+ EmCraft Systems 4 (0.0%)
+ Phytec 3 (0.0%)
+ Barco 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 104)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 28 (26.9%)
+ DENX Software Engineering 18 (17.3%)
+ (Unknown) 18 (17.3%)
+ Analog Devices 10 (9.6%)
+ Atmel 9 (8.7%)
+ jcrosoft 7 (6.7%)
+ Oce Technologies 3 (2.9%)
+ Sakoman Inc. 3 (2.9%)
+ Universidad Autonoma de Madrid 3 (2.9%)
+ Samsung 2 (1.9%)
+ Dirk Behme 1 (1.0%)
+ Pengutronix 1 (1.0%)
+ Azingo 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 75)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 22 (29.3%)
+ Freescale 11 (14.7%)
+ DENX Software Engineering 7 (9.3%)
+ Samsung 4 (5.3%)
+ Analog Devices 3 (4.0%)
+ Atmel 3 (4.0%)
+ Texas Instruments 3 (4.0%)
+ ESD Electronics 2 (2.7%)
+ Nokia 2 (2.7%)
+ jcrosoft 1 (1.3%)
+ Oce Technologies 1 (1.3%)
+ Dirk Behme 1 (1.3%)
+ Pengutronix 1 (1.3%)
+ Ronetix 1 (1.3%)
+ Graeme Russ 1 (1.3%)
+ Semihalf Embedded Systems 1 (1.3%)
+ Extreme Engineering Solutions 1 (1.3%)
+ Wind River 1 (1.3%)
+ Mercury IMC Ltd. 1 (1.3%)
+ Keymile 1 (1.3%)
+ Jon Smirl 1 (1.3%)
+ Renesas Electronics 1 (1.3%)
+ BuS Elektronik 1 (1.3%)
+ EmCraft Systems 1 (1.3%)
+ Phytec 1 (1.3%)
+ Barco 1 (1.3%)
+ NEC 1 (1.3%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2009.08.rst b/doc/develop/statistics/u-boot-stats-v2009.08.rst
new file mode 100644
index 0000000..57c044a
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2009.08.rst
@@ -0,0 +1,514 @@
+:orphan:
+
+Release Statistics for U-Boot v2009.08
+======================================
+
+* Processed 657 csets from 96 developers
+
+* 35 employers found
+
+* A total of 84239 lines added, 52495 removed (delta 31744)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 75 (11.4%)
+ Peter Tyser 69 (10.5%)
+ Jean-Christophe PLAGNIOL-VILLARD 57 (8.7%)
+ Mike Frysinger 56 (8.5%)
+ Stefan Roese 40 (6.1%)
+ Prafulla Wadaskar 23 (3.5%)
+ Tom Rix 22 (3.3%)
+ David Brownell 17 (2.6%)
+ Kumar Gala 16 (2.4%)
+ Matthias Fuchs 16 (2.4%)
+ Kim Phillips 13 (2.0%)
+ Heiko Schocher 12 (1.8%)
+ Simon Kagstrom 10 (1.5%)
+ Alessandro Rubini 10 (1.5%)
+ Haiying Wang 10 (1.5%)
+ TsiChung Liew 9 (1.4%)
+ Ilya Yanok 8 (1.2%)
+ Dirk Behme 8 (1.2%)
+ Vivek Mahajan 8 (1.2%)
+ Ben Warren 7 (1.1%)
+ Richard Retanubun 7 (1.1%)
+ Anatolij Gustschin 7 (1.1%)
+ Mark Jackson 6 (0.9%)
+ Sandeep Paulraj 6 (0.9%)
+ Grzegorz Bernacki 6 (0.9%)
+ Anton Vorontsov 6 (0.9%)
+ Magnus Lilja 5 (0.8%)
+ Michal Simek 4 (0.6%)
+ Roy Zang 4 (0.6%)
+ Detlev Zundel 4 (0.6%)
+ Dirk Eibach 4 (0.6%)
+ Nobuhiro Iwamatsu 4 (0.6%)
+ Grazvydas Ignotas 4 (0.6%)
+ Andre Schwarz 3 (0.5%)
+ Albin Tonnerre 3 (0.5%)
+ Paul Gortmaker 3 (0.5%)
+ Scott Wood 3 (0.5%)
+ Timur Tabi 3 (0.5%)
+ Giuseppe CONDORELLI 3 (0.5%)
+ Po-Yu Chuang 3 (0.5%)
+ Jens Scharsig 3 (0.5%)
+ Robin Getz 3 (0.5%)
+ Poonam Aggrwal 3 (0.5%)
+ Valeriy Glushkov 3 (0.5%)
+ Sedji Gaouaou 3 (0.5%)
+ Harald Krapfenbauer 2 (0.3%)
+ Andrzej Wolski 2 (0.3%)
+ Mingkai Hu 2 (0.3%)
+ Luigi 'Comio' Mantellini 2 (0.3%)
+ Matthias Ludwig 2 (0.3%)
+ Reinhard Arlt 2 (0.3%)
+ Kyungmin Park 2 (0.3%)
+ Alessio Centazzo 2 (0.3%)
+ Minkyu Kang 2 (0.3%)
+ Shinya Kuribayashi 2 (0.3%)
+ Daniel Mack 2 (0.3%)
+ Felix Radensky 2 (0.3%)
+ Guennadi Liakhovetski 2 (0.3%)
+ Stefano Babic 2 (0.3%)
+ Daniel Gorsulowski 2 (0.3%)
+ Thomas Lange 2 (0.3%)
+ Vivi Li 2 (0.3%)
+ Feng Kan 1 (0.2%)
+ Giulio Benetti 1 (0.2%)
+ Ben Goska 1 (0.2%)
+ John Schmoller 1 (0.2%)
+ Josh Boyer 1 (0.2%)
+ Penda Naveen Kumar 1 (0.2%)
+ Michael Evans 1 (0.2%)
+ David Hunter 1 (0.2%)
+ Eric Benard 1 (0.2%)
+ Weirich, Bernhard 1 (0.2%)
+ rhabarber1848@web.de 1 (0.2%)
+ Niklaus Giger 1 (0.2%)
+ Remy Bohmer 1 (0.2%)
+ Michael Zaidman 1 (0.2%)
+ Andreas Pretzsch 1 (0.2%)
+ Dieter Kiermaier 1 (0.2%)
+ Piotr Ziecik 1 (0.2%)
+ galak 1 (0.2%)
+ Kazuaki Ichinohe 1 (0.2%)
+ Matthias Weisser 1 (0.2%)
+ Jerry Van Baren 1 (0.2%)
+ Jon Smirl 1 (0.2%)
+ Bryan Wu 1 (0.2%)
+ HeungJun Kim 1 (0.2%)
+ Kevin Morfitt 1 (0.2%)
+ Kim, Heung Jun 1 (0.2%)
+ Peter Meerwald 1 (0.2%)
+ Ilko Iliev 1 (0.2%)
+ Norbert van Bolhuis 1 (0.2%)
+ Zach LeRoy 1 (0.2%)
+ Hoan Hoang 1 (0.2%)
+ Srikanth Srinivasan 1 (0.2%)
+ Todor I Mollov 1 (0.2%)
+ Sanjeev Premi 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 16728 (14.5%)
+ Jean-Christophe PLAGNIOL-VILLARD 14381 (12.5%)
+ Matthias Fuchs 9733 (8.4%)
+ Mike Frysinger 9358 (8.1%)
+ Scott Wood 5624 (4.9%)
+ Prafulla Wadaskar 5290 (4.6%)
+ Giuseppe CONDORELLI 4937 (4.3%)
+ Peter Tyser 4350 (3.8%)
+ Stefan Roese 4340 (3.8%)
+ Roy Zang 3576 (3.1%)
+ Ilya Yanok 2851 (2.5%)
+ Tom Rix 2753 (2.4%)
+ Kazuaki Ichinohe 2602 (2.3%)
+ TsiChung Liew 2455 (2.1%)
+ Luigi 'Comio' Mantellini 2019 (1.7%)
+ Reinhard Arlt 1933 (1.7%)
+ Srikanth Srinivasan 1882 (1.6%)
+ Dirk Eibach 1761 (1.5%)
+ Kim Phillips 1344 (1.2%)
+ Sedji Gaouaou 1303 (1.1%)
+ David Brownell 1261 (1.1%)
+ Ilko Iliev 1087 (0.9%)
+ Michal Simek 1060 (0.9%)
+ Magnus Lilja 1040 (0.9%)
+ Jon Smirl 855 (0.7%)
+ Jens Scharsig 839 (0.7%)
+ Heiko Schocher 772 (0.7%)
+ Haiying Wang 619 (0.5%)
+ Nobuhiro Iwamatsu 609 (0.5%)
+ Grzegorz Bernacki 606 (0.5%)
+ Robin Getz 582 (0.5%)
+ Ben Warren 555 (0.5%)
+ Daniel Gorsulowski 518 (0.4%)
+ Po-Yu Chuang 443 (0.4%)
+ Alessandro Rubini 408 (0.4%)
+ Hoan Hoang 408 (0.4%)
+ Andre Schwarz 393 (0.3%)
+ Dirk Behme 386 (0.3%)
+ Anton Vorontsov 378 (0.3%)
+ Kumar Gala 377 (0.3%)
+ Anatolij Gustschin 278 (0.2%)
+ Sandeep Paulraj 208 (0.2%)
+ Dieter Kiermaier 203 (0.2%)
+ Mark Jackson 182 (0.2%)
+ Detlev Zundel 173 (0.1%)
+ Vivek Mahajan 146 (0.1%)
+ Simon Kagstrom 139 (0.1%)
+ Todor I Mollov 139 (0.1%)
+ Albin Tonnerre 137 (0.1%)
+ Kim, Heung Jun 108 (0.1%)
+ Matthias Ludwig 94 (0.1%)
+ Matthias Weisser 92 (0.1%)
+ Paul Gortmaker 90 (0.1%)
+ galak 81 (0.1%)
+ Minkyu Kang 73 (0.1%)
+ Poonam Aggrwal 66 (0.1%)
+ Remy Bohmer 64 (0.1%)
+ Timur Tabi 63 (0.1%)
+ Grazvydas Ignotas 61 (0.1%)
+ Josh Boyer 61 (0.1%)
+ Guennadi Liakhovetski 59 (0.1%)
+ Richard Retanubun 51 (0.0%)
+ Stefano Babic 50 (0.0%)
+ Valeriy Glushkov 46 (0.0%)
+ Zach LeRoy 43 (0.0%)
+ Jerry Van Baren 36 (0.0%)
+ Bryan Wu 35 (0.0%)
+ Weirich, Bernhard 32 (0.0%)
+ Felix Radensky 31 (0.0%)
+ rhabarber1848@web.de 30 (0.0%)
+ Kyungmin Park 19 (0.0%)
+ Thomas Lange 13 (0.0%)
+ Harald Krapfenbauer 7 (0.0%)
+ Daniel Mack 7 (0.0%)
+ Mingkai Hu 5 (0.0%)
+ Shinya Kuribayashi 5 (0.0%)
+ Vivi Li 5 (0.0%)
+ Andrzej Wolski 4 (0.0%)
+ Giulio Benetti 4 (0.0%)
+ Penda Naveen Kumar 4 (0.0%)
+ Alessio Centazzo 3 (0.0%)
+ Michael Zaidman 3 (0.0%)
+ Feng Kan 2 (0.0%)
+ Ben Goska 2 (0.0%)
+ Andreas Pretzsch 2 (0.0%)
+ Piotr Ziecik 2 (0.0%)
+ Peter Meerwald 2 (0.0%)
+ Norbert van Bolhuis 2 (0.0%)
+ Sanjeev Premi 2 (0.0%)
+ John Schmoller 1 (0.0%)
+ Michael Evans 1 (0.0%)
+ David Hunter 1 (0.0%)
+ Eric Benard 1 (0.0%)
+ Niklaus Giger 1 (0.0%)
+ HeungJun Kim 1 (0.0%)
+ Kevin Morfitt 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Matthias Fuchs 6924 (13.2%)
+ Scott Wood 5607 (10.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 3555 (6.8%)
+ Michal Simek 1024 (2.0%)
+ Kim Phillips 927 (1.8%)
+ Sandeep Paulraj 70 (0.1%)
+ galak 62 (0.1%)
+ Timur Tabi 51 (0.1%)
+ Matthias Ludwig 29 (0.1%)
+ Grazvydas Ignotas 16 (0.0%)
+ Dirk Behme 10 (0.0%)
+ Shinya Kuribayashi 4 (0.0%)
+ Thomas Lange 2 (0.0%)
+ Piotr Ziecik 2 (0.0%)
+ Alessio Centazzo 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 244)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 50 (20.5%)
+ Kumar Gala 44 (18.0%)
+ Ben Warren 37 (15.2%)
+ Scott Wood 21 (8.6%)
+ Remy Bohmer 14 (5.7%)
+ Kim Phillips 13 (5.3%)
+ Mike Frysinger 11 (4.5%)
+ Wolfgang Denk 9 (3.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 7 (2.9%)
+ Nobuhiro Iwamatsu 6 (2.5%)
+ Anatolij Gustschin 5 (2.0%)
+ Matthias Ludwig 3 (1.2%)
+ Dirk Behme 2 (0.8%)
+ Phong Vo 2 (0.8%)
+ Peter Pearse 2 (0.8%)
+ HeungJun, Kim 2 (0.8%)
+ Sandeep Paulraj 1 (0.4%)
+ unsik Kim 1 (0.4%)
+ Pieter Voorthuijsen 1 (0.4%)
+ Nate Case 1 (0.4%)
+ Gerald Van Baren 1 (0.4%)
+ Piyush Shah 1 (0.4%)
+ Stelian Pop 1 (0.4%)
+ Ed Swarthout 1 (0.4%)
+ Maxim Artamonov 1 (0.4%)
+ Thomas Smits 1 (0.4%)
+ Travis Wheatley 1 (0.4%)
+ Jean Pihet 1 (0.4%)
+ Steve Sakoman 1 (0.4%)
+ Peter Tyser 1 (0.4%)
+ Ilko Iliev 1 (0.4%)
+ Dirk Eibach 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 7)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ronen Shitrit 3 (42.9%)
+ Angelo Castello 2 (28.6%)
+ Ira W. Snyder 1 (14.3%)
+ Alessandro Rubini 1 (14.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 2 (16.7%)
+ Jean-Christophe PLAGNIOL-VILLARD 2 (16.7%)
+ Ira W. Snyder 1 (8.3%)
+ Mike Frysinger 1 (8.3%)
+ Dirk Behme 1 (8.3%)
+ Andrzej Wolski 1 (8.3%)
+ Gaye Abdoulaye Walsimou 1 (8.3%)
+ Heiko Schocher 1 (8.3%)
+ Magnus Lilja 1 (8.3%)
+ Tom Rix 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 6 (50.0%)
+ Ben Warren 1 (8.3%)
+ Kim Phillips 1 (8.3%)
+ Peter Tyser 1 (8.3%)
+ Weirich, Bernhard 1 (8.3%)
+ Dieter Kiermaier 1 (8.3%)
+ David Brownell 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andrzej Wolski 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 140 (21.3%)
+ (Unknown) 98 (14.9%)
+ Extreme Engineering Solutions 70 (10.7%)
+ Freescale 63 (9.6%)
+ Analog Devices 62 (9.4%)
+ jcrosoft 57 (8.7%)
+ Wind River 25 (3.8%)
+ Marvell 23 (3.5%)
+ ESD Electronics 20 (3.0%)
+ EmCraft Systems 8 (1.2%)
+ Texas Instruments 8 (1.2%)
+ Dirk Behme 8 (1.2%)
+ RuggedCom 7 (1.1%)
+ Semihalf Embedded Systems 7 (1.1%)
+ Mercury IMC Ltd. 6 (0.9%)
+ MontaVista 6 (0.9%)
+ Universita di Pavia 6 (0.9%)
+ Guntermann & Drunck 4 (0.6%)
+ Samsung 4 (0.6%)
+ Xilinx 4 (0.6%)
+ Grazvydas Ignotas 4 (0.6%)
+ Atmel 3 (0.5%)
+ BuS Elektronik 3 (0.5%)
+ Free Electrons 3 (0.5%)
+ Matrix Vision 3 (0.5%)
+ ST Microelectronics 3 (0.5%)
+ Industrie Dial Face 2 (0.3%)
+ Renesas Electronics 2 (0.3%)
+ Nobuhiro Iwamatsu 2 (0.3%)
+ AMCC 1 (0.2%)
+ Custom IDEAS 1 (0.2%)
+ IBM 1 (0.2%)
+ Ronetix 1 (0.2%)
+ Jon Smirl 1 (0.2%)
+ Oce Technologies 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 22352 (19.4%)
+ jcrosoft 14381 (12.5%)
+ Freescale 13702 (11.9%)
+ ESD Electronics 12184 (10.6%)
+ Analog Devices 9980 (8.6%)
+ (Unknown) 9938 (8.6%)
+ Marvell 5290 (4.6%)
+ ST Microelectronics 4937 (4.3%)
+ Extreme Engineering Solutions 4350 (3.8%)
+ EmCraft Systems 2851 (2.5%)
+ Wind River 2843 (2.5%)
+ Industrie Dial Face 2019 (1.7%)
+ Guntermann & Drunck 1761 (1.5%)
+ Atmel 1303 (1.1%)
+ Ronetix 1087 (0.9%)
+ Xilinx 1060 (0.9%)
+ Jon Smirl 855 (0.7%)
+ BuS Elektronik 839 (0.7%)
+ Semihalf Embedded Systems 608 (0.5%)
+ Renesas Electronics 576 (0.5%)
+ Matrix Vision 393 (0.3%)
+ Dirk Behme 386 (0.3%)
+ Universita di Pavia 381 (0.3%)
+ MontaVista 378 (0.3%)
+ Texas Instruments 214 (0.2%)
+ Mercury IMC Ltd. 182 (0.2%)
+ Free Electrons 137 (0.1%)
+ Samsung 92 (0.1%)
+ Oce Technologies 64 (0.1%)
+ Grazvydas Ignotas 61 (0.1%)
+ IBM 61 (0.1%)
+ RuggedCom 51 (0.0%)
+ Custom IDEAS 36 (0.0%)
+ Nobuhiro Iwamatsu 33 (0.0%)
+ AMCC 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 244)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 80 (32.8%)
+ DENX Software Engineering 64 (26.2%)
+ (Unknown) 43 (17.6%)
+ Oce Technologies 14 (5.7%)
+ Analog Devices 11 (4.5%)
+ jcrosoft 7 (2.9%)
+ Nobuhiro Iwamatsu 6 (2.5%)
+ Extreme Engineering Solutions 2 (0.8%)
+ Dirk Behme 2 (0.8%)
+ Samsung 2 (0.8%)
+ AMCC 2 (0.8%)
+ ARM 2 (0.8%)
+ Marvell 1 (0.4%)
+ Guntermann & Drunck 1 (0.4%)
+ Ronetix 1 (0.4%)
+ MontaVista 1 (0.4%)
+ Texas Instruments 1 (0.4%)
+ Custom IDEAS 1 (0.4%)
+ Prodrive 1 (0.4%)
+ Sakoman Inc. 1 (0.4%)
+ Stelian Pop 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 100)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 39 (39.0%)
+ Freescale 10 (10.0%)
+ DENX Software Engineering 7 (7.0%)
+ Analog Devices 4 (4.0%)
+ Extreme Engineering Solutions 3 (3.0%)
+ Texas Instruments 3 (3.0%)
+ ESD Electronics 3 (3.0%)
+ Samsung 2 (2.0%)
+ Wind River 2 (2.0%)
+ Semihalf Embedded Systems 2 (2.0%)
+ Oce Technologies 1 (1.0%)
+ jcrosoft 1 (1.0%)
+ Nobuhiro Iwamatsu 1 (1.0%)
+ Dirk Behme 1 (1.0%)
+ AMCC 1 (1.0%)
+ Marvell 1 (1.0%)
+ Guntermann & Drunck 1 (1.0%)
+ Ronetix 1 (1.0%)
+ MontaVista 1 (1.0%)
+ Custom IDEAS 1 (1.0%)
+ ST Microelectronics 1 (1.0%)
+ EmCraft Systems 1 (1.0%)
+ Industrie Dial Face 1 (1.0%)
+ Atmel 1 (1.0%)
+ Xilinx 1 (1.0%)
+ Jon Smirl 1 (1.0%)
+ BuS Elektronik 1 (1.0%)
+ Renesas Electronics 1 (1.0%)
+ Matrix Vision 1 (1.0%)
+ Universita di Pavia 1 (1.0%)
+ Mercury IMC Ltd. 1 (1.0%)
+ Free Electrons 1 (1.0%)
+ Grazvydas Ignotas 1 (1.0%)
+ IBM 1 (1.0%)
+ RuggedCom 1 (1.0%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2009.11.rst b/doc/develop/statistics/u-boot-stats-v2009.11.rst
new file mode 100644
index 0000000..b9f64b1
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2009.11.rst
@@ -0,0 +1,501 @@
+:orphan:
+
+Release Statistics for U-Boot v2009.11
+======================================
+
+* Processed 531 csets from 90 developers
+
+* 39 employers found
+
+* A total of 51428 lines added, 26561 removed (delta 24867)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 54 (10.2%)
+ Peter Tyser 46 (8.7%)
+ Wolfgang Denk 37 (7.0%)
+ Mike Frysinger 31 (5.8%)
+ Sandeep Paulraj 29 (5.5%)
+ Stefan Roese 22 (4.1%)
+ Paul Gortmaker 20 (3.8%)
+ Poonam Aggrwal 16 (3.0%)
+ Anton Vorontsov 16 (3.0%)
+ Prafulla Wadaskar 14 (2.6%)
+ Graeme Russ 14 (2.6%)
+ Mingkai Hu 12 (2.3%)
+ Simon Kagstrom 11 (2.1%)
+ Matthias Fuchs 8 (1.5%)
+ Eric Millbrandt 8 (1.5%)
+ Alessandro Rubini 8 (1.5%)
+ Michal Simek 7 (1.3%)
+ Ben Warren 7 (1.3%)
+ Remy Bohmer 6 (1.1%)
+ Marcel Ziswiler 6 (1.1%)
+ Tom Rix 6 (1.1%)
+ Niklaus Giger 6 (1.1%)
+ Robin Getz 6 (1.1%)
+ Albin Tonnerre 6 (1.1%)
+ Heiko Schocher 5 (0.9%)
+ Minkyu Kang 5 (0.9%)
+ Kevin Morfitt 5 (0.9%)
+ Joakim Tjernlund 5 (0.9%)
+ Scott Wood 5 (0.9%)
+ Detlev Zundel 4 (0.8%)
+ Nishanth Menon 4 (0.8%)
+ Dipen Dudhat 4 (0.8%)
+ Timur Tabi 4 (0.8%)
+ Ed Swarthout 3 (0.6%)
+ Kim Phillips 3 (0.6%)
+ Robert P. J. Day 3 (0.6%)
+ Mike Rapoport 3 (0.6%)
+ Dave Liu 3 (0.6%)
+ Nobuhiro Iwamatsu 3 (0.6%)
+ Eric Benard 3 (0.6%)
+ Martha Stan 3 (0.6%)
+ Kyungmin Park 3 (0.6%)
+ Olof Johansson 3 (0.6%)
+ Luigi 'Comio' Mantellini 3 (0.6%)
+ Jean-Christophe PLAGNIOL-VILLARD 3 (0.6%)
+ Magnus Lilja 2 (0.4%)
+ Becky Bruce 2 (0.4%)
+ Scott McNutt 2 (0.4%)
+ javier Martin 2 (0.4%)
+ Vivek Mahajan 2 (0.4%)
+ Steve Sakoman 2 (0.4%)
+ Daniel Mack 2 (0.4%)
+ Felix Radensky 2 (0.4%)
+ Werner Pfister 2 (0.4%)
+ Dirk Eibach 2 (0.4%)
+ Roy Zang 2 (0.4%)
+ Ilya Yanok 2 (0.4%)
+ TsiChung Liew 2 (0.4%)
+ Peter Korsgaard 1 (0.2%)
+ Graeme Smecher 1 (0.2%)
+ Daniel Hobi 1 (0.2%)
+ Evan Samanas 1 (0.2%)
+ Michael Brandt 1 (0.2%)
+ Pratap Chandu 1 (0.2%)
+ Sanjeev Premi 1 (0.2%)
+ Ira W. Snyder 1 (0.2%)
+ Grazvydas Ignotas 1 (0.2%)
+ Renato Andreola 1 (0.2%)
+ Jason McMullan 1 (0.2%)
+ Po-Yu Chuang 1 (0.2%)
+ Mark Jackson 1 (0.2%)
+ Ron Lee 1 (0.2%)
+ Hui.Tang 1 (0.2%)
+ Sergey Mironov 1 (0.2%)
+ Leon Woestenberg 1 (0.2%)
+ Dirk Behme 1 (0.2%)
+ Daniel Gorsulowski 1 (0.2%)
+ Mike Nuss 1 (0.2%)
+ James Clough 1 (0.2%)
+ Shinya Kuribayashi 1 (0.2%)
+ Ken MacLeod 1 (0.2%)
+ Rupjyoti Sarmah 1 (0.2%)
+ Paul Gibson 1 (0.2%)
+ Ilko Iliev 1 (0.2%)
+ Frederik Kriewitz 1 (0.2%)
+ Giuseppe CONDORELLI 1 (0.2%)
+ Harald Krapfenbauer 1 (0.2%)
+ Michael Hennerich 1 (0.2%)
+ Alex Dubov 1 (0.2%)
+ Matthias Kaehlcke 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 9842 (16.2%)
+ Kumar Gala 7427 (12.2%)
+ Stefan Roese 4785 (7.9%)
+ Minkyu Kang 3208 (5.3%)
+ Tom Rix 2884 (4.7%)
+ Kevin Morfitt 2483 (4.1%)
+ Peter Tyser 2441 (4.0%)
+ Niklaus Giger 2214 (3.6%)
+ Poonam Aggrwal 2140 (3.5%)
+ Prafulla Wadaskar 2052 (3.4%)
+ Olof Johansson 1913 (3.1%)
+ Sandeep Paulraj 1519 (2.5%)
+ Ilya Yanok 1510 (2.5%)
+ Graeme Russ 1455 (2.4%)
+ Albin Tonnerre 1369 (2.3%)
+ Ben Warren 1360 (2.2%)
+ Simon Kagstrom 957 (1.6%)
+ Frederik Kriewitz 921 (1.5%)
+ Mingkai Hu 877 (1.4%)
+ Mike Frysinger 874 (1.4%)
+ Michal Simek 842 (1.4%)
+ Eric Millbrandt 824 (1.4%)
+ Paul Gortmaker 746 (1.2%)
+ Heiko Schocher 695 (1.1%)
+ Luigi 'Comio' Mantellini 460 (0.8%)
+ Anton Vorontsov 416 (0.7%)
+ Harald Krapfenbauer 411 (0.7%)
+ Dipen Dudhat 368 (0.6%)
+ Remy Bohmer 345 (0.6%)
+ Jason McMullan 339 (0.6%)
+ Matthias Fuchs 314 (0.5%)
+ Alessandro Rubini 292 (0.5%)
+ Felix Radensky 255 (0.4%)
+ Martha Stan 241 (0.4%)
+ Kim Phillips 234 (0.4%)
+ Scott McNutt 198 (0.3%)
+ Matthias Kaehlcke 151 (0.2%)
+ Marcel Ziswiler 134 (0.2%)
+ Robin Getz 130 (0.2%)
+ Joakim Tjernlund 128 (0.2%)
+ Po-Yu Chuang 125 (0.2%)
+ Timur Tabi 78 (0.1%)
+ Becky Bruce 78 (0.1%)
+ Nobuhiro Iwamatsu 69 (0.1%)
+ Daniel Gorsulowski 66 (0.1%)
+ Kyungmin Park 51 (0.1%)
+ Steve Sakoman 44 (0.1%)
+ Vivek Mahajan 38 (0.1%)
+ Detlev Zundel 36 (0.1%)
+ Ed Swarthout 33 (0.1%)
+ Peter Korsgaard 32 (0.1%)
+ Dirk Behme 28 (0.0%)
+ Dirk Eibach 26 (0.0%)
+ Michael Hennerich 24 (0.0%)
+ Scott Wood 22 (0.0%)
+ Nishanth Menon 20 (0.0%)
+ Roy Zang 19 (0.0%)
+ Dave Liu 16 (0.0%)
+ Ira W. Snyder 15 (0.0%)
+ Ken MacLeod 15 (0.0%)
+ Rupjyoti Sarmah 15 (0.0%)
+ Robert P. J. Day 14 (0.0%)
+ TsiChung Liew 14 (0.0%)
+ Michael Brandt 13 (0.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 12 (0.0%)
+ javier Martin 12 (0.0%)
+ Mike Rapoport 9 (0.0%)
+ Ron Lee 9 (0.0%)
+ James Clough 9 (0.0%)
+ Pratap Chandu 8 (0.0%)
+ Sanjeev Premi 7 (0.0%)
+ Ilko Iliev 7 (0.0%)
+ Evan Samanas 6 (0.0%)
+ Werner Pfister 5 (0.0%)
+ Renato Andreola 5 (0.0%)
+ Leon Woestenberg 5 (0.0%)
+ Eric Benard 4 (0.0%)
+ Magnus Lilja 4 (0.0%)
+ Daniel Mack 4 (0.0%)
+ Hui.Tang 4 (0.0%)
+ Giuseppe CONDORELLI 3 (0.0%)
+ Alex Dubov 3 (0.0%)
+ Grazvydas Ignotas 2 (0.0%)
+ Sergey Mironov 2 (0.0%)
+ Graeme Smecher 1 (0.0%)
+ Daniel Hobi 1 (0.0%)
+ Mark Jackson 1 (0.0%)
+ Mike Nuss 1 (0.0%)
+ Shinya Kuribayashi 1 (0.0%)
+ Paul Gibson 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 2543 (9.6%)
+ Peter Tyser 1595 (6.0%)
+ Kevin Morfitt 888 (3.3%)
+ Michal Simek 799 (3.0%)
+ Stefan Roese 334 (1.3%)
+ Scott McNutt 196 (0.7%)
+ Marcel Ziswiler 96 (0.4%)
+ Becky Bruce 78 (0.3%)
+ Nobuhiro Iwamatsu 15 (0.1%)
+ Pratap Chandu 8 (0.0%)
+ Peter Korsgaard 3 (0.0%)
+ Robert P. J. Day 3 (0.0%)
+ Shinya Kuribayashi 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 200)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 76 (38.0%)
+ Stefan Roese 24 (12.0%)
+ Ben Warren 23 (11.5%)
+ Wolfgang Denk 18 (9.0%)
+ Scott Wood 9 (4.5%)
+ Kim Phillips 9 (4.5%)
+ Mike Frysinger 7 (3.5%)
+ Minkyu Kang 5 (2.5%)
+ Tom Rix 3 (1.5%)
+ HeungJun, Kim 2 (1.0%)
+ Sneha Narnakaje 2 (1.0%)
+ Eric Benard 2 (1.0%)
+ Detlev Zundel 2 (1.0%)
+ Peter Tyser 1 (0.5%)
+ Michal Simek 1 (0.5%)
+ Scott McNutt 1 (0.5%)
+ Jean-Christophe PLAGNIOL-VILLARD 1 (0.5%)
+ Takashi Yoshii 1 (0.5%)
+ Daniel Hellstrom 1 (0.5%)
+ David Brownell 1 (0.5%)
+ Kevin Morfitt 1 (0.5%)
+ Stephen Neuendorffer 1 (0.5%)
+ Gao Guanhua 1 (0.5%)
+ Dirk Behme 1 (0.5%)
+ Nishanth Menon 1 (0.5%)
+ Kyungmin Park 1 (0.5%)
+ Mingkai Hu 1 (0.5%)
+ Albin Tonnerre 1 (0.5%)
+ Sandeep Paulraj 1 (0.5%)
+ Prafulla Wadaskar 1 (0.5%)
+ Poonam Aggrwal 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Roland Lezuo 1 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 8)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 3 (37.5%)
+ Heiko Schocher 2 (25.0%)
+ Kumar Gala 1 (12.5%)
+ Peter Tyser 1 (12.5%)
+ Mike Rapoport 1 (12.5%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 8)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marcel Ziswiler 2 (25.0%)
+ Peter Tyser 1 (12.5%)
+ Ben Warren 1 (12.5%)
+ Mike Frysinger 1 (12.5%)
+ Kevin Morfitt 1 (12.5%)
+ Michael Brandt 1 (12.5%)
+ Timur Tabi 1 (12.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Peter Gombos 1 (33.3%)
+ Guenter Koellner 1 (33.3%)
+ Ed Swarthout 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Peter Tyser 1 (33.3%)
+ Mike Frysinger 1 (33.3%)
+ Wolfgang Denk 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 110 (20.7%)
+ (Unknown) 81 (15.3%)
+ DENX Software Engineering 68 (12.8%)
+ Extreme Engineering Solutions 47 (8.9%)
+ Analog Devices 38 (7.2%)
+ Texas Instruments 34 (6.4%)
+ Wind River 26 (4.9%)
+ MontaVista 16 (3.0%)
+ Marvell 14 (2.6%)
+ Graeme Russ 14 (2.6%)
+ ESD Electronics 9 (1.7%)
+ Samsung 8 (1.5%)
+ Xilinx 7 (1.3%)
+ Free Electrons 6 (1.1%)
+ Oce Technologies 6 (1.1%)
+ Transmode Systems 5 (0.9%)
+ Universita di Pavia 4 (0.8%)
+ CompuLab 3 (0.6%)
+ IBM 3 (0.6%)
+ Industrie Dial Face 3 (0.6%)
+ jcrosoft 3 (0.6%)
+ Silicon Turnkey Express 3 (0.6%)
+ Nobuhiro Iwamatsu 3 (0.6%)
+ EmCraft Systems 2 (0.4%)
+ Guntermann & Drunck 2 (0.4%)
+ Psyent 2 (0.4%)
+ Sakoman Inc. 2 (0.4%)
+ AMCC 1 (0.2%)
+ Debian.org 1 (0.2%)
+ Mercury IMC Ltd. 1 (0.2%)
+ NetApp 1 (0.2%)
+ Netstal-Maschinen 1 (0.2%)
+ OVRO 1 (0.2%)
+ Ronetix 1 (0.2%)
+ ST Microelectronics 1 (0.2%)
+ Terascala 1 (0.2%)
+ Dirk Behme 1 (0.2%)
+ Barco 1 (0.2%)
+ Grazvydas Ignotas 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 15358 (25.3%)
+ Freescale 11330 (18.6%)
+ (Unknown) 10165 (16.7%)
+ Wind River 3630 (6.0%)
+ Samsung 3259 (5.4%)
+ Extreme Engineering Solutions 2447 (4.0%)
+ Marvell 2052 (3.4%)
+ IBM 1913 (3.1%)
+ Texas Instruments 1546 (2.5%)
+ EmCraft Systems 1510 (2.5%)
+ Graeme Russ 1455 (2.4%)
+ Free Electrons 1369 (2.3%)
+ Analog Devices 1028 (1.7%)
+ Xilinx 842 (1.4%)
+ Industrie Dial Face 460 (0.8%)
+ MontaVista 416 (0.7%)
+ ESD Electronics 380 (0.6%)
+ Oce Technologies 345 (0.6%)
+ NetApp 339 (0.6%)
+ Silicon Turnkey Express 241 (0.4%)
+ Psyent 198 (0.3%)
+ Transmode Systems 128 (0.2%)
+ Universita di Pavia 86 (0.1%)
+ Nobuhiro Iwamatsu 69 (0.1%)
+ Sakoman Inc. 44 (0.1%)
+ Barco 32 (0.1%)
+ Dirk Behme 28 (0.0%)
+ Guntermann & Drunck 26 (0.0%)
+ AMCC 15 (0.0%)
+ OVRO 15 (0.0%)
+ jcrosoft 12 (0.0%)
+ CompuLab 9 (0.0%)
+ Debian.org 9 (0.0%)
+ Ronetix 7 (0.0%)
+ ST Microelectronics 3 (0.0%)
+ Grazvydas Ignotas 2 (0.0%)
+ Mercury IMC Ltd. 1 (0.0%)
+ Netstal-Maschinen 1 (0.0%)
+ Terascala 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 200)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 97 (48.5%)
+ DENX Software Engineering 44 (22.0%)
+ (Unknown) 29 (14.5%)
+ Samsung 8 (4.0%)
+ Analog Devices 7 (3.5%)
+ Texas Instruments 4 (2.0%)
+ Wind River 3 (1.5%)
+ Extreme Engineering Solutions 1 (0.5%)
+ Marvell 1 (0.5%)
+ Free Electrons 1 (0.5%)
+ Xilinx 1 (0.5%)
+ Psyent 1 (0.5%)
+ Dirk Behme 1 (0.5%)
+ jcrosoft 1 (0.5%)
+ Gaisler Research 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 92)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 32 (34.8%)
+ Freescale 12 (13.0%)
+ DENX Software Engineering 4 (4.3%)
+ Analog Devices 3 (3.3%)
+ Texas Instruments 3 (3.3%)
+ Samsung 2 (2.2%)
+ Wind River 2 (2.2%)
+ Extreme Engineering Solutions 2 (2.2%)
+ ESD Electronics 2 (2.2%)
+ Marvell 1 (1.1%)
+ Free Electrons 1 (1.1%)
+ Xilinx 1 (1.1%)
+ Psyent 1 (1.1%)
+ Dirk Behme 1 (1.1%)
+ jcrosoft 1 (1.1%)
+ IBM 1 (1.1%)
+ EmCraft Systems 1 (1.1%)
+ Graeme Russ 1 (1.1%)
+ Industrie Dial Face 1 (1.1%)
+ MontaVista 1 (1.1%)
+ Oce Technologies 1 (1.1%)
+ NetApp 1 (1.1%)
+ Silicon Turnkey Express 1 (1.1%)
+ Transmode Systems 1 (1.1%)
+ Universita di Pavia 1 (1.1%)
+ Nobuhiro Iwamatsu 1 (1.1%)
+ Sakoman Inc. 1 (1.1%)
+ Barco 1 (1.1%)
+ Guntermann & Drunck 1 (1.1%)
+ AMCC 1 (1.1%)
+ OVRO 1 (1.1%)
+ CompuLab 1 (1.1%)
+ Debian.org 1 (1.1%)
+ Ronetix 1 (1.1%)
+ ST Microelectronics 1 (1.1%)
+ Grazvydas Ignotas 1 (1.1%)
+ Mercury IMC Ltd. 1 (1.1%)
+ Netstal-Maschinen 1 (1.1%)
+ Terascala 1 (1.1%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2010.03.rst b/doc/develop/statistics/u-boot-stats-v2010.03.rst
new file mode 100644
index 0000000..15b5741
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2010.03.rst
@@ -0,0 +1,476 @@
+:orphan:
+
+Release Statistics for U-Boot v2010.03
+======================================
+
+* Processed 468 csets from 92 developers
+
+* 29 employers found
+
+* A total of 55271 lines added, 73622 removed (delta -18351)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 43 (9.2%)
+ Kumar Gala 31 (6.6%)
+ Stefan Roese 24 (5.1%)
+ Wolfgang Denk 20 (4.3%)
+ Heiko Schocher 20 (4.3%)
+ Tom 16 (3.4%)
+ Sandeep Paulraj 15 (3.2%)
+ Stefano Babic 14 (3.0%)
+ Vipin Kumar 13 (2.8%)
+ Ladislav Michl 13 (2.8%)
+ Peter Tyser 12 (2.6%)
+ Nick Thompson 12 (2.6%)
+ Jens Scharsig 11 (2.4%)
+ Matthias Kaehlcke 10 (2.1%)
+ Graeme Russ 10 (2.1%)
+ Matthias Fuchs 8 (1.7%)
+ Detlev Zundel 8 (1.7%)
+ John Rigby 8 (1.7%)
+ Alessandro Rubini 7 (1.5%)
+ Robin Getz 7 (1.5%)
+ Dave Liu 6 (1.3%)
+ Wolfgang Wegner 6 (1.3%)
+ Joakim Tjernlund 6 (1.3%)
+ Nishanth Menon 6 (1.3%)
+ Anatolij Gustschin 5 (1.1%)
+ Magnus Lilja 5 (1.1%)
+ Cliff Cai 5 (1.1%)
+ Bryan Wu 5 (1.1%)
+ Ajay Kumar Gupta 5 (1.1%)
+ Felix Radensky 4 (0.9%)
+ Daniel Gorsulowski 4 (0.9%)
+ Kim Phillips 4 (0.9%)
+ Sekhar Nori 4 (0.9%)
+ Liu Yu 4 (0.9%)
+ Frans Meulenbroeks 3 (0.6%)
+ Prafulla Wadaskar 3 (0.6%)
+ Sanjeev Premi 3 (0.6%)
+ Seunghyeon Rhee 3 (0.6%)
+ Li Yang 3 (0.6%)
+ Minkyu Kang 3 (0.6%)
+ Chris Zhang 3 (0.6%)
+ Reinhard Arlt 3 (0.6%)
+ Mingkai Hu 3 (0.6%)
+ Grazvydas Ignotas 3 (0.6%)
+ Kevin Morfitt 3 (0.6%)
+ Wolfgang Grandegger 3 (0.6%)
+ Renato Andreola 2 (0.4%)
+ Thomas Weber 2 (0.4%)
+ Ben Warren 2 (0.4%)
+ Matthias Weisser 2 (0.4%)
+ Michael Zaidman 2 (0.4%)
+ Richard Retanubun 2 (0.4%)
+ Remy Bohmer 2 (0.4%)
+ Michal Simek 2 (0.4%)
+ Michael Hennerich 2 (0.4%)
+ Dirk Behme 2 (0.4%)
+ Harald Krapfenbauer 2 (0.4%)
+ Valentin Yakovenkov 2 (0.4%)
+ Anton Vorontsov 2 (0.4%)
+ Po-Yu Chuang 2 (0.4%)
+ Amul Kumar Saha 2 (0.4%)
+ Timur Tabi 1 (0.2%)
+ Thomas Chou 1 (0.2%)
+ Rupjyoti Sarmah 1 (0.2%)
+ Asen Dimov 1 (0.2%)
+ Jeff Angielski 1 (0.2%)
+ Anders Darander 1 (0.2%)
+ Siarhei Siamashka 1 (0.2%)
+ Achim Ehrlich 1 (0.2%)
+ Nobuhiro Iwamatsu 1 (0.2%)
+ Eugene O'Brien 1 (0.2%)
+ Hiremath Vaibhav 1 (0.2%)
+ Scott Ellis 1 (0.2%)
+ Siddarth Gore 1 (0.2%)
+ Prathap Srinivas 1 (0.2%)
+ Semih Hazar 1 (0.2%)
+ Vivek Mahajan 1 (0.2%)
+ James Yang 1 (0.2%)
+ Shinya Kuribayashi 1 (0.2%)
+ Daniel Hobi 1 (0.2%)
+ Becky Bruce 1 (0.2%)
+ Sandeep Gopalpet 1 (0.2%)
+ Robert P. J. Day 1 (0.2%)
+ Mahavir Jain 1 (0.2%)
+ John Ogness 1 (0.2%)
+ Peter Korsgaard 1 (0.2%)
+ Ingo van Lil 1 (0.2%)
+ Scott Wood 1 (0.2%)
+ Jean-Christophe PLAGNIOL-VILLARD 1 (0.2%)
+ Mark Asselstine 1 (0.2%)
+ Hui.Tang 1 (0.2%)
+ David Brownell 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Detlev Zundel 46531 (38.5%)
+ Stefan Roese 13363 (11.1%)
+ Wolfgang Denk 10857 (9.0%)
+ Tom 6089 (5.0%)
+ Vipin Kumar 4871 (4.0%)
+ Jens Scharsig 4100 (3.4%)
+ Stefano Babic 4052 (3.4%)
+ Matthias Kaehlcke 3070 (2.5%)
+ John Rigby 2813 (2.3%)
+ Heiko Schocher 2270 (1.9%)
+ Mike Frysinger 1611 (1.3%)
+ Michael Hennerich 1451 (1.2%)
+ Po-Yu Chuang 1381 (1.1%)
+ Kumar Gala 1223 (1.0%)
+ Robin Getz 1211 (1.0%)
+ Bryan Wu 1048 (0.9%)
+ Peter Tyser 1005 (0.8%)
+ Nick Thompson 917 (0.8%)
+ Sekhar Nori 883 (0.7%)
+ Daniel Gorsulowski 851 (0.7%)
+ Wolfgang Grandegger 833 (0.7%)
+ Graeme Russ 760 (0.6%)
+ Amul Kumar Saha 715 (0.6%)
+ Joakim Tjernlund 657 (0.5%)
+ Ladislav Michl 616 (0.5%)
+ Kevin Morfitt 616 (0.5%)
+ Valentin Yakovenkov 573 (0.5%)
+ Cliff Cai 500 (0.4%)
+ Nishanth Menon 480 (0.4%)
+ Harald Krapfenbauer 344 (0.3%)
+ Ajay Kumar Gupta 338 (0.3%)
+ Liu Yu 325 (0.3%)
+ Renato Andreola 286 (0.2%)
+ Nobuhiro Iwamatsu 283 (0.2%)
+ Reinhard Arlt 261 (0.2%)
+ Kim Phillips 232 (0.2%)
+ Dirk Behme 228 (0.2%)
+ Sandeep Paulraj 204 (0.2%)
+ Mingkai Hu 196 (0.2%)
+ Alessandro Rubini 188 (0.2%)
+ Anton Vorontsov 185 (0.2%)
+ Wolfgang Wegner 162 (0.1%)
+ Minkyu Kang 158 (0.1%)
+ Ben Warren 143 (0.1%)
+ Mahavir Jain 123 (0.1%)
+ Scott Wood 123 (0.1%)
+ Peter Korsgaard 115 (0.1%)
+ Magnus Lilja 112 (0.1%)
+ Ingo van Lil 98 (0.1%)
+ David Brownell 96 (0.1%)
+ Semih Hazar 77 (0.1%)
+ Matthias Fuchs 75 (0.1%)
+ Becky Bruce 75 (0.1%)
+ Prafulla Wadaskar 73 (0.1%)
+ Chris Zhang 67 (0.1%)
+ Rupjyoti Sarmah 66 (0.1%)
+ Prathap Srinivas 58 (0.0%)
+ Timur Tabi 53 (0.0%)
+ Sandeep Gopalpet 52 (0.0%)
+ Dave Liu 45 (0.0%)
+ Li Yang 45 (0.0%)
+ Richard Retanubun 45 (0.0%)
+ Anatolij Gustschin 44 (0.0%)
+ Remy Bohmer 41 (0.0%)
+ Anders Darander 34 (0.0%)
+ Achim Ehrlich 34 (0.0%)
+ Sanjeev Premi 27 (0.0%)
+ Hui.Tang 27 (0.0%)
+ Shinya Kuribayashi 26 (0.0%)
+ Robert P. J. Day 25 (0.0%)
+ Grazvydas Ignotas 21 (0.0%)
+ Seunghyeon Rhee 19 (0.0%)
+ Eugene O'Brien 18 (0.0%)
+ Michal Simek 17 (0.0%)
+ Scott Ellis 16 (0.0%)
+ Matthias Weisser 13 (0.0%)
+ Frans Meulenbroeks 9 (0.0%)
+ Felix Radensky 8 (0.0%)
+ Michael Zaidman 7 (0.0%)
+ Siddarth Gore 7 (0.0%)
+ Thomas Chou 6 (0.0%)
+ Siarhei Siamashka 6 (0.0%)
+ Mark Asselstine 5 (0.0%)
+ Daniel Hobi 4 (0.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 4 (0.0%)
+ Hiremath Vaibhav 2 (0.0%)
+ James Yang 2 (0.0%)
+ Thomas Weber 1 (0.0%)
+ Asen Dimov 1 (0.0%)
+ Jeff Angielski 1 (0.0%)
+ Vivek Mahajan 1 (0.0%)
+ John Ogness 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Detlev Zundel 46285 (62.9%)
+ Stefan Roese 12093 (16.4%)
+ Ladislav Michl 302 (0.4%)
+ Cliff Cai 260 (0.4%)
+ Joakim Tjernlund 227 (0.3%)
+ Mingkai Hu 130 (0.2%)
+ Semih Hazar 44 (0.1%)
+ Li Yang 31 (0.0%)
+ Scott Wood 25 (0.0%)
+ Robert P. J. Day 15 (0.0%)
+ Kumar Gala 14 (0.0%)
+ Nishanth Menon 4 (0.0%)
+ Seunghyeon Rhee 4 (0.0%)
+ Jean-Christophe PLAGNIOL-VILLARD 3 (0.0%)
+ Michael Zaidman 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 176)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ben Warren 26 (14.8%)
+ Mike Frysinger 25 (14.2%)
+ Stefan Roese 20 (11.4%)
+ Kumar Gala 20 (11.4%)
+ Sandeep Paulraj 20 (11.4%)
+ Kim Phillips 7 (4.0%)
+ Wolfgang Denk 6 (3.4%)
+ Cliff Cai 5 (2.8%)
+ Fred Fan 5 (2.8%)
+ Remy Bohmer 5 (2.8%)
+ Swaminathan S 4 (2.3%)
+ Minkyu Kang 3 (1.7%)
+ Nick Thompson 3 (1.7%)
+ Scott McNutt 2 (1.1%)
+ Andreas Huber 2 (1.1%)
+ Rohit Hagargundgi 2 (1.1%)
+ Detlev Zundel 1 (0.6%)
+ Li Yang 1 (0.6%)
+ Scott Wood 1 (0.6%)
+ Andrew Morton 1 (0.6%)
+ FUJITA Kazutoshi 1 (0.6%)
+ Ron Lee 1 (0.6%)
+ Holger Brunck 1 (0.6%)
+ Sudhakar Rajashekhara 1 (0.6%)
+ Daniel Hellstrom 1 (0.6%)
+ Jin Qing 1 (0.6%)
+ David Woodhouse 1 (0.6%)
+ Hiremath Vaibhav 1 (0.6%)
+ Thomas Chou 1 (0.6%)
+ Sandeep Gopalpet 1 (0.6%)
+ Anatolij Gustschin 1 (0.6%)
+ Dave Liu 1 (0.6%)
+ Becky Bruce 1 (0.6%)
+ Alessandro Rubini 1 (0.6%)
+ Peter Tyser 1 (0.6%)
+ Wolfgang Grandegger 1 (0.6%)
+ Sekhar Nori 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 1 (33.3%)
+ Detlev Zundel 1 (33.3%)
+ Tom 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Seunghyeon Rhee 1 (33.3%)
+ Richard Retanubun 1 (33.3%)
+ Heiko Schocher 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alessandro Rubini 1 (33.3%)
+ Quentin Armitage 1 (33.3%)
+ Himanshu Chauhan 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 1 (33.3%)
+ Anatolij Gustschin 1 (33.3%)
+ Shinya Kuribayashi 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 104 (22.2%)
+ DENX Software Engineering 92 (19.7%)
+ Analog Devices 62 (13.2%)
+ Freescale 57 (12.2%)
+ Texas Instruments 35 (7.5%)
+ Wind River 16 (3.4%)
+ ESD Electronics 15 (3.2%)
+ ST Microelectronics 13 (2.8%)
+ Extreme Engineering Solutions 12 (2.6%)
+ Graeme Russ 10 (2.1%)
+ General Electric 7 (1.5%)
+ Transmode Systems 6 (1.3%)
+ GE Fanuc 5 (1.1%)
+ Marvell 5 (1.1%)
+ Samsung 5 (1.1%)
+ Universita di Pavia 4 (0.9%)
+ Grazvydas Ignotas 3 (0.6%)
+ MontaVista 2 (0.4%)
+ RuggedCom 2 (0.4%)
+ Xilinx 2 (0.4%)
+ Dirk Behme 2 (0.4%)
+ Oce Technologies 2 (0.4%)
+ linutronix 1 (0.2%)
+ NEC 1 (0.2%)
+ Ronetix 1 (0.2%)
+ taskit 1 (0.2%)
+ Nobuhiro Iwamatsu 1 (0.2%)
+ Barco 1 (0.2%)
+ Funky 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 77046 (63.8%)
+ (Unknown) 15732 (13.0%)
+ Wind River 6089 (5.0%)
+ Analog Devices 5821 (4.8%)
+ ST Microelectronics 4871 (4.0%)
+ Freescale 2372 (2.0%)
+ Texas Instruments 1992 (1.7%)
+ ESD Electronics 1187 (1.0%)
+ Extreme Engineering Solutions 1005 (0.8%)
+ Samsung 873 (0.7%)
+ Graeme Russ 760 (0.6%)
+ Transmode Systems 657 (0.5%)
+ General Electric 528 (0.4%)
+ GE Fanuc 389 (0.3%)
+ Nobuhiro Iwamatsu 283 (0.2%)
+ Dirk Behme 228 (0.2%)
+ Marvell 203 (0.2%)
+ MontaVista 185 (0.2%)
+ Universita di Pavia 179 (0.1%)
+ Barco 115 (0.1%)
+ RuggedCom 45 (0.0%)
+ Oce Technologies 41 (0.0%)
+ taskit 34 (0.0%)
+ NEC 26 (0.0%)
+ Grazvydas Ignotas 21 (0.0%)
+ Xilinx 17 (0.0%)
+ Funky 4 (0.0%)
+ linutronix 1 (0.0%)
+ Ronetix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 176)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 34 (19.3%)
+ Freescale 33 (18.8%)
+ Analog Devices 30 (17.0%)
+ DENX Software Engineering 29 (16.5%)
+ Texas Instruments 27 (15.3%)
+ Samsung 5 (2.8%)
+ Oce Technologies 5 (2.8%)
+ GE Fanuc 3 (1.7%)
+ Keymile 3 (1.7%)
+ Psyent 2 (1.1%)
+ Extreme Engineering Solutions 1 (0.6%)
+ Debian.org 1 (0.6%)
+ Gaisler Research 1 (0.6%)
+ Intel 1 (0.6%)
+ Linux Foundation 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 95)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 35 (36.8%)
+ Freescale 12 (12.6%)
+ DENX Software Engineering 7 (7.4%)
+ Texas Instruments 7 (7.4%)
+ Analog Devices 5 (5.3%)
+ ESD Electronics 3 (3.2%)
+ Marvell 3 (3.2%)
+ Samsung 2 (2.1%)
+ Oce Technologies 1 (1.1%)
+ GE Fanuc 1 (1.1%)
+ Extreme Engineering Solutions 1 (1.1%)
+ Wind River 1 (1.1%)
+ ST Microelectronics 1 (1.1%)
+ Graeme Russ 1 (1.1%)
+ Transmode Systems 1 (1.1%)
+ General Electric 1 (1.1%)
+ Nobuhiro Iwamatsu 1 (1.1%)
+ Dirk Behme 1 (1.1%)
+ MontaVista 1 (1.1%)
+ Universita di Pavia 1 (1.1%)
+ Barco 1 (1.1%)
+ RuggedCom 1 (1.1%)
+ taskit 1 (1.1%)
+ NEC 1 (1.1%)
+ Grazvydas Ignotas 1 (1.1%)
+ Xilinx 1 (1.1%)
+ Funky 1 (1.1%)
+ linutronix 1 (1.1%)
+ Ronetix 1 (1.1%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2010.06.rst b/doc/develop/statistics/u-boot-stats-v2010.06.rst
new file mode 100644
index 0000000..7234874
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2010.06.rst
@@ -0,0 +1,497 @@
+:orphan:
+
+Release Statistics for U-Boot v2010.06
+======================================
+
+* Processed 402 csets from 100 developers
+
+* 31 employers found
+
+* A total of 42673 lines added, 22618 removed (delta 20055)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thomas Chou 28 (7.0%)
+ Graeme Russ 26 (6.5%)
+ Wolfgang Denk 23 (5.7%)
+ Peter Tyser 22 (5.5%)
+ Stefano Babic 19 (4.7%)
+ Kumar Gala 16 (4.0%)
+ Frans Meulenbroeks 16 (4.0%)
+ Anatolij Gustschin 14 (3.5%)
+ Mike Frysinger 14 (3.5%)
+ TsiChung Liew 13 (3.2%)
+ Stefan Roese 11 (2.7%)
+ Vaibhav Hiremath 10 (2.5%)
+ Minkyu Kang 9 (2.2%)
+ Michal Simek 9 (2.2%)
+ Scott McNutt 8 (2.0%)
+ Dave Liu 8 (2.0%)
+ Kim Phillips 7 (1.7%)
+ Cyril Chemparathy 7 (1.7%)
+ Asen Dimov 7 (1.7%)
+ Detlev Zundel 7 (1.7%)
+ Sergei Shtylyov 6 (1.5%)
+ Timur Tabi 6 (1.5%)
+ Wolfgang Wegner 6 (1.5%)
+ Heiko Schocher 4 (1.0%)
+ Ron Madrid 4 (1.0%)
+ Albert Aribaud 4 (1.0%)
+ Naveen Krishna CH 4 (1.0%)
+ Poonam Aggrwal 3 (0.7%)
+ Sudhakar Rajashekhara 3 (0.7%)
+ Prafulla Wadaskar 3 (0.7%)
+ Delio Brignoli 2 (0.5%)
+ Tom 2 (0.5%)
+ Matthias Kaehlcke 2 (0.5%)
+ Serge Ziryukin 2 (0.5%)
+ Matthias Fuchs 2 (0.5%)
+ Jerry Huang 2 (0.5%)
+ Andre Schwarz 2 (0.5%)
+ Larry Johnson 2 (0.5%)
+ Michael Zaidman 2 (0.5%)
+ Fabio Estevam 2 (0.5%)
+ John Rigby 2 (0.5%)
+ Richard Retanubun 2 (0.5%)
+ Ed Swarthout 2 (0.5%)
+ Kim B. Heino 2 (0.5%)
+ John Schmoller 2 (0.5%)
+ Becky Bruce 1 (0.2%)
+ Remy Bohmer 1 (0.2%)
+ Dipen Dudhat 1 (0.2%)
+ Felix Radensky 1 (0.2%)
+ Sandeep Gopalpet 1 (0.2%)
+ Peter Horton 1 (0.2%)
+ Guennadi Liakhovetski 1 (0.2%)
+ Ilya Yanok 1 (0.2%)
+ Terry Lv 1 (0.2%)
+ Vitaly Kuzmichev 1 (0.2%)
+ Ben Warren 1 (0.2%)
+ Fillod Stephane 1 (0.2%)
+ Marek Vasut 1 (0.2%)
+ Grazvydas Ignotas 1 (0.2%)
+ George G. Davis 1 (0.2%)
+ Andrew Caldwell 1 (0.2%)
+ Andreas Bießmann 1 (0.2%)
+ Michael Weiss 1 (0.2%)
+ Mahavir Jain 1 (0.2%)
+ Horst Kronstorfer 1 (0.2%)
+ Nick Thompson 1 (0.2%)
+ York Sun 1 (0.2%)
+ Ender.Dai 1 (0.2%)
+ Trübenbach, Ralf 1 (0.2%)
+ Reinhard Arlt 1 (0.2%)
+ Norbert van Bolhuis 1 (0.2%)
+ Magnus Lilja 1 (0.2%)
+ Valentin Yakovenkov 1 (0.2%)
+ Eric Jarrige 1 (0.2%)
+ Andy Fleming 1 (0.2%)
+ Robin Getz 1 (0.2%)
+ Siddarth Gore 1 (0.2%)
+ Alexander Holler 1 (0.2%)
+ trix 1 (0.2%)
+ Lan Chunhe 1 (0.2%)
+ Roy Zang 1 (0.2%)
+ Srikanth Srinivasan 1 (0.2%)
+ Rini van Zetten 1 (0.2%)
+ Arun Bhanu 1 (0.2%)
+ Jens Scharsig 1 (0.2%)
+ karl.beldan@gmail.com 1 (0.2%)
+ Albin Tonnerre 1 (0.2%)
+ Brent Kandetzki 1 (0.2%)
+ Harald Krapfenbauer 1 (0.2%)
+ Alessandro Rubini 1 (0.2%)
+ Achim Ehrlich 1 (0.2%)
+ Daniel Gorsulowski 1 (0.2%)
+ Joonyoung Shim 1 (0.2%)
+ Vipin KUMAR 1 (0.2%)
+ Philippe De Muyter 1 (0.2%)
+ Michael Durrant 1 (0.2%)
+ Florian Fainelli 1 (0.2%)
+ Nikolay Petukhov 1 (0.2%)
+ Renato Andreola 1 (0.2%)
+ Matthias Weisser 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thomas Chou 16355 (28.2%)
+ Wolfgang Denk 5566 (9.6%)
+ Cyril Chemparathy 4714 (8.1%)
+ Graeme Russ 3048 (5.3%)
+ Vaibhav Hiremath 2844 (4.9%)
+ Stefan Roese 2607 (4.5%)
+ Anatolij Gustschin 2373 (4.1%)
+ Minkyu Kang 1632 (2.8%)
+ Albert Aribaud 1534 (2.6%)
+ Wolfgang Wegner 1375 (2.4%)
+ Peter Tyser 1363 (2.4%)
+ Detlev Zundel 1323 (2.3%)
+ Stefano Babic 1270 (2.2%)
+ Tom 1165 (2.0%)
+ Andre Schwarz 1095 (1.9%)
+ TsiChung Liew 1038 (1.8%)
+ trix 974 (1.7%)
+ Scott McNutt 863 (1.5%)
+ Asen Dimov 859 (1.5%)
+ Siddarth Gore 652 (1.1%)
+ Frans Meulenbroeks 515 (0.9%)
+ Timur Tabi 421 (0.7%)
+ Mike Frysinger 399 (0.7%)
+ Kumar Gala 389 (0.7%)
+ Sudhakar Rajashekhara 363 (0.6%)
+ Heiko Schocher 355 (0.6%)
+ Nikolay Petukhov 301 (0.5%)
+ Brent Kandetzki 294 (0.5%)
+ Renato Andreola 282 (0.5%)
+ Michal Simek 225 (0.4%)
+ Michael Zaidman 216 (0.4%)
+ Naveen Krishna CH 164 (0.3%)
+ Reinhard Arlt 159 (0.3%)
+ Dave Liu 87 (0.2%)
+ Kim Phillips 87 (0.2%)
+ Dipen Dudhat 87 (0.2%)
+ Delio Brignoli 86 (0.1%)
+ Richard Retanubun 76 (0.1%)
+ Fabio Estevam 69 (0.1%)
+ Ron Madrid 56 (0.1%)
+ Jerry Huang 46 (0.1%)
+ Ed Swarthout 37 (0.1%)
+ Matthias Kaehlcke 34 (0.1%)
+ Arun Bhanu 34 (0.1%)
+ Matthias Fuchs 32 (0.1%)
+ Ben Warren 31 (0.1%)
+ Srikanth Srinivasan 25 (0.0%)
+ Sergei Shtylyov 24 (0.0%)
+ Lan Chunhe 20 (0.0%)
+ Prafulla Wadaskar 19 (0.0%)
+ Michael Durrant 19 (0.0%)
+ Poonam Aggrwal 15 (0.0%)
+ Sandeep Gopalpet 15 (0.0%)
+ Vitaly Kuzmichev 15 (0.0%)
+ Felix Radensky 14 (0.0%)
+ Alessandro Rubini 12 (0.0%)
+ Matthias Weisser 12 (0.0%)
+ Kim B. Heino 11 (0.0%)
+ Andreas Bießmann 11 (0.0%)
+ Achim Ehrlich 11 (0.0%)
+ Magnus Lilja 10 (0.0%)
+ Grazvydas Ignotas 9 (0.0%)
+ Harald Krapfenbauer 9 (0.0%)
+ Larry Johnson 8 (0.0%)
+ Mahavir Jain 8 (0.0%)
+ Nick Thompson 8 (0.0%)
+ Florian Fainelli 8 (0.0%)
+ Serge Ziryukin 7 (0.0%)
+ Terry Lv 7 (0.0%)
+ York Sun 7 (0.0%)
+ Alexander Holler 7 (0.0%)
+ Vipin KUMAR 7 (0.0%)
+ Guennadi Liakhovetski 6 (0.0%)
+ Andrew Caldwell 6 (0.0%)
+ Ender.Dai 6 (0.0%)
+ Roy Zang 6 (0.0%)
+ Albin Tonnerre 6 (0.0%)
+ Joonyoung Shim 6 (0.0%)
+ Rini van Zetten 5 (0.0%)
+ Marek Vasut 4 (0.0%)
+ Michael Weiss 4 (0.0%)
+ Robin Getz 4 (0.0%)
+ John Rigby 3 (0.0%)
+ John Schmoller 3 (0.0%)
+ Ilya Yanok 3 (0.0%)
+ George G. Davis 3 (0.0%)
+ Trübenbach, Ralf 3 (0.0%)
+ Jens Scharsig 3 (0.0%)
+ Becky Bruce 2 (0.0%)
+ Fillod Stephane 2 (0.0%)
+ Horst Kronstorfer 2 (0.0%)
+ Norbert van Bolhuis 2 (0.0%)
+ Andy Fleming 2 (0.0%)
+ Daniel Gorsulowski 2 (0.0%)
+ Philippe De Muyter 2 (0.0%)
+ Remy Bohmer 1 (0.0%)
+ Peter Horton 1 (0.0%)
+ Valentin Yakovenkov 1 (0.0%)
+ Eric Jarrige 1 (0.0%)
+ karl.beldan@gmail.com 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thomas Chou 8029 (35.5%)
+ Detlev Zundel 1280 (5.7%)
+ Scott McNutt 435 (1.9%)
+ Fabio Estevam 68 (0.3%)
+ Michal Simek 64 (0.3%)
+ Mike Frysinger 44 (0.2%)
+ Mahavir Jain 7 (0.0%)
+ Matthias Kaehlcke 4 (0.0%)
+ Harald Krapfenbauer 3 (0.0%)
+ Guennadi Liakhovetski 2 (0.0%)
+ Ender.Dai 2 (0.0%)
+ Daniel Gorsulowski 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 143)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Scott McNutt 22 (15.4%)
+ Sandeep Paulraj 22 (15.4%)
+ Ben Warren 22 (15.4%)
+ Kumar Gala 18 (12.6%)
+ Stefan Roese 8 (5.6%)
+ Kim Phillips 7 (4.9%)
+ Minkyu Kang 5 (3.5%)
+ Wolfgang Denk 5 (3.5%)
+ Kyungmin Park 4 (2.8%)
+ Sanjeev Premi 4 (2.8%)
+ Mike Frysinger 3 (2.1%)
+ Detlev Zundel 2 (1.4%)
+ Roy Zang 2 (1.4%)
+ Dave Liu 2 (1.4%)
+ Thomas Chou 1 (0.7%)
+ Michal Simek 1 (0.7%)
+ Matthias Kaehlcke 1 (0.7%)
+ Artem Bityutskiy 1 (0.7%)
+ Haiying Wang 1 (0.7%)
+ Tom Rix 1 (0.7%)
+ Jingchang Lu 1 (0.7%)
+ Jason Jin 1 (0.7%)
+ David Wu 1 (0.7%)
+ Michael Weiss 1 (0.7%)
+ Srikanth Srinivasan 1 (0.7%)
+ Ed Swarthout 1 (0.7%)
+ Sandeep Gopalpet 1 (0.7%)
+ Ron Madrid 1 (0.7%)
+ Dipen Dudhat 1 (0.7%)
+ Heiko Schocher 1 (0.7%)
+ Anatolij Gustschin 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 2 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 15)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ian Abbott 4 (26.7%)
+ Ben Gardiner 2 (13.3%)
+ Wolfgang Denk 1 (6.7%)
+ Thomas Chou 1 (6.7%)
+ Heiko Schocher 1 (6.7%)
+ Anatolij Gustschin 1 (6.7%)
+ Thomas Weber 1 (6.7%)
+ Magnus Lilja 1 (6.7%)
+ Prafulla Wadaskar 1 (6.7%)
+ Peter Tyser 1 (6.7%)
+ Tom 1 (6.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 15)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thomas Chou 4 (26.7%)
+ Ben Warren 3 (20.0%)
+ Delio Brignoli 2 (13.3%)
+ Wolfgang Denk 1 (6.7%)
+ Mike Frysinger 1 (6.7%)
+ Ed Swarthout 1 (6.7%)
+ Vitaly Kuzmichev 1 (6.7%)
+ Felix Radensky 1 (6.7%)
+ Stefano Babic 1 (6.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Haiying Wang 1 (50.0%)
+ Peter Meerwald 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (50.0%)
+ Kim Phillips 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 108 (26.9%)
+ DENX Software Engineering 79 (19.7%)
+ Freescale 53 (13.2%)
+ Graeme Russ 26 (6.5%)
+ Extreme Engineering Solutions 24 (6.0%)
+ Texas Instruments 20 (5.0%)
+ Analog Devices 16 (4.0%)
+ Samsung 13 (3.2%)
+ Xilinx 9 (2.2%)
+ MontaVista 8 (2.0%)
+ Psyent 8 (2.0%)
+ Ronetix 7 (1.7%)
+ ESD Electronics 4 (1.0%)
+ Sheldon Instruments 4 (1.0%)
+ Marvell 3 (0.7%)
+ ACM 2 (0.5%)
+ Bluegiga Technologies 2 (0.5%)
+ Matrix Vision 2 (0.5%)
+ RuggedCom 2 (0.5%)
+ ARVOO Engineering 1 (0.2%)
+ Wind River 1 (0.2%)
+ EmCraft Systems 1 (0.2%)
+ Free Electrons 1 (0.2%)
+ General Electric 1 (0.2%)
+ Macq Electronique 1 (0.2%)
+ ST Microelectronics 1 (0.2%)
+ taskit 1 (0.2%)
+ Universita di Pavia 1 (0.2%)
+ Oce Technologies 1 (0.2%)
+ Grazvydas Ignotas 1 (0.2%)
+ Funky 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 24121 (41.7%)
+ DENX Software Engineering 13498 (23.3%)
+ Texas Instruments 7921 (13.7%)
+ Graeme Russ 3048 (5.3%)
+ Samsung 1795 (3.1%)
+ Extreme Engineering Solutions 1366 (2.4%)
+ Freescale 1253 (2.2%)
+ Matrix Vision 1095 (1.9%)
+ Wind River 974 (1.7%)
+ Psyent 863 (1.5%)
+ Ronetix 859 (1.5%)
+ Analog Devices 409 (0.7%)
+ Xilinx 225 (0.4%)
+ ESD Electronics 193 (0.3%)
+ RuggedCom 76 (0.1%)
+ Sheldon Instruments 56 (0.1%)
+ MontaVista 42 (0.1%)
+ Marvell 19 (0.0%)
+ Universita di Pavia 12 (0.0%)
+ Bluegiga Technologies 11 (0.0%)
+ taskit 11 (0.0%)
+ Grazvydas Ignotas 9 (0.0%)
+ ACM 8 (0.0%)
+ General Electric 8 (0.0%)
+ ST Microelectronics 7 (0.0%)
+ Funky 7 (0.0%)
+ Free Electrons 6 (0.0%)
+ ARVOO Engineering 5 (0.0%)
+ EmCraft Systems 3 (0.0%)
+ Macq Electronique 2 (0.0%)
+ Oce Technologies 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 143)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 36 (25.2%)
+ (Unknown) 27 (18.9%)
+ Texas Instruments 26 (18.2%)
+ Psyent 22 (15.4%)
+ DENX Software Engineering 17 (11.9%)
+ Samsung 9 (6.3%)
+ Analog Devices 3 (2.1%)
+ Wind River 1 (0.7%)
+ Sheldon Instruments 1 (0.7%)
+ Nokia 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 101)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 39 (38.6%)
+ Freescale 16 (15.8%)
+ DENX Software Engineering 7 (6.9%)
+ Texas Instruments 3 (3.0%)
+ Samsung 3 (3.0%)
+ Analog Devices 3 (3.0%)
+ ESD Electronics 3 (3.0%)
+ MontaVista 3 (3.0%)
+ Extreme Engineering Solutions 2 (2.0%)
+ Psyent 1 (1.0%)
+ Wind River 1 (1.0%)
+ Sheldon Instruments 1 (1.0%)
+ Graeme Russ 1 (1.0%)
+ Matrix Vision 1 (1.0%)
+ Ronetix 1 (1.0%)
+ Xilinx 1 (1.0%)
+ RuggedCom 1 (1.0%)
+ Marvell 1 (1.0%)
+ Universita di Pavia 1 (1.0%)
+ Bluegiga Technologies 1 (1.0%)
+ taskit 1 (1.0%)
+ Grazvydas Ignotas 1 (1.0%)
+ ACM 1 (1.0%)
+ General Electric 1 (1.0%)
+ ST Microelectronics 1 (1.0%)
+ Funky 1 (1.0%)
+ Free Electrons 1 (1.0%)
+ ARVOO Engineering 1 (1.0%)
+ EmCraft Systems 1 (1.0%)
+ Macq Electronique 1 (1.0%)
+ Oce Technologies 1 (1.0%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2010.09.rst b/doc/develop/statistics/u-boot-stats-v2010.09.rst
new file mode 100644
index 0000000..acdab5b
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2010.09.rst
@@ -0,0 +1,569 @@
+:orphan:
+
+Release Statistics for U-Boot v2010.09
+======================================
+
+* Processed 402 csets from 100 developers
+
+* 31 employers found
+
+* A total of 42673 lines added, 22618 removed (delta 20055)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 77 (10.2%)
+ Kumar Gala 69 (9.2%)
+ Wolfgang Denk 55 (7.3%)
+ Steve Sakoman 34 (4.5%)
+ Minkyu Kang 33 (4.4%)
+ Stefan Roese 28 (3.7%)
+ Stefano Babic 19 (2.5%)
+ Albert Aribaud 19 (2.5%)
+ Graeme Russ 18 (2.4%)
+ Marek Vasut 17 (2.3%)
+ Nobuhiro Iwamatsu 16 (2.1%)
+ Prafulla Wadaskar 16 (2.1%)
+ Vipin KUMAR 14 (1.9%)
+ Paul Gortmaker 13 (1.7%)
+ Reinhard Meyer 11 (1.5%)
+ York Sun 11 (1.5%)
+ Sandeep Paulraj 10 (1.3%)
+ Heiko Schocher 10 (1.3%)
+ Peter Tyser 10 (1.3%)
+ Thomas Chou 9 (1.2%)
+ Ajay Kumar Gupta 9 (1.2%)
+ Becky Bruce 9 (1.2%)
+ Kim Phillips 8 (1.1%)
+ Naveen Krishna CH 8 (1.1%)
+ Kevin Morfitt 8 (1.1%)
+ Simon Kagstrom 8 (1.1%)
+ Timur Tabi 7 (0.9%)
+ Matthias Fuchs 7 (0.9%)
+ Poonam Aggrwal 7 (0.9%)
+ Matthias Kaehlcke 7 (0.9%)
+ Mingkai Hu 7 (0.9%)
+ Anatolij Gustschin 6 (0.8%)
+ Daniel Gorsulowski 6 (0.8%)
+ Scott Wood 6 (0.8%)
+ Tom Rix 6 (0.8%)
+ Michal Simek 6 (0.8%)
+ Frans Meulenbroeks 5 (0.7%)
+ Anton Vorontsov 5 (0.7%)
+ Asen Dimov 5 (0.7%)
+ Marcel Ziswiler 5 (0.7%)
+ Thomas Weber 4 (0.5%)
+ Eric Bénard 4 (0.5%)
+ Matthias Weisser 4 (0.5%)
+ Hoan Hoang 4 (0.5%)
+ Mans Rullgard 3 (0.4%)
+ Haavard Skinnemoen 3 (0.4%)
+ Nishanth Menon 3 (0.4%)
+ Michael Hennerich 3 (0.4%)
+ Prakash PM 3 (0.4%)
+ Nick Thompson 3 (0.4%)
+ Andreas Bießmann 3 (0.4%)
+ Alessandro Rubini 3 (0.4%)
+ Ladislav Michl 3 (0.4%)
+ Seunghyeon Rhee 3 (0.4%)
+ Olof Johansson 3 (0.4%)
+ Eric Millbrandt 3 (0.4%)
+ Robin Getz 3 (0.4%)
+ Detlev Zundel 2 (0.3%)
+ Daniel Hobi 2 (0.3%)
+ Lei Wen 2 (0.3%)
+ Bryan Wu 2 (0.3%)
+ Matthew McClintock 2 (0.3%)
+ Roy Zang 2 (0.3%)
+ Philippe De Muyter 2 (0.3%)
+ Grazvydas Ignotas 2 (0.3%)
+ Ben Warren 2 (0.3%)
+ Rupjyoti Sarmah 2 (0.3%)
+ Ilya Yanok 2 (0.3%)
+ Florian Fainelli 2 (0.3%)
+ Dipen Dudhat 2 (0.3%)
+ Fabio Estevam 2 (0.3%)
+ Joonyoung Shim 2 (0.3%)
+ Martha M Stan 2 (0.3%)
+ Werner Pfister 2 (0.3%)
+ Dirk Eibach 2 (0.3%)
+ Aneesh V 1 (0.1%)
+ Karl Beldan 1 (0.1%)
+ Michael Zaidman 1 (0.1%)
+ Terry Lv 1 (0.1%)
+ Wolfram Sang 1 (0.1%)
+ Ricardo Salveti de Araujo 1 (0.1%)
+ Scott Ellis 1 (0.1%)
+ Xiangfu Liu 1 (0.1%)
+ Alexander Stein 1 (0.1%)
+ Jens Scharsig 1 (0.1%)
+ Lian Minghuan 1 (0.1%)
+ Ben Gardiner 1 (0.1%)
+ Sergei Poselenov 1 (0.1%)
+ Sergei Trofimovich 1 (0.1%)
+ Li Haibo 1 (0.1%)
+ Feng Wang 1 (0.1%)
+ Stephan Linz 1 (0.1%)
+ Aaron Pace 1 (0.1%)
+ Emil Medve 1 (0.1%)
+ Vivek Mahajan 1 (0.1%)
+ Juergen Kilb 1 (0.1%)
+ Wolfgang Wegner 1 (0.1%)
+ Sergey Matyukevich 1 (0.1%)
+ Michael Weiss 1 (0.1%)
+ Reinhard Meyer (-VC) 1 (0.1%)
+ Remy Bohmer 1 (0.1%)
+ Felix Radensky 1 (0.1%)
+ Vitaly Kuzmichev 1 (0.1%)
+ Magnus Lilja 1 (0.1%)
+ Tom 1 (0.1%)
+ John Rigby 1 (0.1%)
+ Siddarth Gore 1 (0.1%)
+ Alexander Holler 1 (0.1%)
+ trix 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Paul Gibson 1 (0.1%)
+ Giuseppe CONDORELLI 1 (0.1%)
+ Harald Krapfenbauer 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 113195 (57.1%)
+ Mike Frysinger 7489 (3.8%)
+ Kumar Gala 6977 (3.5%)
+ Minkyu Kang 6369 (3.2%)
+ Graeme Russ 5996 (3.0%)
+ Vipin KUMAR 5698 (2.9%)
+ Stefan Roese 4211 (2.1%)
+ Steve Sakoman 4182 (2.1%)
+ Kevin Morfitt 3099 (1.6%)
+ Matthias Kaehlcke 3020 (1.5%)
+ Heiko Schocher 2556 (1.3%)
+ Marek Vasut 2482 (1.3%)
+ Tom Rix 2165 (1.1%)
+ Prafulla Wadaskar 2080 (1.0%)
+ Matthias Weisser 1939 (1.0%)
+ Olof Johansson 1913 (1.0%)
+ Stefano Babic 1502 (0.8%)
+ Albert Aribaud 1311 (0.7%)
+ Sandeep Paulraj 1303 (0.7%)
+ Timur Tabi 1257 (0.6%)
+ Thomas Weber 1243 (0.6%)
+ Reinhard Meyer 1198 (0.6%)
+ Thomas Chou 1132 (0.6%)
+ trix 974 (0.5%)
+ Ilya Yanok 959 (0.5%)
+ Simon Kagstrom 925 (0.5%)
+ Becky Bruce 889 (0.4%)
+ Daniel Gorsulowski 887 (0.4%)
+ Michal Simek 840 (0.4%)
+ Michael Zaidman 713 (0.4%)
+ Peter Tyser 665 (0.3%)
+ Tom 665 (0.3%)
+ Siddarth Gore 652 (0.3%)
+ Paul Gortmaker 627 (0.3%)
+ York Sun 458 (0.2%)
+ Ajay Kumar Gupta 454 (0.2%)
+ Asen Dimov 422 (0.2%)
+ Harald Krapfenbauer 411 (0.2%)
+ Nobuhiro Iwamatsu 336 (0.2%)
+ Naveen Krishna CH 328 (0.2%)
+ Michael Hennerich 326 (0.2%)
+ Sekhar Nori 325 (0.2%)
+ Mingkai Hu 324 (0.2%)
+ Haavard Skinnemoen 284 (0.1%)
+ Kim Phillips 269 (0.1%)
+ Anatolij Gustschin 248 (0.1%)
+ Martha M Stan 239 (0.1%)
+ Wolfgang Wegner 232 (0.1%)
+ Ladislav Michl 180 (0.1%)
+ Terry Lv 177 (0.1%)
+ Ben Gardiner 176 (0.1%)
+ Nick Thompson 152 (0.1%)
+ Poonam Aggrwal 124 (0.1%)
+ Nishanth Menon 111 (0.1%)
+ Eric Bénard 103 (0.1%)
+ Mans Rullgard 99 (0.0%)
+ Scott Wood 97 (0.0%)
+ Hoan Hoang 90 (0.0%)
+ Marcel Ziswiler 82 (0.0%)
+ Rupjyoti Sarmah 78 (0.0%)
+ Anton Vorontsov 72 (0.0%)
+ Ben Warren 72 (0.0%)
+ Fabio Estevam 69 (0.0%)
+ Eric Millbrandt 64 (0.0%)
+ Frans Meulenbroeks 60 (0.0%)
+ Prakash PM 52 (0.0%)
+ Grazvydas Ignotas 51 (0.0%)
+ Matthias Fuchs 47 (0.0%)
+ Aneesh V 39 (0.0%)
+ Sergey Matyukevich 39 (0.0%)
+ Lei Wen 33 (0.0%)
+ Philippe De Muyter 32 (0.0%)
+ Dirk Behme 28 (0.0%)
+ Dirk Eibach 26 (0.0%)
+ Lian Minghuan 25 (0.0%)
+ Sergei Trofimovich 23 (0.0%)
+ Ricardo Salveti de Araujo 22 (0.0%)
+ Robin Getz 19 (0.0%)
+ Roy Zang 19 (0.0%)
+ Matthew McClintock 17 (0.0%)
+ Scott Ellis 16 (0.0%)
+ Vitaly Kuzmichev 15 (0.0%)
+ Wolfram Sang 14 (0.0%)
+ Felix Radensky 14 (0.0%)
+ Seunghyeon Rhee 12 (0.0%)
+ Bryan Wu 12 (0.0%)
+ Joonyoung Shim 12 (0.0%)
+ Detlev Zundel 11 (0.0%)
+ Vivek Mahajan 10 (0.0%)
+ Magnus Lilja 10 (0.0%)
+ Alessandro Rubini 9 (0.0%)
+ Daniel Hobi 9 (0.0%)
+ Dipen Dudhat 8 (0.0%)
+ Andreas Bießmann 7 (0.0%)
+ Xiangfu Liu 7 (0.0%)
+ Alexander Holler 7 (0.0%)
+ Florian Fainelli 6 (0.0%)
+ Werner Pfister 5 (0.0%)
+ Michael Weiss 5 (0.0%)
+ Jens Scharsig 4 (0.0%)
+ Feng Wang 4 (0.0%)
+ Stephan Linz 4 (0.0%)
+ Reinhard Meyer (-VC) 3 (0.0%)
+ Giuseppe CONDORELLI 3 (0.0%)
+ Karl Beldan 1 (0.0%)
+ Alexander Stein 1 (0.0%)
+ Sergei Poselenov 1 (0.0%)
+ Li Haibo 1 (0.0%)
+ Aaron Pace 1 (0.0%)
+ Emil Medve 1 (0.0%)
+ Juergen Kilb 1 (0.0%)
+ Remy Bohmer 1 (0.0%)
+ John Rigby 1 (0.0%)
+ Paul Gibson 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 105068 (74.7%)
+ Graeme Russ 4244 (3.0%)
+ Thomas Chou 979 (0.7%)
+ Kevin Morfitt 867 (0.6%)
+ Michal Simek 797 (0.6%)
+ Michael Zaidman 612 (0.4%)
+ Peter Tyser 383 (0.3%)
+ Becky Bruce 206 (0.1%)
+ Ladislav Michl 172 (0.1%)
+ Nishanth Menon 104 (0.1%)
+ Fabio Estevam 68 (0.0%)
+ Ben Warren 48 (0.0%)
+ Marcel Ziswiler 46 (0.0%)
+ Mans Rullgard 42 (0.0%)
+ Scott Wood 14 (0.0%)
+ Grazvydas Ignotas 13 (0.0%)
+ Seunghyeon Rhee 7 (0.0%)
+ Jens Scharsig 3 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 293)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Sandeep Paulraj 54 (18.4%)
+ Kumar Gala 54 (18.4%)
+ Ben Warren 30 (10.2%)
+ Stefan Roese 19 (6.5%)
+ Minkyu Kang 19 (6.5%)
+ Wolfgang Denk 13 (4.4%)
+ Mike Frysinger 13 (4.4%)
+ Kyungmin Park 11 (3.8%)
+ Scott McNutt 8 (2.7%)
+ Kim Phillips 6 (2.0%)
+ Reinhard Meyer 6 (2.0%)
+ Scott Wood 5 (1.7%)
+ Roy Zang 4 (1.4%)
+ Aneesh V 4 (1.4%)
+ Steve Sakoman 4 (1.4%)
+ Detlev Zundel 3 (1.0%)
+ Becky Bruce 2 (0.7%)
+ Emil Medve 2 (0.7%)
+ Cliff Cai 2 (0.7%)
+ Jaehoon Chung 2 (0.7%)
+ Ed Swarthout 2 (0.7%)
+ Dave Liu 2 (0.7%)
+ HeungJun, Kim 2 (0.7%)
+ Eric Bénard 2 (0.7%)
+ York Sun 2 (0.7%)
+ Timur Tabi 2 (0.7%)
+ Shinya Kuribayashi 1 (0.3%)
+ Klaus Heydeck 1 (0.3%)
+ Ashish Kalra 1 (0.3%)
+ Stuart Yoder 1 (0.3%)
+ Lan Chunhe-B25806 1 (0.3%)
+ Andy Fleming 1 (0.3%)
+ Li Yang 1 (0.3%)
+ Dave Mitchell 1 (0.3%)
+ Vaibhav Hiremath 1 (0.3%)
+ Sanjeev Premi 1 (0.3%)
+ Sudhakar Rajashekhara 1 (0.3%)
+ Kevin Morfitt 1 (0.3%)
+ Stephen Neuendorffer 1 (0.3%)
+ Gao Guanhua 1 (0.3%)
+ Vivek Mahajan 1 (0.3%)
+ Dipen Dudhat 1 (0.3%)
+ Scott Ellis 1 (0.3%)
+ Mingkai Hu 1 (0.3%)
+ Prafulla Wadaskar 1 (0.3%)
+ Tom Rix 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Steve Sakoman 3 (15.0%)
+ Thomas Chou 3 (15.0%)
+ Stefan Roese 1 (5.0%)
+ Minkyu Kang 1 (5.0%)
+ Wolfgang Denk 1 (5.0%)
+ Detlev Zundel 1 (5.0%)
+ Peter Tyser 1 (5.0%)
+ Ian Abbott 1 (5.0%)
+ Philip Balister 1 (5.0%)
+ Andreas Bießmann 1 (5.0%)
+ Magnus Lilja 1 (5.0%)
+ Hoan Hoang 1 (5.0%)
+ Ben Gardiner 1 (5.0%)
+ Anatolij Gustschin 1 (5.0%)
+ Heiko Schocher 1 (5.0%)
+ Thomas Weber 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 5 (25.0%)
+ Grazvydas Ignotas 2 (10.0%)
+ Steve Sakoman 1 (5.0%)
+ Thomas Chou 1 (5.0%)
+ Stefan Roese 1 (5.0%)
+ Wolfgang Denk 1 (5.0%)
+ Reinhard Meyer 1 (5.0%)
+ Aneesh V 1 (5.0%)
+ Timur Tabi 1 (5.0%)
+ Kevin Morfitt 1 (5.0%)
+ Michael Zaidman 1 (5.0%)
+ Marcel Ziswiler 1 (5.0%)
+ Seunghyeon Rhee 1 (5.0%)
+ Feng Wang 1 (5.0%)
+ Stefano Babic 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 4)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 2 (50.0%)
+ York Sun 1 (25.0%)
+ Vivi Li 1 (25.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 4)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (25.0%)
+ Kumar Gala 1 (25.0%)
+ Kim Phillips 1 (25.0%)
+ Anton Vorontsov 1 (25.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 144 (19.1%)
+ DENX Software Engineering 136 (18.0%)
+ Freescale 134 (17.8%)
+ Analog Devices 85 (11.3%)
+ Samsung 41 (5.4%)
+ Sakoman Inc. 34 (4.5%)
+ Texas Instruments 25 (3.3%)
+ Wind River 20 (2.7%)
+ Graeme Russ 18 (2.4%)
+ Marvell 16 (2.1%)
+ ST Microelectronics 15 (2.0%)
+ ESD Electronics 13 (1.7%)
+ Renesas Electronics 13 (1.7%)
+ Extreme Engineering Solutions 10 (1.3%)
+ MontaVista 6 (0.8%)
+ Xilinx 6 (0.8%)
+ Ronetix 5 (0.7%)
+ Atmel 3 (0.4%)
+ EmCraft Systems 3 (0.4%)
+ General Electric 3 (0.4%)
+ IBM 3 (0.4%)
+ Nobuhiro Iwamatsu 3 (0.4%)
+ Funky 3 (0.4%)
+ AMCC 2 (0.3%)
+ Guntermann & Drunck 2 (0.3%)
+ Macq Electronique 2 (0.3%)
+ Silicon Turnkey Express 2 (0.3%)
+ Gentoo 1 (0.1%)
+ Harris Corporation 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Phytec 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Oce Technologies 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 124158 (62.6%)
+ (Unknown) 17850 (9.0%)
+ Freescale 10652 (5.4%)
+ Analog Devices 7846 (4.0%)
+ Samsung 6695 (3.4%)
+ Graeme Russ 5996 (3.0%)
+ ST Microelectronics 5701 (2.9%)
+ Sakoman Inc. 4182 (2.1%)
+ Wind River 3766 (1.9%)
+ Texas Instruments 2239 (1.1%)
+ Marvell 2075 (1.0%)
+ IBM 1913 (1.0%)
+ EmCraft Systems 960 (0.5%)
+ ESD Electronics 934 (0.5%)
+ Xilinx 840 (0.4%)
+ Extreme Engineering Solutions 665 (0.3%)
+ Ronetix 422 (0.2%)
+ Atmel 284 (0.1%)
+ Silicon Turnkey Express 239 (0.1%)
+ Renesas Electronics 198 (0.1%)
+ General Electric 152 (0.1%)
+ Nobuhiro Iwamatsu 138 (0.1%)
+ MontaVista 87 (0.0%)
+ AMCC 78 (0.0%)
+ Funky 40 (0.0%)
+ Macq Electronique 32 (0.0%)
+ Dirk Behme 28 (0.0%)
+ Guntermann & Drunck 26 (0.0%)
+ Grazvydas Ignotas 25 (0.0%)
+ Gentoo 23 (0.0%)
+ Pengutronix 14 (0.0%)
+ Harris Corporation 4 (0.0%)
+ Phytec 1 (0.0%)
+ Oce Technologies 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 293)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 90 (30.7%)
+ Texas Instruments 61 (20.8%)
+ (Unknown) 43 (14.7%)
+ DENX Software Engineering 35 (11.9%)
+ Samsung 34 (11.6%)
+ Analog Devices 15 (5.1%)
+ Psyent 8 (2.7%)
+ Sakoman Inc. 4 (1.4%)
+ Wind River 1 (0.3%)
+ Marvell 1 (0.3%)
+ Xilinx 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 120)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 49 (40.8%)
+ Freescale 15 (12.5%)
+ DENX Software Engineering 7 (5.8%)
+ Texas Instruments 6 (5.0%)
+ Analog Devices 4 (3.3%)
+ Samsung 3 (2.5%)
+ Wind River 3 (2.5%)
+ Marvell 2 (1.7%)
+ ST Microelectronics 2 (1.7%)
+ EmCraft Systems 2 (1.7%)
+ ESD Electronics 2 (1.7%)
+ MontaVista 2 (1.7%)
+ Funky 2 (1.7%)
+ Sakoman Inc. 1 (0.8%)
+ Xilinx 1 (0.8%)
+ Graeme Russ 1 (0.8%)
+ IBM 1 (0.8%)
+ Extreme Engineering Solutions 1 (0.8%)
+ Ronetix 1 (0.8%)
+ Atmel 1 (0.8%)
+ Silicon Turnkey Express 1 (0.8%)
+ Renesas Electronics 1 (0.8%)
+ General Electric 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ AMCC 1 (0.8%)
+ Macq Electronique 1 (0.8%)
+ Dirk Behme 1 (0.8%)
+ Guntermann & Drunck 1 (0.8%)
+ Grazvydas Ignotas 1 (0.8%)
+ Gentoo 1 (0.8%)
+ Pengutronix 1 (0.8%)
+ Harris Corporation 1 (0.8%)
+ Phytec 1 (0.8%)
+ Oce Technologies 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2010.12.rst b/doc/develop/statistics/u-boot-stats-v2010.12.rst
new file mode 100644
index 0000000..3247526
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2010.12.rst
@@ -0,0 +1,549 @@
+:orphan:
+
+Release Statistics for U-Boot v2010.12
+======================================
+
+* Processed 777 csets from 111 developers
+
+* 31 employers found
+
+* A total of 75570 lines added, 90858 removed (delta -15288)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 90 (11.6%)
+ Mike Frysinger 58 (7.5%)
+ Stefan Roese 41 (5.3%)
+ Marek Vasut 41 (5.3%)
+ Heiko Schocher 39 (5.0%)
+ Peter Tyser 36 (4.6%)
+ Stefano Babic 32 (4.1%)
+ Andreas Bießmann 22 (2.8%)
+ Kumar Gala 21 (2.7%)
+ Steve Sakoman 21 (2.7%)
+ Nobuhiro Iwamatsu 20 (2.6%)
+ Graeme Russ 20 (2.6%)
+ Ben Gardiner 15 (1.9%)
+ Ilya Yanok 14 (1.8%)
+ Reinhard Meyer 12 (1.5%)
+ Scott Wood 12 (1.5%)
+ Albert Aribaud 12 (1.5%)
+ Timur Tabi 11 (1.4%)
+ Prafulla Wadaskar 11 (1.4%)
+ Vitaly Kuzmichev 11 (1.4%)
+ Enric Balletbo i Serra 10 (1.3%)
+ John Rigby 9 (1.2%)
+ Sandeep Paulraj 9 (1.2%)
+ Dirk Behme 8 (1.0%)
+ Anatolij Gustschin 8 (1.0%)
+ Joakim Tjernlund 8 (1.0%)
+ York Sun 8 (1.0%)
+ John Schmoller 7 (0.9%)
+ Haiying Wang 7 (0.9%)
+ Thomas Weber 7 (0.9%)
+ Asen Dimov 6 (0.8%)
+ Liu Hui-R64343 6 (0.8%)
+ Daniel Hellstrom 6 (0.8%)
+ Kim Phillips 5 (0.6%)
+ Lei Wen 5 (0.6%)
+ Mikhail Kshevetskiy 5 (0.6%)
+ Sukumar Ghorai 5 (0.6%)
+ Michal Simek 5 (0.6%)
+ Jerry Huang 4 (0.5%)
+ Matt Waddel 4 (0.5%)
+ Minkyu Kang 4 (0.5%)
+ Sanjeev Premi 4 (0.5%)
+ Nishanth Menon 3 (0.4%)
+ Vaibhav Hiremath 3 (0.4%)
+ Eric Cooper 3 (0.4%)
+ Grazvydas Ignotas 3 (0.4%)
+ Matthias Weisser 3 (0.4%)
+ Shawn Guo 3 (0.4%)
+ Alexander Stein 3 (0.4%)
+ Li Yang 2 (0.3%)
+ Nick Thompson 2 (0.3%)
+ Macpaul Lin 2 (0.3%)
+ Kristoffer Ericson 2 (0.3%)
+ Sekhar Nori 2 (0.3%)
+ Sebastien Carlier 2 (0.3%)
+ Matthew McClintock 2 (0.3%)
+ Ben Warren 2 (0.3%)
+ Gray Remlin 2 (0.3%)
+ Daniel Hobi 2 (0.3%)
+ Darius Augulis 2 (0.3%)
+ Andre Schwarz 2 (0.3%)
+ Stephan Linz 2 (0.3%)
+ Tirumala Marri 2 (0.3%)
+ Peter Meerwald 2 (0.3%)
+ clagix@gmail.com 1 (0.1%)
+ Baidu Boy 1 (0.1%)
+ P.V.Suresh 1 (0.1%)
+ David Müller (ELSOFT AG) 1 (0.1%)
+ Ricardo Ribalda 1 (0.1%)
+ Stefan Popa 1 (0.1%)
+ Horst Kronstorfer 1 (0.1%)
+ Semih Hazar 1 (0.1%)
+ François Revol 1 (0.1%)
+ Becky Bruce 1 (0.1%)
+ Priyanka Jain 1 (0.1%)
+ Alagu Sankar 1 (0.1%)
+ Koen Kooi 1 (0.1%)
+ Tanmay Upadhyay 1 (0.1%)
+ C Nauman 1 (0.1%)
+ Sughosh Ganu 1 (0.1%)
+ Dirk Eibach 1 (0.1%)
+ Florian Fainelli 1 (0.1%)
+ Magnus Sjalander 1 (0.1%)
+ Aaron Sierra 1 (0.1%)
+ Ira Snyder 1 (0.1%)
+ Richard Retanubun 1 (0.1%)
+ Jens Scharsig 1 (0.1%)
+ Magnus Lilja 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Thomas Chou 1 (0.1%)
+ Damien Dusha 1 (0.1%)
+ Loic Minier 1 (0.1%)
+ mark.vels@team-embedded.nl 1 (0.1%)
+ Bryan Wu 1 (0.1%)
+ Ludovic Courtès 1 (0.1%)
+ Brent Darley 1 (0.1%)
+ Sergei Poselenov 1 (0.1%)
+ Mikhail Zolotaryov 1 (0.1%)
+ Reinhard Meyer (-VC) 1 (0.1%)
+ Emil Medve 1 (0.1%)
+ David Jander 1 (0.1%)
+ Marc-André Hébert 1 (0.1%)
+ Jeff Dischler 1 (0.1%)
+ Graeme Smecher 1 (0.1%)
+ Rupjyoti Sarmah 1 (0.1%)
+ Sascha Laue 1 (0.1%)
+ Wojtek Skulski 1 (0.1%)
+ Torkel Lundgren 1 (0.1%)
+ Victor Gallardo 1 (0.1%)
+ Matthias Fuchs 1 (0.1%)
+ Remy Bohmer 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 34518 (24.8%)
+ Mike Frysinger 30577 (21.9%)
+ Marek Vasut 13179 (9.5%)
+ Stefano Babic 11065 (7.9%)
+ Stefan Roese 5022 (3.6%)
+ Heiko Schocher 4739 (3.4%)
+ Remy Bohmer 4425 (3.2%)
+ Peter Tyser 4210 (3.0%)
+ Reinhard Meyer 2547 (1.8%)
+ Timur Tabi 1764 (1.3%)
+ Dirk Eibach 1544 (1.1%)
+ Ilya Yanok 1467 (1.1%)
+ Albert Aribaud 1465 (1.1%)
+ Prafulla Wadaskar 1438 (1.0%)
+ Sebastien Carlier 1384 (1.0%)
+ Eric Cooper 1303 (0.9%)
+ John Schmoller 1287 (0.9%)
+ Enric Balletbo i Serra 1205 (0.9%)
+ Sascha Laue 1090 (0.8%)
+ C Nauman 1016 (0.7%)
+ Andreas Bießmann 989 (0.7%)
+ Matt Waddel 863 (0.6%)
+ Graeme Russ 835 (0.6%)
+ York Sun 810 (0.6%)
+ Sergei Poselenov 777 (0.6%)
+ Scott Wood 749 (0.5%)
+ Tirumala Marri 648 (0.5%)
+ Kumar Gala 644 (0.5%)
+ Peter Meerwald 604 (0.4%)
+ Kristoffer Ericson 553 (0.4%)
+ Ben Gardiner 550 (0.4%)
+ Vitaly Kuzmichev 514 (0.4%)
+ Sukumar Ghorai 483 (0.3%)
+ Mikhail Kshevetskiy 454 (0.3%)
+ Steve Sakoman 385 (0.3%)
+ Wojtek Skulski 368 (0.3%)
+ Damien Dusha 318 (0.2%)
+ John Rigby 300 (0.2%)
+ Michal Simek 253 (0.2%)
+ Liu Hui-R64343 252 (0.2%)
+ Nobuhiro Iwamatsu 242 (0.2%)
+ Anatolij Gustschin 212 (0.2%)
+ Grazvydas Ignotas 187 (0.1%)
+ Haiying Wang 143 (0.1%)
+ Koen Kooi 140 (0.1%)
+ Macpaul Lin 118 (0.1%)
+ Daniel Hellstrom 113 (0.1%)
+ Darius Augulis 113 (0.1%)
+ Nishanth Menon 88 (0.1%)
+ Sandeep Paulraj 83 (0.1%)
+ Joakim Tjernlund 71 (0.1%)
+ Alagu Sankar 71 (0.1%)
+ Thomas Weber 65 (0.0%)
+ Shawn Guo 65 (0.0%)
+ Sekhar Nori 59 (0.0%)
+ Nick Thompson 57 (0.0%)
+ Lei Wen 56 (0.0%)
+ Aaron Sierra 51 (0.0%)
+ Asen Dimov 45 (0.0%)
+ Minkyu Kang 44 (0.0%)
+ Ira Snyder 44 (0.0%)
+ Sughosh Ganu 43 (0.0%)
+ Torkel Lundgren 42 (0.0%)
+ Mikhail Zolotaryov 41 (0.0%)
+ Sanjeev Premi 40 (0.0%)
+ Dirk Behme 39 (0.0%)
+ Ludovic Courtès 35 (0.0%)
+ Li Yang 30 (0.0%)
+ Matthias Weisser 26 (0.0%)
+ Matthias Fuchs 26 (0.0%)
+ Alexander Stein 25 (0.0%)
+ Ben Warren 24 (0.0%)
+ Thomas Chou 24 (0.0%)
+ Jens Scharsig 20 (0.0%)
+ Gray Remlin 17 (0.0%)
+ Magnus Lilja 16 (0.0%)
+ Jaehoon Chung 16 (0.0%)
+ Bryan Wu 16 (0.0%)
+ Kim Phillips 14 (0.0%)
+ Rupjyoti Sarmah 13 (0.0%)
+ Vaibhav Hiremath 11 (0.0%)
+ Matthew McClintock 11 (0.0%)
+ Daniel Hobi 11 (0.0%)
+ Magnus Sjalander 11 (0.0%)
+ Tanmay Upadhyay 10 (0.0%)
+ David Müller (ELSOFT AG) 9 (0.0%)
+ Emil Medve 9 (0.0%)
+ David Jander 9 (0.0%)
+ Graeme Smecher 9 (0.0%)
+ Jerry Huang 8 (0.0%)
+ clagix@gmail.com 8 (0.0%)
+ Andre Schwarz 7 (0.0%)
+ Baidu Boy 6 (0.0%)
+ François Revol 6 (0.0%)
+ Stephan Linz 5 (0.0%)
+ P.V.Suresh 4 (0.0%)
+ Semih Hazar 4 (0.0%)
+ Priyanka Jain 4 (0.0%)
+ Florian Fainelli 4 (0.0%)
+ Reinhard Meyer (-VC) 4 (0.0%)
+ Marc-André Hébert 4 (0.0%)
+ Richard Retanubun 3 (0.0%)
+ mark.vels@team-embedded.nl 3 (0.0%)
+ Victor Gallardo 3 (0.0%)
+ Stefan Popa 2 (0.0%)
+ Brent Darley 2 (0.0%)
+ Ricardo Ribalda 1 (0.0%)
+ Horst Kronstorfer 1 (0.0%)
+ Becky Bruce 1 (0.0%)
+ Loic Minier 1 (0.0%)
+ Jeff Dischler 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 23946 (26.4%)
+ Mike Frysinger 13431 (14.8%)
+ Marek Vasut 6370 (7.0%)
+ Peter Tyser 3131 (3.4%)
+ Stefan Roese 962 (1.1%)
+ Prafulla Wadaskar 645 (0.7%)
+ Timur Tabi 635 (0.7%)
+ Andreas Bießmann 471 (0.5%)
+ Mikhail Kshevetskiy 411 (0.5%)
+ Kumar Gala 248 (0.3%)
+ Scott Wood 149 (0.2%)
+ Grazvydas Ignotas 135 (0.1%)
+ Sughosh Ganu 41 (0.0%)
+ Graeme Russ 34 (0.0%)
+ Alagu Sankar 32 (0.0%)
+ Thomas Weber 31 (0.0%)
+ Matthias Fuchs 21 (0.0%)
+ Nick Thompson 15 (0.0%)
+ Liu Hui-R64343 9 (0.0%)
+ Jens Scharsig 9 (0.0%)
+ Semih Hazar 4 (0.0%)
+ Richard Retanubun 3 (0.0%)
+ Marc-André Hébert 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 208)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 51 (24.5%)
+ Sandeep Paulraj 45 (21.6%)
+ Ben Warren 14 (6.7%)
+ Wolfgang Denk 13 (6.2%)
+ Mike Frysinger 12 (5.8%)
+ Peter Tyser 11 (5.3%)
+ Kim Phillips 11 (5.3%)
+ Stefan Roese 10 (4.8%)
+ Anatolij Gustschin 6 (2.9%)
+ Reinhard Meyer 5 (2.4%)
+ Kyungmin Park 4 (1.9%)
+ Chris Moore 2 (1.0%)
+ Alessandro Rubini 2 (1.0%)
+ Minkyu Kang 2 (1.0%)
+ Michal Simek 2 (1.0%)
+ Steve Sakoman 2 (1.0%)
+ Heiko Schocher 2 (1.0%)
+ Gray Remlin 1 (0.5%)
+ Ricardo Ribalda Delgado 1 (0.5%)
+ Roy Zang 1 (0.5%)
+ Francesco Rendine 1 (0.5%)
+ Aneesh V 1 (0.5%)
+ Cliff Cai 1 (0.5%)
+ Harald Welte 1 (0.5%)
+ Kai.Jiang 1 (0.5%)
+ Marc-Andre Hebert 1 (0.5%)
+ Thomas Smits 1 (0.5%)
+ David Jander 1 (0.5%)
+ Daniel Hellstrom 1 (0.5%)
+ York Sun 1 (0.5%)
+ Stefano Babic 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ben Gardiner 4 (80.0%)
+ Sudhakar Rajashekhara 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 55)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Steve Sakoman 10 (18.2%)
+ Heiko Schocher 10 (18.2%)
+ Ben Gardiner 9 (16.4%)
+ Stefano Babic 8 (14.5%)
+ Wolfgang Denk 3 (5.5%)
+ Reinhard Meyer 3 (5.5%)
+ Sandeep Paulraj 2 (3.6%)
+ Thomas Chou 2 (3.6%)
+ Sudhakar Rajashekhara 1 (1.8%)
+ Peter Tyser 1 (1.8%)
+ Nick Thompson 1 (1.8%)
+ Ira Snyder 1 (1.8%)
+ Detlev Zundel 1 (1.8%)
+ Rob Herring 1 (1.8%)
+ Nishanth Menon 1 (1.8%)
+ John Rigby 1 (1.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 55)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 10 (18.2%)
+ Scott Wood 5 (9.1%)
+ Dirk Behme 5 (9.1%)
+ Steve Sakoman 4 (7.3%)
+ Jerry Huang 4 (7.3%)
+ Sukumar Ghorai 4 (7.3%)
+ Nick Thompson 3 (5.5%)
+ Enric Balletbo i Serra 3 (5.5%)
+ John Rigby 2 (3.6%)
+ Kumar Gala 2 (3.6%)
+ Daniel Hobi 2 (3.6%)
+ Li Yang 2 (3.6%)
+ Heiko Schocher 1 (1.8%)
+ Ben Gardiner 1 (1.8%)
+ Mike Frysinger 1 (1.8%)
+ Timur Tabi 1 (1.8%)
+ Sughosh Ganu 1 (1.8%)
+ Alagu Sankar 1 (1.8%)
+ Liu Hui-R64343 1 (1.8%)
+ Becky Bruce 1 (1.8%)
+ Sebastien Carlier 1 (1.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 4)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Vivi Li 2 (50.0%)
+ Dan Lykowski 1 (25.0%)
+ Peter Maydell 1 (25.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 4)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 2 (50.0%)
+ Wolfgang Denk 1 (25.0%)
+ Steve Sakoman 1 (25.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 251 (32.3%)
+ (Unknown) 146 (18.8%)
+ Freescale 83 (10.7%)
+ Analog Devices 59 (7.6%)
+ Extreme Engineering Solutions 46 (5.9%)
+ Texas Instruments 26 (3.3%)
+ Sakoman Inc. 20 (2.6%)
+ Graeme Russ 20 (2.6%)
+ Nobuhiro Iwamatsu 17 (2.2%)
+ Linaro 15 (1.9%)
+ EmCraft Systems 14 (1.8%)
+ Marvell 13 (1.7%)
+ MontaVista 11 (1.4%)
+ Transmode Systems 8 (1.0%)
+ Dirk Behme 8 (1.0%)
+ Gaisler Research 7 (0.9%)
+ Ronetix 6 (0.8%)
+ Samsung 5 (0.6%)
+ Xilinx 5 (0.6%)
+ Renesas Electronics 3 (0.4%)
+ General Electric 2 (0.3%)
+ Matrix Vision 2 (0.3%)
+ Grazvydas Ignotas 2 (0.3%)
+ AMCC 1 (0.1%)
+ ENEA AB 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ Guntermann & Drunck 1 (0.1%)
+ Liebherr 1 (0.1%)
+ OVRO 1 (0.1%)
+ RuggedCom 1 (0.1%)
+ Oce Technologies 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 69493 (49.9%)
+ Analog Devices 30593 (22.0%)
+ (Unknown) 14459 (10.4%)
+ Extreme Engineering Solutions 5551 (4.0%)
+ Freescale 4445 (3.2%)
+ Oce Technologies 4425 (3.2%)
+ Guntermann & Drunck 1544 (1.1%)
+ EmCraft Systems 1467 (1.1%)
+ Marvell 1443 (1.0%)
+ Linaro 1165 (0.8%)
+ Liebherr 1090 (0.8%)
+ Graeme Russ 835 (0.6%)
+ Texas Instruments 764 (0.5%)
+ MontaVista 514 (0.4%)
+ Sakoman Inc. 384 (0.3%)
+ Xilinx 253 (0.2%)
+ Nobuhiro Iwamatsu 160 (0.1%)
+ Grazvydas Ignotas 142 (0.1%)
+ Gaisler Research 124 (0.1%)
+ Renesas Electronics 82 (0.1%)
+ Transmode Systems 71 (0.1%)
+ Samsung 60 (0.0%)
+ General Electric 57 (0.0%)
+ Ronetix 45 (0.0%)
+ OVRO 44 (0.0%)
+ ENEA AB 42 (0.0%)
+ Dirk Behme 39 (0.0%)
+ ESD Electronics 26 (0.0%)
+ AMCC 13 (0.0%)
+ Matrix Vision 7 (0.0%)
+ RuggedCom 3 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 208)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 65 (31.2%)
+ Texas Instruments 46 (22.1%)
+ DENX Software Engineering 32 (15.4%)
+ (Unknown) 32 (15.4%)
+ Analog Devices 13 (6.2%)
+ Extreme Engineering Solutions 11 (5.3%)
+ Samsung 6 (2.9%)
+ Linaro 2 (1.0%)
+ Gaisler Research 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 51 (43.6%)
+ Freescale 15 (12.8%)
+ DENX Software Engineering 7 (6.0%)
+ Texas Instruments 6 (5.1%)
+ Extreme Engineering Solutions 5 (4.3%)
+ Linaro 4 (3.4%)
+ Analog Devices 2 (1.7%)
+ Samsung 2 (1.7%)
+ Gaisler Research 2 (1.7%)
+ Marvell 2 (1.7%)
+ Oce Technologies 1 (0.9%)
+ Guntermann & Drunck 1 (0.9%)
+ EmCraft Systems 1 (0.9%)
+ Liebherr 1 (0.9%)
+ Graeme Russ 1 (0.9%)
+ MontaVista 1 (0.9%)
+ Sakoman Inc. 1 (0.9%)
+ Xilinx 1 (0.9%)
+ Nobuhiro Iwamatsu 1 (0.9%)
+ Grazvydas Ignotas 1 (0.9%)
+ Renesas Electronics 1 (0.9%)
+ Transmode Systems 1 (0.9%)
+ General Electric 1 (0.9%)
+ Ronetix 1 (0.9%)
+ OVRO 1 (0.9%)
+ ENEA AB 1 (0.9%)
+ Dirk Behme 1 (0.9%)
+ ESD Electronics 1 (0.9%)
+ AMCC 1 (0.9%)
+ Matrix Vision 1 (0.9%)
+ RuggedCom 1 (0.9%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2011.03.rst b/doc/develop/statistics/u-boot-stats-v2011.03.rst
new file mode 100644
index 0000000..404a83c
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2011.03.rst
@@ -0,0 +1,452 @@
+:orphan:
+
+Release Statistics for U-Boot v2011.03
+======================================
+
+* Processed 451 csets from 80 developers
+
+* 25 employers found
+
+* A total of 42168 lines added, 16328 removed (delta 25840)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 61 (13.5%)
+ Nobuhiro Iwamatsu 33 (7.3%)
+ Graeme Russ 32 (7.1%)
+ Mike Frysinger 31 (6.9%)
+ York Sun 22 (4.9%)
+ Stefano Babic 20 (4.4%)
+ Wolfgang Denk 17 (3.8%)
+ Sandeep Paulraj 13 (2.9%)
+ Stefan Roese 11 (2.4%)
+ Liu Hui-R64343 10 (2.2%)
+ Minkyu Kang 9 (2.0%)
+ Yoshihiro Shimoda 9 (2.0%)
+ Lei Wen 9 (2.0%)
+ Becky Bruce 9 (2.0%)
+ Heiko Schocher 8 (1.8%)
+ Prafulla Wadaskar 7 (1.6%)
+ Vitaly Kuzmichev 7 (1.6%)
+ Alexander Holler 7 (1.6%)
+ Po-Yu Chuang 6 (1.3%)
+ seedshope 6 (1.3%)
+ Sughosh Ganu 6 (1.3%)
+ Tom Warren 5 (1.1%)
+ Loïc Minier 5 (1.1%)
+ Thomas Chou 5 (1.1%)
+ Shinya Kuribayashi 5 (1.1%)
+ Prabhakar Kushwaha 4 (0.9%)
+ Joakim Tjernlund 4 (0.9%)
+ Peter Tyser 4 (0.9%)
+ Fabio Estevam 4 (0.9%)
+ Michal Simek 4 (0.9%)
+ Marek Vasut 4 (0.9%)
+ Sudhakar Rajashekhara 4 (0.9%)
+ Priyanka Jain 3 (0.7%)
+ Simon Glass 3 (0.7%)
+ Daniel Schwierzeck 3 (0.7%)
+ Scott Wood 2 (0.4%)
+ Chander Kashyap 2 (0.4%)
+ Ed Swarthout 2 (0.4%)
+ Haiying Wang 2 (0.4%)
+ Macpaul Lin 2 (0.4%)
+ Matthew McClintock 2 (0.4%)
+ Remy Bohmer 2 (0.4%)
+ Timur Tabi 2 (0.4%)
+ Dirk Behme 2 (0.4%)
+ Anatolij Gustschin 2 (0.4%)
+ Poonam Aggrwal 2 (0.4%)
+ Yanjun Yang 2 (0.4%)
+ Roy Zang 2 (0.4%)
+ Ricardo Ribalda 2 (0.4%)
+ Rabin Vincent 2 (0.4%)
+ Wolfgang Wegner 2 (0.4%)
+ Martin Krause 1 (0.2%)
+ Jiang Yutang 1 (0.2%)
+ Donghwa Lee 1 (0.2%)
+ Peter Barada 1 (0.2%)
+ John Schmoller 1 (0.2%)
+ Alexander Stein 1 (0.2%)
+ Dirk Eibach 1 (0.2%)
+ Leo Liu 1 (0.2%)
+ Jens Scharsig 1 (0.2%)
+ Mike Rapoport 1 (0.2%)
+ Ryan Mallon 1 (0.2%)
+ Alex Dubov 1 (0.2%)
+ Liu Ying 1 (0.2%)
+ Dipen Dudhat 1 (0.2%)
+ Holger Brunck 1 (0.2%)
+ Jerry Huang 1 (0.2%)
+ Li Yang 1 (0.2%)
+ Paul Gortmaker 1 (0.2%)
+ Chenhui Zhao 1 (0.2%)
+ Piergiorgio Beruto 1 (0.2%)
+ David Müller 1 (0.2%)
+ Felix Radensky 1 (0.2%)
+ Chris Packham 1 (0.2%)
+ Florian Fainelli 1 (0.2%)
+ Reinhard Meyer 1 (0.2%)
+ Wojtek Skulski 1 (0.2%)
+ Chong Huang 1 (0.2%)
+ Simon Kagstrom 1 (0.2%)
+ Balaji T K 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 9138 (17.3%)
+ Stefano Babic 5007 (9.5%)
+ Sandeep Paulraj 4433 (8.4%)
+ Vitaly Kuzmichev 2589 (4.9%)
+ Yoshihiro Shimoda 2160 (4.1%)
+ Minkyu Kang 2148 (4.1%)
+ Graeme Russ 2136 (4.0%)
+ Liu Hui-R64343 1982 (3.7%)
+ Sughosh Ganu 1840 (3.5%)
+ Nobuhiro Iwamatsu 1763 (3.3%)
+ Tom Warren 1525 (2.9%)
+ Marek Vasut 1314 (2.5%)
+ Lei Wen 1217 (2.3%)
+ York Sun 1148 (2.2%)
+ Prafulla Wadaskar 1135 (2.1%)
+ Holger Brunck 1039 (2.0%)
+ Dirk Eibach 994 (1.9%)
+ Wolfgang Denk 980 (1.9%)
+ Simon Glass 966 (1.8%)
+ Becky Bruce 911 (1.7%)
+ Macpaul Lin 905 (1.7%)
+ Mike Frysinger 898 (1.7%)
+ Alex Dubov 847 (1.6%)
+ Mike Rapoport 789 (1.5%)
+ Heiko Schocher 669 (1.3%)
+ Ricardo Ribalda 577 (1.1%)
+ Dirk Behme 474 (0.9%)
+ Po-Yu Chuang 404 (0.8%)
+ Sudhakar Rajashekhara 374 (0.7%)
+ Chong Huang 280 (0.5%)
+ Stefan Roese 268 (0.5%)
+ Donghwa Lee 259 (0.5%)
+ Balaji T K 229 (0.4%)
+ Priyanka Jain 162 (0.3%)
+ Thomas Chou 107 (0.2%)
+ Rabin Vincent 104 (0.2%)
+ Shinya Kuribayashi 95 (0.2%)
+ Chris Packham 94 (0.2%)
+ Prabhakar Kushwaha 89 (0.2%)
+ Fabio Estevam 86 (0.2%)
+ Haiying Wang 79 (0.1%)
+ Joakim Tjernlund 58 (0.1%)
+ seedshope 55 (0.1%)
+ Daniel Schwierzeck 54 (0.1%)
+ Peter Tyser 50 (0.1%)
+ Alexander Holler 42 (0.1%)
+ Michal Simek 32 (0.1%)
+ John Schmoller 32 (0.1%)
+ Wojtek Skulski 29 (0.1%)
+ Anatolij Gustschin 27 (0.1%)
+ Li Yang 23 (0.0%)
+ Poonam Aggrwal 21 (0.0%)
+ Roy Zang 21 (0.0%)
+ Timur Tabi 20 (0.0%)
+ Leo Liu 20 (0.0%)
+ David Müller 18 (0.0%)
+ Jerry Huang 16 (0.0%)
+ Wolfgang Wegner 14 (0.0%)
+ Scott Wood 13 (0.0%)
+ Peter Barada 13 (0.0%)
+ Dipen Dudhat 13 (0.0%)
+ Loïc Minier 11 (0.0%)
+ Chenhui Zhao 11 (0.0%)
+ Reinhard Meyer 9 (0.0%)
+ Paul Gortmaker 8 (0.0%)
+ Chander Kashyap 7 (0.0%)
+ Jiang Yutang 7 (0.0%)
+ Remy Bohmer 5 (0.0%)
+ Martin Krause 5 (0.0%)
+ Ed Swarthout 4 (0.0%)
+ Simon Kagstrom 4 (0.0%)
+ Yanjun Yang 3 (0.0%)
+ Jens Scharsig 3 (0.0%)
+ Ryan Mallon 3 (0.0%)
+ Matthew McClintock 2 (0.0%)
+ Piergiorgio Beruto 2 (0.0%)
+ Alexander Stein 1 (0.0%)
+ Liu Ying 1 (0.0%)
+ Felix Radensky 1 (0.0%)
+ Florian Fainelli 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 4123 (25.3%)
+ Holger Brunck 1039 (6.4%)
+ Wolfgang Denk 793 (4.9%)
+ Becky Bruce 701 (4.3%)
+ Ricardo Ribalda 544 (3.3%)
+ Mike Frysinger 191 (1.2%)
+ Shinya Kuribayashi 61 (0.4%)
+ Daniel Schwierzeck 45 (0.3%)
+ Michal Simek 12 (0.1%)
+ Simon Kagstrom 3 (0.0%)
+ Jens Scharsig 3 (0.0%)
+ Ryan Mallon 2 (0.0%)
+ Loïc Minier 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 157)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 55 (35.0%)
+ Sandeep Paulraj 19 (12.1%)
+ Minkyu Kang 9 (5.7%)
+ Ben Gardiner 8 (5.1%)
+ Stefan Roese 8 (5.1%)
+ Nobuhiro Iwamatsu 7 (4.5%)
+ Kyungmin Park 5 (3.2%)
+ Scott McNutt 4 (2.5%)
+ Wolfgang Denk 3 (1.9%)
+ Shinya Kuribayashi 3 (1.9%)
+ Mahavir Jain 3 (1.9%)
+ Li Yang 3 (1.9%)
+ Mike Frysinger 2 (1.3%)
+ Kim Phillips 2 (1.3%)
+ Prakash PM 2 (1.3%)
+ Scott Wood 2 (1.3%)
+ Chenhui Zhao 2 (1.3%)
+ Sudhakar Rajashekhara 2 (1.3%)
+ Tushar Behera 1 (0.6%)
+ Andy Fleming 1 (0.6%)
+ Magnus Lilja 1 (0.6%)
+ Hemant Pedanekar 1 (0.6%)
+ Alagu Sankar 1 (0.6%)
+ Jin Qing 1 (0.6%)
+ David Woodhouse 1 (0.6%)
+ John Linn 1 (0.6%)
+ Haitao Zhang 1 (0.6%)
+ Ricardo Ribalda Delgado 1 (0.6%)
+ Ruslan Araslanov 1 (0.6%)
+ Peter Tyser 1 (0.6%)
+ Dipen Dudhat 1 (0.6%)
+ Roy Zang 1 (0.6%)
+ Po-Yu Chuang 1 (0.6%)
+ Dirk Behme 1 (0.6%)
+ Prafulla Wadaskar 1 (0.6%)
+ Stefano Babic 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Macpaul Lin 2 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 15)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Paul Gortmaker 3 (20.0%)
+ Macpaul Lin 2 (13.3%)
+ Stefano Babic 2 (13.3%)
+ Alexander Holler 2 (13.3%)
+ Wolfgang Denk 1 (6.7%)
+ Magnus Lilja 1 (6.7%)
+ Peter Tyser 1 (6.7%)
+ Andreas Bießmann 1 (6.7%)
+ Thomas Weber 1 (6.7%)
+ Steve Sakoman 1 (6.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 15)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Holler 2 (13.3%)
+ Kumar Gala 2 (13.3%)
+ Po-Yu Chuang 2 (13.3%)
+ Stefano Babic 1 (6.7%)
+ Becky Bruce 1 (6.7%)
+ Peter Barada 1 (6.7%)
+ Anatolij Gustschin 1 (6.7%)
+ Fabio Estevam 1 (6.7%)
+ Chris Packham 1 (6.7%)
+ Priyanka Jain 1 (6.7%)
+ Balaji T K 1 (6.7%)
+ Liu Hui-R64343 1 (6.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Loïc Minier 1 (33.3%)
+ Renaud Barbier 1 (33.3%)
+ John Traill 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 3)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 2 (66.7%)
+ Loïc Minier 1 (33.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 131 (29.0%)
+ (Unknown) 72 (16.0%)
+ DENX Software Engineering 62 (13.7%)
+ Graeme Russ 32 (7.1%)
+ Analog Devices 31 (6.9%)
+ Nobuhiro Iwamatsu 23 (5.1%)
+ Renesas Electronics 19 (4.2%)
+ Texas Instruments 18 (4.0%)
+ Marvell 11 (2.4%)
+ Samsung 10 (2.2%)
+ Linaro 7 (1.6%)
+ MontaVista 7 (1.6%)
+ Extreme Engineering Solutions 5 (1.1%)
+ Transmode Systems 4 (0.9%)
+ Xilinx 4 (0.9%)
+ Google, Inc. 3 (0.7%)
+ ST-Ericsson 2 (0.4%)
+ Dirk Behme 2 (0.4%)
+ Oce Technologies 2 (0.4%)
+ Bluewater Systems 1 (0.2%)
+ CompuLab 1 (0.2%)
+ Wind River 1 (0.2%)
+ Guntermann & Drunck 1 (0.2%)
+ Keymile 1 (0.2%)
+ TQ Systems 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 13745 (26.0%)
+ DENX Software Engineering 8265 (15.6%)
+ (Unknown) 8029 (15.2%)
+ Texas Instruments 5036 (9.5%)
+ MontaVista 2589 (4.9%)
+ Samsung 2407 (4.6%)
+ Renesas Electronics 2311 (4.4%)
+ Graeme Russ 2136 (4.0%)
+ Nobuhiro Iwamatsu 1612 (3.0%)
+ Marvell 1268 (2.4%)
+ Keymile 1039 (2.0%)
+ Guntermann & Drunck 994 (1.9%)
+ Google, Inc. 966 (1.8%)
+ Analog Devices 898 (1.7%)
+ CompuLab 789 (1.5%)
+ Dirk Behme 474 (0.9%)
+ ST-Ericsson 104 (0.2%)
+ Extreme Engineering Solutions 82 (0.2%)
+ Transmode Systems 58 (0.1%)
+ Xilinx 32 (0.1%)
+ Linaro 18 (0.0%)
+ Wind River 8 (0.0%)
+ Oce Technologies 5 (0.0%)
+ TQ Systems 5 (0.0%)
+ Bluewater Systems 3 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 157)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 68 (43.3%)
+ Texas Instruments 24 (15.3%)
+ (Unknown) 17 (10.8%)
+ Samsung 14 (8.9%)
+ DENX Software Engineering 12 (7.6%)
+ Nobuhiro Iwamatsu 7 (4.5%)
+ Marvell 4 (2.5%)
+ Psyent 4 (2.5%)
+ Analog Devices 2 (1.3%)
+ Dirk Behme 1 (0.6%)
+ Extreme Engineering Solutions 1 (0.6%)
+ Xilinx 1 (0.6%)
+ Linaro 1 (0.6%)
+ Intel 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 84)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 29 (34.5%)
+ Freescale 20 (23.8%)
+ DENX Software Engineering 6 (7.1%)
+ Texas Instruments 3 (3.6%)
+ Samsung 2 (2.4%)
+ Marvell 2 (2.4%)
+ Extreme Engineering Solutions 2 (2.4%)
+ Linaro 2 (2.4%)
+ Renesas Electronics 2 (2.4%)
+ Nobuhiro Iwamatsu 1 (1.2%)
+ Analog Devices 1 (1.2%)
+ Dirk Behme 1 (1.2%)
+ Xilinx 1 (1.2%)
+ MontaVista 1 (1.2%)
+ Graeme Russ 1 (1.2%)
+ Keymile 1 (1.2%)
+ Guntermann & Drunck 1 (1.2%)
+ Google, Inc. 1 (1.2%)
+ CompuLab 1 (1.2%)
+ ST-Ericsson 1 (1.2%)
+ Transmode Systems 1 (1.2%)
+ Wind River 1 (1.2%)
+ Oce Technologies 1 (1.2%)
+ TQ Systems 1 (1.2%)
+ Bluewater Systems 1 (1.2%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2011.06.rst b/doc/develop/statistics/u-boot-stats-v2011.06.rst
new file mode 100644
index 0000000..4edc091
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2011.06.rst
@@ -0,0 +1,601 @@
+:orphan:
+
+Release Statistics for U-Boot v2011.06
+======================================
+
+* Processed 636 csets from 134 developers
+
+* 30 employers found
+
+* A total of 48114 lines added, 36696 removed (delta 11418)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 63 (9.9%)
+ Luca Ceresoli 28 (4.4%)
+ Heiko Schocher 26 (4.1%)
+ Andreas Bießmann 23 (3.6%)
+ Fabio Estevam 23 (3.6%)
+ Kumar Gala 21 (3.3%)
+ Holger Brunck 20 (3.1%)
+ Reinhard Meyer 18 (2.8%)
+ Macpaul Lin 18 (2.8%)
+ Wolfgang Denk 17 (2.7%)
+ Michael Schwingen 17 (2.7%)
+ Timur Tabi 16 (2.5%)
+ Stefano Babic 13 (2.0%)
+ Lei Wen 10 (1.6%)
+ Thomas Chou 9 (1.4%)
+ Dirk Eibach 9 (1.4%)
+ Igor Grinberg 9 (1.4%)
+ Eric Benard 8 (1.3%)
+ Andy Fleming 8 (1.3%)
+ Zhao Chenhui 7 (1.1%)
+ Valentin Longchamp 7 (1.1%)
+ Graeme Russ 7 (1.1%)
+ Aneesh V 6 (0.9%)
+ Minkyu Kang 6 (0.9%)
+ Daniel Schwierzeck 6 (0.9%)
+ Priyanka Jain 6 (0.9%)
+ Grant Likely 6 (0.9%)
+ Poonam Aggrwal 6 (0.9%)
+ Chander Kashyap 5 (0.8%)
+ John Rigby 5 (0.8%)
+ David Müller (ELSOFT AG) 5 (0.8%)
+ Ben Gardiner 5 (0.8%)
+ Joakim Tjernlund 5 (0.8%)
+ Kyle Moffett 5 (0.8%)
+ Jiang Yutang 5 (0.8%)
+ Haiying Wang 5 (0.8%)
+ Jason Liu 4 (0.6%)
+ Clint Adams 4 (0.6%)
+ Mingkai Hu 4 (0.6%)
+ Matt Waddel 4 (0.6%)
+ Kim Phillips 4 (0.6%)
+ Dipen Dudhat 4 (0.6%)
+ Tom Warren 4 (0.6%)
+ Alexander Holler 4 (0.6%)
+ Raffaele Recalcati 4 (0.6%)
+ Jens Scharsig 3 (0.5%)
+ Enric Balletbo i Serra 3 (0.5%)
+ Dirk Behme 3 (0.5%)
+ Jason Kridner 3 (0.5%)
+ Thomas Herzmann 3 (0.5%)
+ Shaohui Xie 3 (0.5%)
+ Daniel Gorsulowski 3 (0.5%)
+ Stefan Roese 3 (0.5%)
+ York Sun 3 (0.5%)
+ Simon Guinot 3 (0.5%)
+ Shinya Kuribayashi 3 (0.5%)
+ Anatolij Gustschin 3 (0.5%)
+ Jerry Huang 3 (0.5%)
+ Po-Yu Chuang 3 (0.5%)
+ Matthew McClintock 3 (0.5%)
+ Roy Zang 3 (0.5%)
+ Alessandro Rubini 3 (0.5%)
+ Loïc Minier 3 (0.5%)
+ Florian Fainelli 3 (0.5%)
+ Li Yang 2 (0.3%)
+ Cliff Cai 2 (0.3%)
+ Ilya Yanok 2 (0.3%)
+ Ryan Mallon 2 (0.3%)
+ Nobuhiro Iwamatsu 2 (0.3%)
+ Albert ARIBAUD 2 (0.3%)
+ Daniel Hobi 2 (0.3%)
+ Scott Wood 2 (0.3%)
+ Shawn Guo 2 (0.3%)
+ ecc 2 (0.3%)
+ Alex Waterman 2 (0.3%)
+ Huber, Andreas 2 (0.3%)
+ Emil Medve 2 (0.3%)
+ Trübenbach, Ralf 2 (0.3%)
+ Koen Kooi 2 (0.3%)
+ Liu Hui-R64343 2 (0.3%)
+ Aaron Williams 2 (0.3%)
+ Richard Retanubun 2 (0.3%)
+ Prabhakar Kushwaha 2 (0.3%)
+ Erik Hansen 2 (0.3%)
+ Sergey Lapin 1 (0.2%)
+ Helmut Raiger 1 (0.2%)
+ Felix Radensky 1 (0.2%)
+ Harald Krapfenbauer 1 (0.2%)
+ Haojian Zhuang 1 (0.2%)
+ Luuk Paulussen 1 (0.2%)
+ Patrick Sestier 1 (0.2%)
+ Marek Vasut 1 (0.2%)
+ Thomas Abraham 1 (0.2%)
+ Michael Brandt 1 (0.2%)
+ Jaehoon Chung 1 (0.2%)
+ seedshope 1 (0.2%)
+ Michael Walle 1 (0.2%)
+ Sughosh Ganu 1 (0.2%)
+ Detlev Zundel 1 (0.2%)
+ Michael Jones 1 (0.2%)
+ François Revol 1 (0.2%)
+ Michal Simek 1 (0.2%)
+ Che-liang Chiou 1 (0.2%)
+ Steven A. Falco 1 (0.2%)
+ Stefan Bigler 1 (0.2%)
+ Thomas Reufer 1 (0.2%)
+ Lei Xu 1 (0.2%)
+ Ramneek Mehresh 1 (0.2%)
+ Gray Remlin 1 (0.2%)
+ thomas.langer@lantiq.com 1 (0.2%)
+ Rogan Dawes 1 (0.2%)
+ Matthias Weisser 1 (0.2%)
+ Srinath 1 (0.2%)
+ Steve Kipisz 1 (0.2%)
+ Ricardo Ribalda 1 (0.2%)
+ Jon Povey 1 (0.2%)
+ Nick Thompson 1 (0.2%)
+ Simon Glass 1 (0.2%)
+ Peter Tyser 1 (0.2%)
+ James Kosin 1 (0.2%)
+ Frans Meulenbroeks 1 (0.2%)
+ Wolfgang Wegner 1 (0.2%)
+ Alagu Sankar 1 (0.2%)
+ Remy Bohmer 1 (0.2%)
+ Catalin Radu 1 (0.2%)
+ Fabian Cenedese 1 (0.2%)
+ Sonic Zhang 1 (0.2%)
+ Chong Huang 1 (0.2%)
+ Andreas Schallenberg 1 (0.2%)
+ Mario Schuknecht 1 (0.2%)
+ Laurentiu TUDOR 1 (0.2%)
+ bhaskar upadhaya 1 (0.2%)
+ Pankaj Chauhan 1 (0.2%)
+ michael 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 12342 (18.3%)
+ Wolfgang Denk 8449 (12.5%)
+ Andy Fleming 6135 (9.1%)
+ Heiko Schocher 3110 (4.6%)
+ Michael Schwingen 2329 (3.4%)
+ John Rigby 2243 (3.3%)
+ Luca Ceresoli 1904 (2.8%)
+ Holger Brunck 1884 (2.8%)
+ Daniel Schwierzeck 1864 (2.8%)
+ Chander Kashyap 1672 (2.5%)
+ Kumar Gala 1520 (2.2%)
+ Macpaul Lin 1506 (2.2%)
+ Eric Benard 1386 (2.1%)
+ Mingkai Hu 1262 (1.9%)
+ Dipen Dudhat 1171 (1.7%)
+ Reinhard Meyer 1142 (1.7%)
+ Timur Tabi 1049 (1.6%)
+ Srinath 891 (1.3%)
+ Tom Warren 875 (1.3%)
+ Fabio Estevam 872 (1.3%)
+ Michael Brandt 808 (1.2%)
+ Jason Liu 802 (1.2%)
+ Thomas Chou 770 (1.1%)
+ Matt Waddel 670 (1.0%)
+ Andreas Bießmann 636 (0.9%)
+ David Müller (ELSOFT AG) 625 (0.9%)
+ Lei Wen 553 (0.8%)
+ Scott Wood 547 (0.8%)
+ Matthias Weisser 443 (0.7%)
+ Ryan Mallon 420 (0.6%)
+ Graeme Russ 396 (0.6%)
+ Alessandro Rubini 378 (0.6%)
+ Andreas Schallenberg 358 (0.5%)
+ Joakim Tjernlund 323 (0.5%)
+ Valentin Longchamp 299 (0.4%)
+ Alexander Holler 285 (0.4%)
+ Jason Kridner 268 (0.4%)
+ Daniel Gorsulowski 250 (0.4%)
+ Florian Fainelli 226 (0.3%)
+ Jens Scharsig 210 (0.3%)
+ Shinya Kuribayashi 209 (0.3%)
+ Stefano Babic 204 (0.3%)
+ Haiying Wang 195 (0.3%)
+ Thomas Herzmann 193 (0.3%)
+ Chong Huang 178 (0.3%)
+ Igor Grinberg 175 (0.3%)
+ Jerry Huang 169 (0.2%)
+ Roy Zang 169 (0.2%)
+ Jiang Yutang 163 (0.2%)
+ Emil Medve 159 (0.2%)
+ Grant Likely 150 (0.2%)
+ Dirk Eibach 147 (0.2%)
+ Raffaele Recalcati 143 (0.2%)
+ Thomas Reufer 140 (0.2%)
+ Poonam Aggrwal 123 (0.2%)
+ Kyle Moffett 122 (0.2%)
+ Steven A. Falco 114 (0.2%)
+ Richard Retanubun 111 (0.2%)
+ Prabhakar Kushwaha 108 (0.2%)
+ Huber, Andreas 107 (0.2%)
+ Enric Balletbo i Serra 106 (0.2%)
+ Kim Phillips 101 (0.1%)
+ Shaohui Xie 97 (0.1%)
+ Sergey Lapin 97 (0.1%)
+ Priyanka Jain 89 (0.1%)
+ Minkyu Kang 70 (0.1%)
+ Michael Jones 63 (0.1%)
+ Clint Adams 62 (0.1%)
+ Koen Kooi 61 (0.1%)
+ Remy Bohmer 56 (0.1%)
+ Matthew McClintock 49 (0.1%)
+ Ilya Yanok 48 (0.1%)
+ Erik Hansen 48 (0.1%)
+ Ben Gardiner 45 (0.1%)
+ Jaehoon Chung 45 (0.1%)
+ Zhao Chenhui 38 (0.1%)
+ Li Yang 35 (0.1%)
+ Liu Hui-R64343 31 (0.0%)
+ Nick Thompson 31 (0.0%)
+ Aneesh V 29 (0.0%)
+ thomas.langer@lantiq.com 27 (0.0%)
+ Po-Yu Chuang 26 (0.0%)
+ Anatolij Gustschin 25 (0.0%)
+ Stefan Roese 24 (0.0%)
+ Albert ARIBAUD 22 (0.0%)
+ York Sun 18 (0.0%)
+ Harald Krapfenbauer 18 (0.0%)
+ Steve Kipisz 18 (0.0%)
+ Ramneek Mehresh 16 (0.0%)
+ Laurentiu TUDOR 16 (0.0%)
+ Alex Waterman 14 (0.0%)
+ Loïc Minier 13 (0.0%)
+ Detlev Zundel 12 (0.0%)
+ Stefan Bigler 12 (0.0%)
+ Simon Guinot 11 (0.0%)
+ Aaron Williams 11 (0.0%)
+ Wolfgang Wegner 11 (0.0%)
+ Catalin Radu 10 (0.0%)
+ Michael Walle 9 (0.0%)
+ bhaskar upadhaya 9 (0.0%)
+ Peter Tyser 8 (0.0%)
+ Daniel Hobi 7 (0.0%)
+ Felix Radensky 7 (0.0%)
+ Michal Simek 7 (0.0%)
+ Jon Povey 7 (0.0%)
+ Fabian Cenedese 7 (0.0%)
+ Cliff Cai 6 (0.0%)
+ Shawn Guo 6 (0.0%)
+ ecc 6 (0.0%)
+ Ricardo Ribalda 5 (0.0%)
+ Sonic Zhang 5 (0.0%)
+ Marek Vasut 4 (0.0%)
+ Lei Xu 4 (0.0%)
+ James Kosin 4 (0.0%)
+ Dirk Behme 3 (0.0%)
+ Trübenbach, Ralf 3 (0.0%)
+ Patrick Sestier 3 (0.0%)
+ François Revol 3 (0.0%)
+ Frans Meulenbroeks 3 (0.0%)
+ Alagu Sankar 3 (0.0%)
+ Pankaj Chauhan 3 (0.0%)
+ Nobuhiro Iwamatsu 2 (0.0%)
+ Luuk Paulussen 2 (0.0%)
+ Thomas Abraham 2 (0.0%)
+ seedshope 2 (0.0%)
+ Sughosh Ganu 2 (0.0%)
+ Che-liang Chiou 2 (0.0%)
+ Gray Remlin 2 (0.0%)
+ Rogan Dawes 2 (0.0%)
+ Mario Schuknecht 2 (0.0%)
+ michael 2 (0.0%)
+ Helmut Raiger 1 (0.0%)
+ Haojian Zhuang 1 (0.0%)
+ Simon Glass 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 7936 (21.6%)
+ Daniel Schwierzeck 1500 (4.1%)
+ Eric Benard 895 (2.4%)
+ Holger Brunck 545 (1.5%)
+ Scott Wood 503 (1.4%)
+ Kumar Gala 496 (1.4%)
+ David Müller (ELSOFT AG) 377 (1.0%)
+ Alessandro Rubini 363 (1.0%)
+ Andreas Bießmann 272 (0.7%)
+ Reinhard Meyer 159 (0.4%)
+ Shinya Kuribayashi 115 (0.3%)
+ Graeme Russ 90 (0.2%)
+ Michael Jones 63 (0.2%)
+ Nick Thompson 20 (0.1%)
+ Liu Hui-R64343 18 (0.0%)
+ Erik Hansen 16 (0.0%)
+ thomas.langer@lantiq.com 15 (0.0%)
+ Stefan Roese 14 (0.0%)
+ Po-Yu Chuang 9 (0.0%)
+ Stefano Babic 8 (0.0%)
+ Fabian Cenedese 7 (0.0%)
+ Shawn Guo 6 (0.0%)
+ Albert ARIBAUD 4 (0.0%)
+ Daniel Hobi 4 (0.0%)
+ Felix Radensky 4 (0.0%)
+ Harald Krapfenbauer 3 (0.0%)
+ Loïc Minier 2 (0.0%)
+ Ben Gardiner 1 (0.0%)
+ Jon Povey 1 (0.0%)
+ Marek Vasut 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 281)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kumar Gala 80 (28.5%)
+ Sandeep Paulraj 32 (11.4%)
+ Valentin Longchamp 23 (8.2%)
+ Holger Brunck 19 (6.8%)
+ Stefan Roese 15 (5.3%)
+ Mike Frysinger 13 (4.6%)
+ Andy Fleming 12 (4.3%)
+ Minkyu Kang 11 (3.9%)
+ Scott Wood 8 (2.8%)
+ Shinya Kuribayashi 6 (2.1%)
+ Zhao Chenhui 4 (1.4%)
+ Poonam Aggrwal 4 (1.4%)
+ Jason Kridner 4 (1.4%)
+ Heiko Schocher 4 (1.4%)
+ Lukas Roggli 3 (1.1%)
+ Timur Tabi 3 (1.1%)
+ Kyungmin Park 2 (0.7%)
+ Albert Aribaud 2 (0.7%)
+ David Woodhouse 2 (0.7%)
+ Jin Qing 2 (0.7%)
+ Li Yang 2 (0.7%)
+ Shaohui Xie 2 (0.7%)
+ Roy Zang 2 (0.7%)
+ Mingkai Hu 2 (0.7%)
+ Dipen Dudhat 2 (0.7%)
+ Wolfgang Denk 1 (0.4%)
+ Loïc Minier 1 (0.4%)
+ Mathieu Poirier 1 (0.4%)
+ Tushar Behera 1 (0.4%)
+ Scott McNutt 1 (0.4%)
+ Rabin Vincent 1 (0.4%)
+ Luca Haab 1 (0.4%)
+ Clive Stubbings 1 (0.4%)
+ Ricardo Ribalda Delgado 1 (0.4%)
+ Brian Norris 1 (0.4%)
+ Chunhe Lan 1 (0.4%)
+ Haitao Zhang 1 (0.4%)
+ Steffen Sledz 1 (0.4%)
+ Sandeep Gopalpet 1 (0.4%)
+ Michael Trimarchi 1 (0.4%)
+ Stefan Bigler 1 (0.4%)
+ Anatolij Gustschin 1 (0.4%)
+ Priyanka Jain 1 (0.4%)
+ Thomas Reufer 1 (0.4%)
+ Jerry Huang 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ John Rigby 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (10.0%)
+ Anatolij Gustschin 1 (10.0%)
+ Fabio Estevam 1 (10.0%)
+ Andreas Bießmann 1 (10.0%)
+ Graeme Russ 1 (10.0%)
+ Stefano Babic 1 (10.0%)
+ Felix Radensky 1 (10.0%)
+ Magnus Lilja 1 (10.0%)
+ Andre Schwarz 1 (10.0%)
+ Sughosh Ganu 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 2 (20.0%)
+ Kim Phillips 2 (20.0%)
+ Anatolij Gustschin 1 (10.0%)
+ Stefano Babic 1 (10.0%)
+ Stefan Roese 1 (10.0%)
+ Scott Wood 1 (10.0%)
+ Priyanka Jain 1 (10.0%)
+ Jens Scharsig 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andre Schwarz 1 (20.0%)
+ Kumar Gala 1 (20.0%)
+ Wolfgang Denk 1 (20.0%)
+ Michael Weiss 1 (20.0%)
+ Jianxi Fu 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 2 (40.0%)
+ Kim Phillips 1 (20.0%)
+ Anatolij Gustschin 1 (20.0%)
+ Peter Tyser 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 232 (36.5%)
+ Freescale 127 (20.0%)
+ Analog Devices 66 (10.4%)
+ DENX Software Engineering 64 (10.1%)
+ Keymile 34 (5.3%)
+ Linaro 30 (4.7%)
+ Texas Instruments 10 (1.6%)
+ CompuLab 9 (1.4%)
+ Guntermann & Drunck 9 (1.4%)
+ Samsung 7 (1.1%)
+ Graeme Russ 7 (1.1%)
+ Boeing 5 (0.8%)
+ Transmode Systems 5 (0.8%)
+ Marvell 4 (0.6%)
+ ESD Electronics 3 (0.5%)
+ Universita di Pavia 3 (0.5%)
+ Dirk Behme 3 (0.5%)
+ Google, Inc. 2 (0.3%)
+ Bluewater Systems 2 (0.3%)
+ EmCraft Systems 2 (0.3%)
+ RuggedCom 2 (0.3%)
+ Nobuhiro Iwamatsu 2 (0.3%)
+ General Electric 1 (0.2%)
+ Harris Corporation 1 (0.2%)
+ Matrix Vision 1 (0.2%)
+ Mistral 1 (0.2%)
+ ST-Ericsson 1 (0.2%)
+ Extreme Engineering Solutions 1 (0.2%)
+ Xilinx 1 (0.2%)
+ Oce Technologies 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 16339 (24.2%)
+ Freescale 13914 (20.6%)
+ Analog Devices 12353 (18.3%)
+ DENX Software Engineering 11828 (17.5%)
+ Linaro 5558 (8.2%)
+ Keymile 2635 (3.9%)
+ Mistral 891 (1.3%)
+ ST-Ericsson 808 (1.2%)
+ Bluewater Systems 420 (0.6%)
+ Graeme Russ 396 (0.6%)
+ Universita di Pavia 378 (0.6%)
+ Transmode Systems 323 (0.5%)
+ Texas Instruments 315 (0.5%)
+ ESD Electronics 250 (0.4%)
+ Marvell 189 (0.3%)
+ CompuLab 175 (0.3%)
+ Guntermann & Drunck 147 (0.2%)
+ Boeing 122 (0.2%)
+ Samsung 115 (0.2%)
+ Harris Corporation 114 (0.2%)
+ RuggedCom 111 (0.2%)
+ Matrix Vision 63 (0.1%)
+ Oce Technologies 56 (0.1%)
+ EmCraft Systems 48 (0.1%)
+ General Electric 31 (0.0%)
+ Extreme Engineering Solutions 8 (0.0%)
+ Xilinx 7 (0.0%)
+ Dirk Behme 3 (0.0%)
+ Google, Inc. 3 (0.0%)
+ Nobuhiro Iwamatsu 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 281)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 128 (45.6%)
+ Keymile 48 (17.1%)
+ Texas Instruments 36 (12.8%)
+ DENX Software Engineering 21 (7.5%)
+ Analog Devices 13 (4.6%)
+ Samsung 13 (4.6%)
+ (Unknown) 12 (4.3%)
+ Linaro 4 (1.4%)
+ Intel 2 (0.7%)
+ ST-Ericsson 1 (0.4%)
+ Amarula Solutions 1 (0.4%)
+ Psyent 1 (0.4%)
+ Xentech Solutions 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 136)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 57 (41.9%)
+ Freescale 27 (19.9%)
+ Linaro 8 (5.9%)
+ DENX Software Engineering 7 (5.1%)
+ Keymile 6 (4.4%)
+ Texas Instruments 3 (2.2%)
+ Analog Devices 3 (2.2%)
+ Samsung 2 (1.5%)
+ Google, Inc. 2 (1.5%)
+ ST-Ericsson 1 (0.7%)
+ Mistral 1 (0.7%)
+ Bluewater Systems 1 (0.7%)
+ Graeme Russ 1 (0.7%)
+ Universita di Pavia 1 (0.7%)
+ Transmode Systems 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ Marvell 1 (0.7%)
+ CompuLab 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Boeing 1 (0.7%)
+ Harris Corporation 1 (0.7%)
+ RuggedCom 1 (0.7%)
+ Matrix Vision 1 (0.7%)
+ Oce Technologies 1 (0.7%)
+ EmCraft Systems 1 (0.7%)
+ General Electric 1 (0.7%)
+ Extreme Engineering Solutions 1 (0.7%)
+ Xilinx 1 (0.7%)
+ Dirk Behme 1 (0.7%)
+ Nobuhiro Iwamatsu 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2011.09.rst b/doc/develop/statistics/u-boot-stats-v2011.09.rst
new file mode 100644
index 0000000..c135a48
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2011.09.rst
@@ -0,0 +1,561 @@
+:orphan:
+
+Release Statistics for U-Boot v2011.09
+======================================
+
+* Processed 645 csets from 120 developers
+
+* 30 employers found
+
+* A total of 37905 lines added, 45961 removed (delta -8056)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 76 (11.8%)
+ Mike Frysinger 47 (7.3%)
+ Aneesh V 45 (7.0%)
+ Stefano Babic 32 (5.0%)
+ Andreas Bießmann 19 (2.9%)
+ Holger Brunck 16 (2.5%)
+ Kumar Gala 15 (2.3%)
+ Jason Kridner 13 (2.0%)
+ Matthias Weisser 12 (1.9%)
+ Nagabhushana Netagunte 11 (1.7%)
+ York Sun 11 (1.7%)
+ Linus Walleij 10 (1.6%)
+ Fabio Estevam 10 (1.6%)
+ Michael Jones 10 (1.6%)
+ Simon Glass 10 (1.6%)
+ Heiko Schocher 10 (1.6%)
+ Daniel Schwierzeck 10 (1.6%)
+ Marek Vasut 9 (1.4%)
+ Jason Jin 9 (1.4%)
+ Tom Rini 9 (1.4%)
+ Timur Tabi 9 (1.4%)
+ Koen Kooi 8 (1.2%)
+ Sanjeev Premi 7 (1.1%)
+ Laurence Withers 7 (1.1%)
+ Graeme Russ 7 (1.1%)
+ Joel A Fernandes 6 (0.9%)
+ Greg Ungerer 6 (0.9%)
+ Chander Kashyap 6 (0.9%)
+ Anatolij Gustschin 6 (0.9%)
+ Xu, Hong 6 (0.9%)
+ Dirk Behme 5 (0.8%)
+ Vaibhav Hiremath 5 (0.8%)
+ Łukasz Majewski 5 (0.8%)
+ Igor Grinberg 5 (0.8%)
+ Phil Edworthy 5 (0.8%)
+ Matthew McClintock 5 (0.8%)
+ Ramneek Mehresh 5 (0.8%)
+ Ben Gardiner 5 (0.8%)
+ Anton Staaf 4 (0.6%)
+ Lei Wen 4 (0.6%)
+ Thomas Petazzoni 4 (0.6%)
+ Reinhard Meyer 4 (0.6%)
+ Asen Dimov 4 (0.6%)
+ Yoshihiro Shimoda 4 (0.6%)
+ Mingkai Hu 4 (0.6%)
+ Jens Scharsig 4 (0.6%)
+ Rob Herring 4 (0.6%)
+ Tom Warren 4 (0.6%)
+ Andre Schwarz 4 (0.6%)
+ Albert ARIBAUD 3 (0.5%)
+ Vladimir Zapolskiy 3 (0.5%)
+ Valentin Longchamp 3 (0.5%)
+ Zhao Chenhui 3 (0.5%)
+ Macpaul Lin 3 (0.5%)
+ Nobuhiro Iwamatsu 3 (0.5%)
+ Shaohui Xie 3 (0.5%)
+ Jeroen Hofstee 3 (0.5%)
+ Becky Bruce 3 (0.5%)
+ David Müller (ELSOFT AG) 3 (0.5%)
+ Stefan Roese 2 (0.3%)
+ Sandeep Paulraj 2 (0.3%)
+ Sudhakar Rajashekhara 2 (0.3%)
+ Helmut Raiger 2 (0.3%)
+ David Jander 2 (0.3%)
+ Jason Cooper 2 (0.3%)
+ Ajay Bhargav 2 (0.3%)
+ Po-Yu Chuang 2 (0.3%)
+ John Rigby 2 (0.3%)
+ Simon Guinot 2 (0.3%)
+ Andy Fleming 2 (0.3%)
+ Stefan Bigler 2 (0.3%)
+ Andreas Pretzsch 2 (0.3%)
+ Jason Hobbs 2 (0.3%)
+ Torsten Koschorrek 2 (0.3%)
+ David Gibson 2 (0.3%)
+ Jana Rapava 2 (0.3%)
+ Harald Krapfenbauer 2 (0.3%)
+ Vadim Bendebury 1 (0.2%)
+ Peter Korsgaard 1 (0.2%)
+ Weirich, Bernhard 1 (0.2%)
+ Howard D. Gray 1 (0.2%)
+ Bastian Ruppert 1 (0.2%)
+ Che-liang Chiou 1 (0.2%)
+ Diana CRACIUN 1 (0.2%)
+ Michal Simek 1 (0.2%)
+ James Le Cuirot 1 (0.2%)
+ Bradley Bolen 1 (0.2%)
+ Christian Spielberger 1 (0.2%)
+ Eric Benard 1 (0.2%)
+ Syed Mohammed Khasim 1 (0.2%)
+ Steve Sakoman 1 (0.2%)
+ Bob Feretich 1 (0.2%)
+ Manjunathappa, Prakash 1 (0.2%)
+ Jason Liu 1 (0.2%)
+ Matthias Fuchs 1 (0.2%)
+ Yao Cheng 1 (0.2%)
+ Shiraz Hashim 1 (0.2%)
+ Thomas Abraham 1 (0.2%)
+ Christopher Harvey 1 (0.2%)
+ Sriramakrishnan 1 (0.2%)
+ seedshope 1 (0.2%)
+ Bhaskar Upadhaya 1 (0.2%)
+ Stephen George 1 (0.2%)
+ Niklaus Giger 1 (0.2%)
+ Mike Williams 1 (0.2%)
+ Horst Kronstorfer 1 (0.2%)
+ Thomas Herzmann 1 (0.2%)
+ Sergei Shtylyov 1 (0.2%)
+ Luuk Paulussen 1 (0.2%)
+ James Kosin 1 (0.2%)
+ Yegor Yefremov 1 (0.2%)
+ Chan-Taek Park 1 (0.2%)
+ David A. Long 1 (0.2%)
+ elen.song 1 (0.2%)
+ Gerald Van Baren 1 (0.2%)
+ Roy Zang 1 (0.2%)
+ Felix Radensky 1 (0.2%)
+ Bill Cook 1 (0.2%)
+ Ira W. Snyder 1 (0.2%)
+ Alex Waterman 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 26582 (35.2%)
+ Aneesh V 7911 (10.5%)
+ Andreas Bießmann 4270 (5.7%)
+ Niklaus Giger 3112 (4.1%)
+ Simon Glass 2053 (2.7%)
+ Mike Frysinger 1923 (2.5%)
+ Chander Kashyap 1905 (2.5%)
+ Mingkai Hu 1698 (2.2%)
+ Andre Schwarz 1525 (2.0%)
+ Phil Edworthy 1390 (1.8%)
+ Macpaul Lin 1360 (1.8%)
+ Tom Warren 1309 (1.7%)
+ Roy Zang 1303 (1.7%)
+ David Müller (ELSOFT AG) 1110 (1.5%)
+ Albert ARIBAUD 1035 (1.4%)
+ Lei Wen 947 (1.3%)
+ Graeme Russ 943 (1.2%)
+ Matthias Weisser 926 (1.2%)
+ Tom Rini 905 (1.2%)
+ Holger Brunck 883 (1.2%)
+ Yoshihiro Shimoda 880 (1.2%)
+ Fabio Estevam 866 (1.1%)
+ Heiko Schocher 809 (1.1%)
+ Jason Jin 758 (1.0%)
+ Xu, Hong 719 (1.0%)
+ Stefano Babic 668 (0.9%)
+ Simon Guinot 608 (0.8%)
+ Thomas Petazzoni 553 (0.7%)
+ Timur Tabi 437 (0.6%)
+ Laurence Withers 378 (0.5%)
+ Linus Walleij 356 (0.5%)
+ Daniel Schwierzeck 339 (0.4%)
+ Jason Kridner 332 (0.4%)
+ John Rigby 325 (0.4%)
+ Syed Mohammed Khasim 307 (0.4%)
+ Anatolij Gustschin 238 (0.3%)
+ David Gibson 227 (0.3%)
+ Sanjeev Premi 225 (0.3%)
+ Ajay Bhargav 213 (0.3%)
+ Jason Cooper 192 (0.3%)
+ Nagabhushana Netagunte 172 (0.2%)
+ Michael Jones 164 (0.2%)
+ Kumar Gala 155 (0.2%)
+ Łukasz Majewski 154 (0.2%)
+ York Sun 152 (0.2%)
+ Ramneek Mehresh 151 (0.2%)
+ Matthias Fuchs 144 (0.2%)
+ Asen Dimov 137 (0.2%)
+ Valentin Longchamp 128 (0.2%)
+ Harald Krapfenbauer 121 (0.2%)
+ Anton Staaf 83 (0.1%)
+ Ben Gardiner 81 (0.1%)
+ Joel A Fernandes 80 (0.1%)
+ Rob Herring 78 (0.1%)
+ Matthew McClintock 66 (0.1%)
+ David Jander 65 (0.1%)
+ Greg Ungerer 59 (0.1%)
+ Andreas Pretzsch 58 (0.1%)
+ David A. Long 58 (0.1%)
+ Mike Williams 57 (0.1%)
+ Vaibhav Hiremath 51 (0.1%)
+ Becky Bruce 47 (0.1%)
+ Alex Waterman 45 (0.1%)
+ Gerald Van Baren 41 (0.1%)
+ Igor Grinberg 36 (0.0%)
+ Shaohui Xie 36 (0.0%)
+ Koen Kooi 34 (0.0%)
+ Helmut Raiger 32 (0.0%)
+ Torsten Koschorrek 28 (0.0%)
+ Andy Fleming 26 (0.0%)
+ Sriramakrishnan 26 (0.0%)
+ Dirk Behme 25 (0.0%)
+ Sudhakar Rajashekhara 23 (0.0%)
+ Christopher Harvey 23 (0.0%)
+ Reinhard Meyer 22 (0.0%)
+ Howard D. Gray 22 (0.0%)
+ Po-Yu Chuang 20 (0.0%)
+ Shiraz Hashim 19 (0.0%)
+ Stephen George 19 (0.0%)
+ Zhao Chenhui 15 (0.0%)
+ Stefan Bigler 15 (0.0%)
+ Luuk Paulussen 15 (0.0%)
+ Stefan Roese 14 (0.0%)
+ Diana CRACIUN 14 (0.0%)
+ Jason Liu 13 (0.0%)
+ Jason Hobbs 12 (0.0%)
+ James Kosin 12 (0.0%)
+ elen.song 12 (0.0%)
+ Marek Vasut 10 (0.0%)
+ Sergei Shtylyov 10 (0.0%)
+ Christian Spielberger 9 (0.0%)
+ Vladimir Zapolskiy 8 (0.0%)
+ Che-liang Chiou 8 (0.0%)
+ Michal Simek 8 (0.0%)
+ James Le Cuirot 8 (0.0%)
+ seedshope 8 (0.0%)
+ Nobuhiro Iwamatsu 7 (0.0%)
+ Horst Kronstorfer 7 (0.0%)
+ Bob Feretich 6 (0.0%)
+ Chan-Taek Park 6 (0.0%)
+ Jens Scharsig 5 (0.0%)
+ Bastian Ruppert 5 (0.0%)
+ Jeroen Hofstee 4 (0.0%)
+ Steve Sakoman 4 (0.0%)
+ Yao Cheng 4 (0.0%)
+ Bill Cook 4 (0.0%)
+ Sandeep Paulraj 3 (0.0%)
+ Jana Rapava 3 (0.0%)
+ Thomas Abraham 3 (0.0%)
+ Bhaskar Upadhaya 3 (0.0%)
+ Bradley Bolen 2 (0.0%)
+ Thomas Herzmann 2 (0.0%)
+ Ira W. Snyder 2 (0.0%)
+ Vadim Bendebury 1 (0.0%)
+ Peter Korsgaard 1 (0.0%)
+ Weirich, Bernhard 1 (0.0%)
+ Eric Benard 1 (0.0%)
+ Manjunathappa, Prakash 1 (0.0%)
+ Yegor Yefremov 1 (0.0%)
+ Felix Radensky 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 25412 (55.3%)
+ Niklaus Giger 3112 (6.8%)
+ Andreas Bießmann 2797 (6.1%)
+ Albert ARIBAUD 813 (1.8%)
+ Tom Rini 722 (1.6%)
+ Graeme Russ 636 (1.4%)
+ Jason Jin 532 (1.2%)
+ David Müller (ELSOFT AG) 409 (0.9%)
+ Linus Walleij 284 (0.6%)
+ Holger Brunck 247 (0.5%)
+ Thomas Petazzoni 101 (0.2%)
+ Xu, Hong 49 (0.1%)
+ Christopher Harvey 23 (0.1%)
+ Dirk Behme 18 (0.0%)
+ Jason Liu 13 (0.0%)
+ Torsten Koschorrek 11 (0.0%)
+ seedshope 8 (0.0%)
+ Sergei Shtylyov 7 (0.0%)
+ Diana CRACIUN 5 (0.0%)
+ Michael Jones 4 (0.0%)
+ Asen Dimov 4 (0.0%)
+ Jason Hobbs 4 (0.0%)
+ Steve Sakoman 4 (0.0%)
+ Zhao Chenhui 2 (0.0%)
+ Vladimir Zapolskiy 2 (0.0%)
+ Anton Staaf 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 295)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Sandeep Paulraj 101 (34.2%)
+ Kumar Gala 39 (13.2%)
+ Joel A Fernandes 21 (7.1%)
+ Valentin Longchamp 13 (4.4%)
+ Minkyu Kang 10 (3.4%)
+ Koen Kooi 10 (3.4%)
+ Reinhard Meyer 9 (3.1%)
+ Kim Phillips 8 (2.7%)
+ Scott Wood 7 (2.4%)
+ Nobuhiro Iwamatsu 6 (2.0%)
+ Sudhakar Rajashekhara 6 (2.0%)
+ Aneesh V 6 (2.0%)
+ Shinya Kuribayashi 5 (1.7%)
+ Holger Brunck 4 (1.4%)
+ Kyungmin Park 4 (1.4%)
+ Mike Frysinger 4 (1.4%)
+ Wolfgang Denk 3 (1.0%)
+ Stefan Roese 3 (1.0%)
+ Sanjeev Premi 3 (1.0%)
+ Nagabhushana Netagunte 3 (1.0%)
+ Jason Kridner 3 (1.0%)
+ TsiChung Liew 2 (0.7%)
+ Andy Fleming 2 (0.7%)
+ Gerald Van Baren 2 (0.7%)
+ Andreas Bießmann 1 (0.3%)
+ Michael Jones 1 (0.3%)
+ Sebastien Jan 1 (0.3%)
+ David Anders 1 (0.3%)
+ James Yang 1 (0.3%)
+ Sugumar Natarajan 1 (0.3%)
+ Sekhar Nori 1 (0.3%)
+ Ranjith Lohithakshan 1 (0.3%)
+ Lily Zhang 1 (0.3%)
+ Daniel Gorsulowski 1 (0.3%)
+ Rod Boyce 1 (0.3%)
+ Jiang Yutang 1 (0.3%)
+ Prafulla Wadaskar 1 (0.3%)
+ Werner Pfister 1 (0.3%)
+ Haiying Wang 1 (0.3%)
+ Chunhe Lan 1 (0.3%)
+ Lei Xu 1 (0.3%)
+ Scott McNutt 1 (0.3%)
+ York Sun 1 (0.3%)
+ Timur Tabi 1 (0.3%)
+ Roy Zang 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Vipin Kumar 2 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Eric Benard 4 (30.8%)
+ Kumar Gala 1 (7.7%)
+ Minkyu Kang 1 (7.7%)
+ Jens Scharsig 1 (7.7%)
+ Thomas Chou 1 (7.7%)
+ Michal Simek 1 (7.7%)
+ Igor Grinberg 1 (7.7%)
+ Heiko Schocher 1 (7.7%)
+ Fabio Estevam 1 (7.7%)
+ Lei Wen 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 7 (53.8%)
+ Mike Frysinger 2 (15.4%)
+ Andreas Bießmann 1 (7.7%)
+ Peter Korsgaard 1 (7.7%)
+ Marek Vasut 1 (7.7%)
+ John Rigby 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Graeme Russ 1 (50.0%)
+ Ed Swarthout 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (50.0%)
+ Andy Fleming 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 145 (22.5%)
+ DENX Software Engineering 135 (20.9%)
+ Texas Instruments 90 (14.0%)
+ Freescale 80 (12.4%)
+ Analog Devices 47 (7.3%)
+ Linaro 20 (3.1%)
+ Keymile 18 (2.8%)
+ Google, Inc. 16 (2.5%)
+ Matrix Vision 13 (2.0%)
+ Renesas Electronics 10 (1.6%)
+ Konsulko Group 9 (1.4%)
+ Atmel 7 (1.1%)
+ Graeme Russ 7 (1.1%)
+ Calxeda 6 (0.9%)
+ Samsung 6 (0.9%)
+ CompuLab 5 (0.8%)
+ Dirk Behme 5 (0.8%)
+ BuS Elektronik 4 (0.6%)
+ Free Electrons 4 (0.6%)
+ Marvell 4 (0.6%)
+ Ronetix 4 (0.6%)
+ Nobuhiro Iwamatsu 2 (0.3%)
+ bct electronic GmbH 1 (0.2%)
+ ESD Electronics 1 (0.2%)
+ MontaVista 1 (0.2%)
+ OVRO 1 (0.2%)
+ Sakoman Inc. 1 (0.2%)
+ ST Microelectronics 1 (0.2%)
+ Xilinx 1 (0.2%)
+ Barco 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 28321 (37.5%)
+ (Unknown) 16166 (21.4%)
+ Texas Instruments 9060 (12.0%)
+ Freescale 5729 (7.6%)
+ Linaro 2657 (3.5%)
+ Renesas Electronics 2275 (3.0%)
+ Google, Inc. 2145 (2.8%)
+ Analog Devices 1923 (2.5%)
+ Matrix Vision 1580 (2.1%)
+ Marvell 947 (1.3%)
+ Graeme Russ 943 (1.2%)
+ Keymile 942 (1.2%)
+ Konsulko Group 905 (1.2%)
+ Atmel 731 (1.0%)
+ Free Electrons 553 (0.7%)
+ Samsung 157 (0.2%)
+ ESD Electronics 144 (0.2%)
+ Ronetix 137 (0.2%)
+ Calxeda 90 (0.1%)
+ CompuLab 36 (0.0%)
+ Dirk Behme 25 (0.0%)
+ ST Microelectronics 19 (0.0%)
+ MontaVista 10 (0.0%)
+ bct electronic GmbH 9 (0.0%)
+ Xilinx 8 (0.0%)
+ BuS Elektronik 5 (0.0%)
+ Sakoman Inc. 4 (0.0%)
+ Nobuhiro Iwamatsu 2 (0.0%)
+ OVRO 2 (0.0%)
+ Barco 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 295)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Texas Instruments 128 (43.4%)
+ Freescale 65 (22.0%)
+ (Unknown) 49 (16.6%)
+ Keymile 17 (5.8%)
+ Samsung 14 (4.7%)
+ DENX Software Engineering 6 (2.0%)
+ Nobuhiro Iwamatsu 6 (2.0%)
+ Analog Devices 4 (1.4%)
+ Custom IDEAS 2 (0.7%)
+ Matrix Vision 1 (0.3%)
+ Marvell 1 (0.3%)
+ ESD Electronics 1 (0.3%)
+ Psyent 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 125)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 48 (38.4%)
+ Freescale 16 (12.8%)
+ Texas Instruments 12 (9.6%)
+ DENX Software Engineering 6 (4.8%)
+ Linaro 5 (4.0%)
+ Keymile 4 (3.2%)
+ Google, Inc. 4 (3.2%)
+ Matrix Vision 3 (2.4%)
+ Renesas Electronics 3 (2.4%)
+ Samsung 2 (1.6%)
+ Atmel 2 (1.6%)
+ Calxeda 2 (1.6%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Analog Devices 1 (0.8%)
+ Marvell 1 (0.8%)
+ ESD Electronics 1 (0.8%)
+ Graeme Russ 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Free Electrons 1 (0.8%)
+ Ronetix 1 (0.8%)
+ CompuLab 1 (0.8%)
+ Dirk Behme 1 (0.8%)
+ ST Microelectronics 1 (0.8%)
+ MontaVista 1 (0.8%)
+ bct electronic GmbH 1 (0.8%)
+ Xilinx 1 (0.8%)
+ BuS Elektronik 1 (0.8%)
+ Sakoman Inc. 1 (0.8%)
+ OVRO 1 (0.8%)
+ Barco 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2011.12.rst b/doc/develop/statistics/u-boot-stats-v2011.12.rst
new file mode 100644
index 0000000..cb9244f
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2011.12.rst
@@ -0,0 +1,706 @@
+:orphan:
+
+Release Statistics for U-Boot v2011.12
+======================================
+
+* Processed 1530 csets from 146 developers
+
+* 34 employers found
+
+* A total of 136501 lines added, 116035 removed (delta 20466)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 185 (12.1%)
+ Marek Vasut 167 (10.9%)
+ Simon Glass 88 (5.8%)
+ Anatolij Gustschin 62 (4.1%)
+ Fabio Estevam 59 (3.9%)
+ Kumar Gala 56 (3.7%)
+ Heiko Schocher 50 (3.3%)
+ Stefano Babic 49 (3.2%)
+ Mike Frysinger 46 (3.0%)
+ Joe Hershberger 31 (2.0%)
+ Michal Simek 27 (1.8%)
+ Timur Tabi 25 (1.6%)
+ Igor Grinberg 24 (1.6%)
+ Lei Wen 24 (1.6%)
+ Tom Rini 23 (1.5%)
+ Macpaul Lin 23 (1.5%)
+ Christian Riesch 22 (1.4%)
+ Anton Staaf 22 (1.4%)
+ Stefan Roese 21 (1.4%)
+ Simon Schwarz 19 (1.2%)
+ Aneesh V 16 (1.0%)
+ Graeme Russ 15 (1.0%)
+ Ilya Yanok 14 (0.9%)
+ Sanjeev Premi 14 (0.9%)
+ Jason Hobbs 14 (0.9%)
+ Holger Brunck 13 (0.8%)
+ Gabe Black 13 (0.8%)
+ Ajay Bhargav 13 (0.8%)
+ York Sun 13 (0.8%)
+ Helmut Raiger 12 (0.8%)
+ Wolfgang Grandegger 10 (0.7%)
+ Valentin Longchamp 10 (0.7%)
+ Stephen Warren 9 (0.6%)
+ Kyle Moffett 9 (0.6%)
+ Łukasz Majewski 9 (0.6%)
+ Jerry Huang 9 (0.6%)
+ Manjunath Hadli 9 (0.6%)
+ Linus Walleij 9 (0.6%)
+ Joachim Foerster 9 (0.6%)
+ Shaohui Xie 8 (0.5%)
+ Sricharan 8 (0.5%)
+ chenhui zhao 8 (0.5%)
+ Dirk Eibach 7 (0.5%)
+ Horst Kronstorfer 6 (0.4%)
+ Matthias Fuchs 6 (0.4%)
+ Thomas Weber 6 (0.4%)
+ Simon Guinot 6 (0.4%)
+ Chandan Nath 6 (0.4%)
+ Nobuhiro Iwamatsu 6 (0.4%)
+ Che-Liang Chiou 6 (0.4%)
+ Poonam Aggrwal 6 (0.4%)
+ Philip Balister 6 (0.4%)
+ stany MARCEL 6 (0.4%)
+ Kim Phillips 5 (0.3%)
+ Daniel Schwierzeck 5 (0.3%)
+ Jason Liu 5 (0.3%)
+ Chander Kashyap 5 (0.3%)
+ Sergei Shtylyov 5 (0.3%)
+ David Müller (ELSOFT AG) 4 (0.3%)
+ Matthias Weisser 4 (0.3%)
+ Asen Dimov 4 (0.3%)
+ Stefan Herbrechtsmeier 4 (0.3%)
+ Steve Sakoman 4 (0.3%)
+ Andy Fleming 4 (0.3%)
+ Zang Roy-R61911 4 (0.3%)
+ Yoshihiro Shimoda 4 (0.3%)
+ Shengzhou Liu 4 (0.3%)
+ Xie Xiaobo 4 (0.3%)
+ Ramneek Mehresh 4 (0.3%)
+ Jason Jin 4 (0.3%)
+ Bastian Ruppert 4 (0.3%)
+ Andreas Bießmann 3 (0.2%)
+ Bernhard Kaindl 3 (0.2%)
+ Vadim Bendebury 3 (0.2%)
+ Gerlando Falauto 3 (0.2%)
+ Michael Jones 3 (0.2%)
+ Ira W. Snyder 3 (0.2%)
+ Alexander Holler 3 (0.2%)
+ Michael Walle 3 (0.2%)
+ Doug Anderson 3 (0.2%)
+ Ricardo Salveti de Araujo 3 (0.2%)
+ Haiying Wang 3 (0.2%)
+ Xiangfu Liu 3 (0.2%)
+ Loïc Minier 3 (0.2%)
+ Thierry Reding 2 (0.1%)
+ Tom Warren 2 (0.1%)
+ Sven Schnelle 2 (0.1%)
+ Stefan Kristiansson 2 (0.1%)
+ Veli-Pekka Peltola 2 (0.1%)
+ Prabhakar Lad 2 (0.1%)
+ Yan-Pai Chen 2 (0.1%)
+ Stelian Pop 2 (0.1%)
+ Andreas Huber 2 (0.1%)
+ Daniel Gorsulowski 2 (0.1%)
+ Angus Ainslie 2 (0.1%)
+ Tang Yuantian 2 (0.1%)
+ Laurence Withers 2 (0.1%)
+ Becky Bruce 2 (0.1%)
+ Ruchika Gupta 2 (0.1%)
+ Paul Gortmaker 2 (0.1%)
+ Balaji T K 2 (0.1%)
+ Dipen Dudhat 2 (0.1%)
+ Lauri Hintsala 1 (0.1%)
+ Chris Lalancette 1 (0.1%)
+ Manfred Rudigier 1 (0.1%)
+ Jana Rapava 1 (0.1%)
+ Vincent Palatin 1 (0.1%)
+ Ash Charles 1 (0.1%)
+ Sughosh Ganu 1 (0.1%)
+ Robert Deliën 1 (0.1%)
+ Wolfram Sang 1 (0.1%)
+ Koen Kooi 1 (0.1%)
+ Tim Schendekehl 1 (0.1%)
+ Sandeep Paulraj 1 (0.1%)
+ Mike Partington 1 (0.1%)
+ Gavin Guo 1 (0.1%)
+ Phil Edworthy 1 (0.1%)
+ Jia Hongtao 1 (0.1%)
+ Li Yang 1 (0.1%)
+ Stephan Linz 1 (0.1%)
+ Bertrand Cachet 1 (0.1%)
+ David Wagner 1 (0.1%)
+ Nagabhushana Netagunte 1 (0.1%)
+ Jon Medhurst (Tixy) 1 (0.1%)
+ Po-Yu Chuang 1 (0.1%)
+ Jens Scharsig 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ Thomas Herzmann 1 (0.1%)
+ Prafulla Wadaskar 1 (0.1%)
+ Ondrej Kupka 1 (0.1%)
+ J. Vijayanand 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Vladimir Zapolskiy 1 (0.1%)
+ Jason Cooper 1 (0.1%)
+ Donggeun Kim 1 (0.1%)
+ Joel A Fernandes 1 (0.1%)
+ Luka Perkov 1 (0.1%)
+ Chunhe Lan 1 (0.1%)
+ Kuldip Giroh 1 (0.1%)
+ Lars Poeschel 1 (0.1%)
+ Fanzc 1 (0.1%)
+ mhench 1 (0.1%)
+ Stefan Bigler 1 (0.1%)
+ Scott McNutt 1 (0.1%)
+ Dave Aldridge 1 (0.1%)
+ Mingkai Hu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 58471 (26.9%)
+ Mike Frysinger 27101 (12.5%)
+ Wolfgang Denk 16846 (7.8%)
+ Joe Hershberger 6750 (3.1%)
+ Macpaul Lin 6111 (2.8%)
+ Sricharan 6022 (2.8%)
+ Simon Glass 5706 (2.6%)
+ Che-Liang Chiou 5047 (2.3%)
+ Heiko Schocher 4975 (2.3%)
+ Jason Liu 4332 (2.0%)
+ Kumar Gala 4033 (1.9%)
+ Stefano Babic 3640 (1.7%)
+ Łukasz Majewski 3540 (1.6%)
+ York Sun 3179 (1.5%)
+ Paul Gortmaker 3127 (1.4%)
+ Xiangfu Liu 2804 (1.3%)
+ Jason Hobbs 2434 (1.1%)
+ Shengzhou Liu 2405 (1.1%)
+ Kyle Moffett 2303 (1.1%)
+ Li Yang 2289 (1.1%)
+ Gabe Black 2166 (1.0%)
+ Chandan Nath 2159 (1.0%)
+ Ajay Bhargav 1789 (0.8%)
+ Timur Tabi 1699 (0.8%)
+ Dirk Eibach 1683 (0.8%)
+ Poonam Aggrwal 1605 (0.7%)
+ Michael Jones 1593 (0.7%)
+ Helmut Raiger 1529 (0.7%)
+ Dipen Dudhat 1481 (0.7%)
+ Stephen Warren 1432 (0.7%)
+ stany MARCEL 1382 (0.6%)
+ Simon Guinot 1246 (0.6%)
+ Nobuhiro Iwamatsu 1217 (0.6%)
+ Simon Schwarz 1208 (0.6%)
+ Ira W. Snyder 1129 (0.5%)
+ Michal Simek 1115 (0.5%)
+ Lei Wen 1114 (0.5%)
+ Donggeun Kim 1101 (0.5%)
+ Sanjeev Premi 1046 (0.5%)
+ Tim Schendekehl 1016 (0.5%)
+ Tang Yuantian 967 (0.4%)
+ Graeme Russ 964 (0.4%)
+ Fabio Estevam 817 (0.4%)
+ Tom Rini 781 (0.4%)
+ Vadim Bendebury 728 (0.3%)
+ Christian Riesch 702 (0.3%)
+ Jana Rapava 688 (0.3%)
+ Andy Fleming 684 (0.3%)
+ Ilya Yanok 683 (0.3%)
+ Jason Cooper 566 (0.3%)
+ Anatolij Gustschin 551 (0.3%)
+ Igor Grinberg 550 (0.3%)
+ Joachim Foerster 509 (0.2%)
+ Anton Staaf 470 (0.2%)
+ Stefan Roese 465 (0.2%)
+ Gavin Guo 425 (0.2%)
+ Manjunath Hadli 416 (0.2%)
+ Wolfgang Grandegger 396 (0.2%)
+ Rob Herring 393 (0.2%)
+ Chander Kashyap 368 (0.2%)
+ chenhui zhao 360 (0.2%)
+ Jerry Huang 291 (0.1%)
+ David Wagner 275 (0.1%)
+ Yoshihiro Shimoda 260 (0.1%)
+ Valentin Longchamp 252 (0.1%)
+ Nagabhushana Netagunte 246 (0.1%)
+ Linus Walleij 236 (0.1%)
+ Mingkai Hu 235 (0.1%)
+ Aneesh V 233 (0.1%)
+ Phil Edworthy 186 (0.1%)
+ Zang Roy-R61911 179 (0.1%)
+ Holger Brunck 170 (0.1%)
+ Becky Bruce 147 (0.1%)
+ Ruchika Gupta 142 (0.1%)
+ Stelian Pop 140 (0.1%)
+ Jason Jin 124 (0.1%)
+ Chris Lalancette 122 (0.1%)
+ Thomas Weber 118 (0.1%)
+ Stefan Herbrechtsmeier 111 (0.1%)
+ Bernhard Kaindl 105 (0.0%)
+ Sergei Shtylyov 94 (0.0%)
+ Shaohui Xie 87 (0.0%)
+ Po-Yu Chuang 84 (0.0%)
+ Matthias Weisser 83 (0.0%)
+ Bastian Ruppert 82 (0.0%)
+ David Müller (ELSOFT AG) 65 (0.0%)
+ Ricardo Salveti de Araujo 65 (0.0%)
+ Tom Warren 65 (0.0%)
+ Ramneek Mehresh 62 (0.0%)
+ Balaji T K 51 (0.0%)
+ Doug Anderson 50 (0.0%)
+ Asen Dimov 49 (0.0%)
+ Xie Xiaobo 48 (0.0%)
+ Matthias Fuchs 42 (0.0%)
+ Gerlando Falauto 38 (0.0%)
+ Daniel Schwierzeck 37 (0.0%)
+ Vladimir Zapolskiy 32 (0.0%)
+ Haiying Wang 30 (0.0%)
+ mhench 30 (0.0%)
+ Philip Balister 28 (0.0%)
+ Jon Medhurst (Tixy) 26 (0.0%)
+ Alexander Holler 23 (0.0%)
+ Horst Kronstorfer 21 (0.0%)
+ Scott McNutt 21 (0.0%)
+ Loïc Minier 20 (0.0%)
+ Andreas Huber 19 (0.0%)
+ Daniel Gorsulowski 15 (0.0%)
+ Laurence Withers 15 (0.0%)
+ Fanzc 15 (0.0%)
+ Michael Walle 13 (0.0%)
+ Kim Phillips 12 (0.0%)
+ Andreas Bießmann 12 (0.0%)
+ Yan-Pai Chen 12 (0.0%)
+ Jia Hongtao 12 (0.0%)
+ Dave Aldridge 10 (0.0%)
+ Veli-Pekka Peltola 9 (0.0%)
+ Steve Sakoman 8 (0.0%)
+ Luca Ceresoli 8 (0.0%)
+ Angus Ainslie 7 (0.0%)
+ Chunhe Lan 7 (0.0%)
+ Sven Schnelle 6 (0.0%)
+ Sughosh Ganu 6 (0.0%)
+ Stephan Linz 6 (0.0%)
+ Bertrand Cachet 5 (0.0%)
+ Thomas Herzmann 5 (0.0%)
+ Mike Partington 4 (0.0%)
+ Lars Poeschel 4 (0.0%)
+ Ash Charles 3 (0.0%)
+ J. Vijayanand 3 (0.0%)
+ Thierry Reding 2 (0.0%)
+ Stefan Kristiansson 2 (0.0%)
+ Prabhakar Lad 2 (0.0%)
+ Jens Scharsig 2 (0.0%)
+ Luka Perkov 2 (0.0%)
+ Lauri Hintsala 1 (0.0%)
+ Manfred Rudigier 1 (0.0%)
+ Vincent Palatin 1 (0.0%)
+ Robert Deliën 1 (0.0%)
+ Wolfram Sang 1 (0.0%)
+ Koen Kooi 1 (0.0%)
+ Sandeep Paulraj 1 (0.0%)
+ Prafulla Wadaskar 1 (0.0%)
+ Ondrej Kupka 1 (0.0%)
+ Joel A Fernandes 1 (0.0%)
+ Kuldip Giroh 1 (0.0%)
+ Stefan Bigler 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 26037 (22.4%)
+ Marek Vasut 20905 (18.0%)
+ Wolfgang Denk 9360 (8.1%)
+ Paul Gortmaker 3123 (2.7%)
+ stany MARCEL 1184 (1.0%)
+ Stefan Roese 355 (0.3%)
+ Chander Kashyap 167 (0.1%)
+ Yoshihiro Shimoda 132 (0.1%)
+ Thomas Weber 113 (0.1%)
+ Igor Grinberg 105 (0.1%)
+ Jason Jin 90 (0.1%)
+ Anatolij Gustschin 64 (0.1%)
+ Po-Yu Chuang 34 (0.0%)
+ Vladimir Zapolskiy 32 (0.0%)
+ mhench 28 (0.0%)
+ Jon Medhurst (Tixy) 26 (0.0%)
+ Alexander Holler 20 (0.0%)
+ Matthias Fuchs 9 (0.0%)
+ Doug Anderson 7 (0.0%)
+ Sughosh Ganu 6 (0.0%)
+ Philip Balister 5 (0.0%)
+ Kim Phillips 4 (0.0%)
+ Christian Riesch 3 (0.0%)
+ Andreas Bießmann 2 (0.0%)
+ Loïc Minier 1 (0.0%)
+ Laurence Withers 1 (0.0%)
+ Mike Partington 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 456)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Sandeep Paulraj 131 (28.7%)
+ Kumar Gala 83 (18.2%)
+ Kim Phillips 35 (7.7%)
+ Anatolij Gustschin 20 (4.4%)
+ Scott Wood 18 (3.9%)
+ Tom Warren 14 (3.1%)
+ Holger Brunck 13 (2.9%)
+ Stefan Roese 11 (2.4%)
+ Kyungmin Park 11 (2.4%)
+ Minkyu Kang 10 (2.2%)
+ Mike Frysinger 7 (1.5%)
+ Nobuhiro Iwamatsu 7 (1.5%)
+ Prafulla Wadaskar 5 (1.1%)
+ Valentin Longchamp 5 (1.1%)
+ Thomas Chou 4 (0.9%)
+ Tom Rini 4 (0.9%)
+ Stefano Babic 4 (0.9%)
+ Wolfgang Denk 3 (0.7%)
+ Sudhakar Rajashekhara 3 (0.7%)
+ Shinya Kuribayashi 3 (0.7%)
+ Ioana Radulescu 3 (0.7%)
+ York Sun 3 (0.7%)
+ Lei Xu 2 (0.4%)
+ Prabhakar Kushwaha 2 (0.4%)
+ Matthew McClintock 2 (0.4%)
+ Kuldip Giroh 2 (0.4%)
+ Shaohui Xie 2 (0.4%)
+ Xie Xiaobo 2 (0.4%)
+ Ramneek Mehresh 2 (0.4%)
+ Aneesh V 2 (0.4%)
+ chenhui zhao 2 (0.4%)
+ Mingkai Hu 2 (0.4%)
+ Andy Fleming 2 (0.4%)
+ Timur Tabi 2 (0.4%)
+ Igor Grinberg 1 (0.2%)
+ Haiying Wang 1 (0.2%)
+ Marek Szyprowski 1 (0.2%)
+ Remy Bohmer 1 (0.2%)
+ Dirk Behme 1 (0.2%)
+ Manjunathappa, Prakash 1 (0.2%)
+ Uwe Kleine-König 1 (0.2%)
+ Gong Chen 1 (0.2%)
+ Terry Lv 1 (0.2%)
+ Axel Lin 1 (0.2%)
+ Paul Mundt 1 (0.2%)
+ Aaron Williams 1 (0.2%)
+ Greentime Hu 1 (0.2%)
+ Minghuan Lian 1 (0.2%)
+ Santosh Shukla 1 (0.2%)
+ Ebony Zhu 1 (0.2%)
+ Dave Liu 1 (0.2%)
+ Dai Haruki 1 (0.2%)
+ Bhaskar Upadhaya 1 (0.2%)
+ Zhao Chenhui 1 (0.2%)
+ Priyanka Jain 1 (0.2%)
+ Akhil Goyal 1 (0.2%)
+ Sergei Shtylyov 1 (0.2%)
+ Bastian Ruppert 1 (0.2%)
+ Zang Roy-R61911 1 (0.2%)
+ Graeme Russ 1 (0.2%)
+ Jerry Huang 1 (0.2%)
+ Tang Yuantian 1 (0.2%)
+ Dipen Dudhat 1 (0.2%)
+ Poonam Aggrwal 1 (0.2%)
+ Li Yang 1 (0.2%)
+ Jason Hobbs 1 (0.2%)
+ Łukasz Majewski 1 (0.2%)
+ Simon Glass 1 (0.2%)
+ Macpaul Lin 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Guennadi Liakhovetski 1 (50.0%)
+ Anton Staaf 1 (50.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 74)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 13 (17.6%)
+ Stefano Babic 8 (10.8%)
+ Tom Warren 6 (8.1%)
+ Wolfgang Denk 5 (6.8%)
+ Steve Sakoman 4 (5.4%)
+ Heiko Schocher 4 (5.4%)
+ Anatolij Gustschin 3 (4.1%)
+ Macpaul Lin 3 (4.1%)
+ Matthias Weisser 3 (4.1%)
+ Thomas Chou 2 (2.7%)
+ Stephen Warren 2 (2.7%)
+ Jason Liu 2 (2.7%)
+ Anton Staaf 1 (1.4%)
+ Stefan Roese 1 (1.4%)
+ Mike Frysinger 1 (1.4%)
+ Tom Rini 1 (1.4%)
+ Dirk Behme 1 (1.4%)
+ Graeme Russ 1 (1.4%)
+ Marek Vasut 1 (1.4%)
+ Thomas Weber 1 (1.4%)
+ Matthias Fuchs 1 (1.4%)
+ Stefan Kristiansson 1 (1.4%)
+ Koen Kooi 1 (1.4%)
+ Matt Ranostay 1 (1.4%)
+ Matt Porter 1 (1.4%)
+ Thomas Petazzoni 1 (1.4%)
+ Lan Chunhe 1 (1.4%)
+ Ash Charles 1 (1.4%)
+ Sanjeev Premi 1 (1.4%)
+ Michal Simek 1 (1.4%)
+ Kyle Moffett 1 (1.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 74)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 10 (13.5%)
+ Simon Glass 8 (10.8%)
+ Stephen Warren 8 (10.8%)
+ Marek Vasut 7 (9.5%)
+ Tom Rini 5 (6.8%)
+ Stefano Babic 4 (5.4%)
+ Anatolij Gustschin 3 (4.1%)
+ Mike Frysinger 3 (4.1%)
+ Philip Balister 3 (4.1%)
+ Macpaul Lin 2 (2.7%)
+ Thierry Reding 2 (2.7%)
+ Tom Warren 1 (1.4%)
+ Steve Sakoman 1 (1.4%)
+ Matthias Weisser 1 (1.4%)
+ Jason Liu 1 (1.4%)
+ Anton Staaf 1 (1.4%)
+ Graeme Russ 1 (1.4%)
+ Ash Charles 1 (1.4%)
+ Igor Grinberg 1 (1.4%)
+ Tang Yuantian 1 (1.4%)
+ Po-Yu Chuang 1 (1.4%)
+ Christian Riesch 1 (1.4%)
+ Stephan Linz 1 (1.4%)
+ Ilya Yanok 1 (1.4%)
+ David Wagner 1 (1.4%)
+ Joachim Foerster 1 (1.4%)
+ Fabio Estevam 1 (1.4%)
+ Lei Wen 1 (1.4%)
+ Simon Schwarz 1 (1.4%)
+ Dirk Eibach 1 (1.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mike Frysinger 1 (20.0%)
+ Rockefeller 1 (20.0%)
+ Shawn Bai 1 (20.0%)
+ Roland Kletzing 1 (20.0%)
+ Michael Jones 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 1 (20.0%)
+ Anatolij Gustschin 1 (20.0%)
+ Igor Grinberg 1 (20.0%)
+ Kim Phillips 1 (20.0%)
+ Aneesh V 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 544 (35.6%)
+ Freescale 219 (14.3%)
+ (Unknown) 218 (14.2%)
+ Google, Inc. 136 (8.9%)
+ Texas Instruments 58 (3.8%)
+ Analog Devices 46 (3.0%)
+ National Instruments 31 (2.0%)
+ Keymile 29 (1.9%)
+ Linaro 28 (1.8%)
+ Xilinx 27 (1.8%)
+ CompuLab 24 (1.6%)
+ Konsulko Group 23 (1.5%)
+ Marvell 18 (1.2%)
+ Calxeda 15 (1.0%)
+ Graeme Russ 15 (1.0%)
+ EmCraft Systems 14 (0.9%)
+ Renesas Electronics 11 (0.7%)
+ NVidia 10 (0.7%)
+ Samsung 10 (0.7%)
+ Boeing 9 (0.6%)
+ ESD Electronics 8 (0.5%)
+ Guntermann & Drunck 7 (0.5%)
+ MontaVista 5 (0.3%)
+ Ronetix 4 (0.3%)
+ Sakoman Inc. 4 (0.3%)
+ Bluegiga Technologies 3 (0.2%)
+ Matrix Vision 3 (0.2%)
+ OVRO 3 (0.2%)
+ Wind River 2 (0.1%)
+ Stelian Pop 2 (0.1%)
+ Free Electrons 1 (0.1%)
+ OpenSDR 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Psyent 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 85344 (39.3%)
+ Analog Devices 27101 (12.5%)
+ (Unknown) 21422 (9.9%)
+ Freescale 20694 (9.5%)
+ Google, Inc. 14168 (6.5%)
+ Texas Instruments 10175 (4.7%)
+ National Instruments 6750 (3.1%)
+ Linaro 5054 (2.3%)
+ Samsung 4641 (2.1%)
+ Wind River 3127 (1.4%)
+ Calxeda 2827 (1.3%)
+ Boeing 2303 (1.1%)
+ Guntermann & Drunck 1683 (0.8%)
+ Renesas Electronics 1663 (0.8%)
+ Matrix Vision 1593 (0.7%)
+ NVidia 1495 (0.7%)
+ OVRO 1129 (0.5%)
+ Xilinx 1115 (0.5%)
+ Graeme Russ 964 (0.4%)
+ Marvell 936 (0.4%)
+ Konsulko Group 781 (0.4%)
+ EmCraft Systems 683 (0.3%)
+ CompuLab 550 (0.3%)
+ Keymile 480 (0.2%)
+ Free Electrons 275 (0.1%)
+ Stelian Pop 140 (0.1%)
+ MontaVista 94 (0.0%)
+ ESD Electronics 57 (0.0%)
+ Ronetix 49 (0.0%)
+ Psyent 21 (0.0%)
+ OpenSDR 18 (0.0%)
+ Bluegiga Technologies 10 (0.0%)
+ Sakoman Inc. 8 (0.0%)
+ Pengutronix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 456)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 182 (39.9%)
+ Texas Instruments 141 (30.9%)
+ DENX Software Engineering 38 (8.3%)
+ Samsung 23 (5.0%)
+ Keymile 18 (3.9%)
+ (Unknown) 14 (3.1%)
+ NVidia 14 (3.1%)
+ Analog Devices 7 (1.5%)
+ Nobuhiro Iwamatsu 7 (1.5%)
+ Marvell 5 (1.1%)
+ Google, Inc. 1 (0.2%)
+ Calxeda 1 (0.2%)
+ Graeme Russ 1 (0.2%)
+ CompuLab 1 (0.2%)
+ MontaVista 1 (0.2%)
+ Pengutronix 1 (0.2%)
+ Oce Technologies 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 151)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 55 (36.4%)
+ Freescale 25 (16.6%)
+ Texas Instruments 9 (6.0%)
+ DENX Software Engineering 7 (4.6%)
+ Google, Inc. 7 (4.6%)
+ Linaro 7 (4.6%)
+ Keymile 6 (4.0%)
+ Renesas Electronics 3 (2.0%)
+ Samsung 2 (1.3%)
+ NVidia 2 (1.3%)
+ Marvell 2 (1.3%)
+ Calxeda 2 (1.3%)
+ ESD Electronics 2 (1.3%)
+ Bluegiga Technologies 2 (1.3%)
+ Analog Devices 1 (0.7%)
+ Graeme Russ 1 (0.7%)
+ CompuLab 1 (0.7%)
+ MontaVista 1 (0.7%)
+ Pengutronix 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Wind River 1 (0.7%)
+ Boeing 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Matrix Vision 1 (0.7%)
+ OVRO 1 (0.7%)
+ Xilinx 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ EmCraft Systems 1 (0.7%)
+ Free Electrons 1 (0.7%)
+ Stelian Pop 1 (0.7%)
+ Ronetix 1 (0.7%)
+ Psyent 1 (0.7%)
+ OpenSDR 1 (0.7%)
+ Sakoman Inc. 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2012.04.rst b/doc/develop/statistics/u-boot-stats-v2012.04.rst
new file mode 100644
index 0000000..f0324d9
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2012.04.rst
@@ -0,0 +1,626 @@
+:orphan:
+
+Release Statistics for U-Boot v2012.04
+======================================
+
+* Processed 773 csets from 126 developers
+
+* 36 employers found
+
+* A total of 132602 lines added, 56539 removed (delta 76063)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 106 (13.7%)
+ Marek Vasut 69 (8.9%)
+ Fabio Estevam 38 (4.9%)
+ Stefano Babic 28 (3.6%)
+ Tom Rini 20 (2.6%)
+ Mike Frysinger 20 (2.6%)
+ Eric Nelson 18 (2.3%)
+ Graeme Russ 17 (2.2%)
+ Christian Riesch 16 (2.1%)
+ Stefan Kristiansson 13 (1.7%)
+ Wolfgang Denk 12 (1.6%)
+ Nobuhiro Iwamatsu 11 (1.4%)
+ Anatolij Gustschin 11 (1.4%)
+ Heiko Schocher 11 (1.4%)
+ Thierry Reding 11 (1.4%)
+ Rob Herring 10 (1.3%)
+ Chander Kashyap 10 (1.3%)
+ Paul Gortmaker 10 (1.3%)
+ Stephan Linz 9 (1.2%)
+ Dirk Behme 9 (1.2%)
+ David Wagner 9 (1.2%)
+ Jason Liu 9 (1.2%)
+ Troy Kisky 8 (1.0%)
+ Vipin Kumar 8 (1.0%)
+ Simon Schwarz 8 (1.0%)
+ Scott Wood 8 (1.0%)
+ Macpaul Lin 8 (1.0%)
+ Peter Meerwald 8 (1.0%)
+ Thomas Weber 7 (0.9%)
+ Linus Walleij 7 (0.9%)
+ David Müller (ELSOFT AG) 7 (0.9%)
+ Helmut Raiger 7 (0.9%)
+ Andreas Müller 7 (0.9%)
+ Christian Hitz 7 (0.9%)
+ Gabe Black 7 (0.9%)
+ Andreas Bießmann 6 (0.8%)
+ Govindraj.R 6 (0.8%)
+ Nikita Kiryanov 6 (0.8%)
+ Lukasz Majewski 5 (0.6%)
+ Joe Hershberger 5 (0.6%)
+ Tom Warren 5 (0.6%)
+ Robert Delien 5 (0.6%)
+ Hadli, Manjunath 5 (0.6%)
+ Matthias Fuchs 5 (0.6%)
+ Holger Brunck 5 (0.6%)
+ Albert ARIBAUD 5 (0.6%)
+ Chandan Nath 5 (0.6%)
+ Kyle Moffett 5 (0.6%)
+ Vikram Narayanan 4 (0.5%)
+ Igor Grinberg 4 (0.5%)
+ Minkyu Kang 4 (0.5%)
+ Ajay Bhargav 4 (0.5%)
+ Stephen Warren 4 (0.5%)
+ Horst Kronstorfer 4 (0.5%)
+ Phil Edworthy 3 (0.4%)
+ Amit Virdi 3 (0.4%)
+ Daniel Schwierzeck 3 (0.4%)
+ Wolfgang Grandegger 3 (0.4%)
+ Donggeun Kim 3 (0.4%)
+ Vincent Palatin 3 (0.4%)
+ Aneesh V 3 (0.4%)
+ Peter Barada 3 (0.4%)
+ HeungJun, Kim 3 (0.4%)
+ Michael Walle 3 (0.4%)
+ Vladimir Zapolskiy 3 (0.4%)
+ Patil, Rachna 3 (0.4%)
+ Bernhard Walle 2 (0.3%)
+ Armando Visconti 2 (0.3%)
+ Jason Hobbs 2 (0.3%)
+ Matt Porter 2 (0.3%)
+ Vasily Khoruzhick 2 (0.3%)
+ Yoshihiro Shimoda 2 (0.3%)
+ Reinhard Arlt 2 (0.3%)
+ Sven Schnelle 2 (0.3%)
+ Allen Martin 2 (0.3%)
+ Prabhakar Lad 2 (0.3%)
+ Prabhakar Kushwaha 2 (0.3%)
+ Daniel Gorsulowski 2 (0.3%)
+ Alex Hornung 2 (0.3%)
+ Jan Kloetzke 2 (0.3%)
+ ramneek mehresh 2 (0.3%)
+ Dimitar Penev 2 (0.3%)
+ Sughosh Ganu 2 (0.3%)
+ Ilya Yanok 2 (0.3%)
+ Frans Meulenbroeks 2 (0.3%)
+ Jens Scharsig (BuS Elektronik) 2 (0.3%)
+ Sonny Rao 2 (0.3%)
+ Jens Scharsig 1 (0.1%)
+ Jeroen Hofstee 1 (0.1%)
+ Joel Fernandes 1 (0.1%)
+ Michael Jones 1 (0.1%)
+ Vikas Manocha 1 (0.1%)
+ Eric Miao 1 (0.1%)
+ Stefan Bigler 1 (0.1%)
+ Valentin Longchamp 1 (0.1%)
+ Maximilian Schwerin 1 (0.1%)
+ Yen Lin 1 (0.1%)
+ Doug Anderson 1 (0.1%)
+ jacopo mondi 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ Tim Kientzle 1 (0.1%)
+ Otavio Salvador 1 (0.1%)
+ Liming Wang 1 (0.1%)
+ Tao Hou 1 (0.1%)
+ Shiraz Hashim 1 (0.1%)
+ Detlev Zundel 1 (0.1%)
+ Chase Maupin 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ Robert Nelson 1 (0.1%)
+ Schuyler Patton 1 (0.1%)
+ Prafulla Wadaskar 1 (0.1%)
+ Stefan 1 (0.1%)
+ Ian Campbell 1 (0.1%)
+ Dechesne, Nicolas 1 (0.1%)
+ Grant Erickson 1 (0.1%)
+ Yegor Yefremov 1 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Ben Gardiner 1 (0.1%)
+ Shengzhou Liu 1 (0.1%)
+ Zach Sadecki 1 (0.1%)
+ Veli-Pekka Peltola 1 (0.1%)
+ Kumar Gala 1 (0.1%)
+ Marco Schmid 1 (0.1%)
+ Dirk Eibach 1 (0.1%)
+ Ira Snyder 1 (0.1%)
+ Sergei Shtylyov 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 85149 (61.3%)
+ Simon Glass 9071 (6.5%)
+ Stefan Kristiansson 4042 (2.9%)
+ Chander Kashyap 2956 (2.1%)
+ Christian Hitz 2867 (2.1%)
+ Tom Rini 2418 (1.7%)
+ Stefano Babic 2140 (1.5%)
+ Stephan Linz 1972 (1.4%)
+ HeungJun, Kim 1564 (1.1%)
+ Gabe Black 1538 (1.1%)
+ Graeme Russ 1319 (0.9%)
+ Christian Riesch 1232 (0.9%)
+ Fabio Estevam 1205 (0.9%)
+ Ilya Yanok 1102 (0.8%)
+ David Müller (ELSOFT AG) 1049 (0.8%)
+ Heiko Schocher 1004 (0.7%)
+ Thomas Weber 934 (0.7%)
+ Jason Liu 887 (0.6%)
+ Peter Barada 747 (0.5%)
+ Govindraj.R 743 (0.5%)
+ Yen Lin 731 (0.5%)
+ Robert Delien 709 (0.5%)
+ Thierry Reding 666 (0.5%)
+ Rob Herring 659 (0.5%)
+ Stefan 646 (0.5%)
+ Simon Schwarz 636 (0.5%)
+ Linus Walleij 598 (0.4%)
+ Sven Schnelle 583 (0.4%)
+ Joe Hershberger 567 (0.4%)
+ Dimitar Penev 541 (0.4%)
+ Chandan Nath 479 (0.3%)
+ Eric Nelson 456 (0.3%)
+ Patil, Rachna 427 (0.3%)
+ Paul Gortmaker 385 (0.3%)
+ Tom Warren 365 (0.3%)
+ Sughosh Ganu 339 (0.2%)
+ Troy Kisky 300 (0.2%)
+ Scott Wood 283 (0.2%)
+ Hadli, Manjunath 282 (0.2%)
+ Ajay Bhargav 263 (0.2%)
+ Wolfgang Grandegger 258 (0.2%)
+ Macpaul Lin 250 (0.2%)
+ Sonny Rao 246 (0.2%)
+ Vipin Kumar 240 (0.2%)
+ Helmut Raiger 238 (0.2%)
+ Mike Frysinger 225 (0.2%)
+ Nikita Kiryanov 224 (0.2%)
+ Andreas Müller 223 (0.2%)
+ Stephen Warren 198 (0.1%)
+ Holger Brunck 178 (0.1%)
+ Prabhakar Lad 175 (0.1%)
+ Maximilian Schwerin 159 (0.1%)
+ Wolfgang Denk 151 (0.1%)
+ Minkyu Kang 147 (0.1%)
+ Anatolij Gustschin 136 (0.1%)
+ Kyle Moffett 134 (0.1%)
+ David Wagner 105 (0.1%)
+ Matthias Fuchs 105 (0.1%)
+ Lukasz Majewski 100 (0.1%)
+ Michael Walle 98 (0.1%)
+ Nobuhiro Iwamatsu 97 (0.1%)
+ Matt Porter 94 (0.1%)
+ Donggeun Kim 86 (0.1%)
+ Allen Martin 78 (0.1%)
+ Albert ARIBAUD 72 (0.1%)
+ Prafulla Wadaskar 72 (0.1%)
+ jacopo mondi 65 (0.0%)
+ Igor Grinberg 60 (0.0%)
+ Joel Fernandes 57 (0.0%)
+ Dirk Behme 52 (0.0%)
+ Peter Meerwald 52 (0.0%)
+ Amit Virdi 49 (0.0%)
+ Vincent Palatin 46 (0.0%)
+ Andreas Bießmann 43 (0.0%)
+ Vladimir Zapolskiy 43 (0.0%)
+ Prabhakar Kushwaha 42 (0.0%)
+ Doug Anderson 42 (0.0%)
+ Yoshihiro Shimoda 36 (0.0%)
+ Daniel Schwierzeck 35 (0.0%)
+ Reinhard Arlt 35 (0.0%)
+ ramneek mehresh 33 (0.0%)
+ Vikas Manocha 29 (0.0%)
+ Alex Hornung 23 (0.0%)
+ Horst Kronstorfer 22 (0.0%)
+ Jan Kloetzke 22 (0.0%)
+ Dirk Eibach 20 (0.0%)
+ Vasily Khoruzhick 19 (0.0%)
+ Jason Hobbs 17 (0.0%)
+ Aneesh V 15 (0.0%)
+ Jens Scharsig 14 (0.0%)
+ Grazvydas Ignotas 14 (0.0%)
+ Marco Schmid 14 (0.0%)
+ Vikram Narayanan 13 (0.0%)
+ Shawn Guo 13 (0.0%)
+ Bernhard Walle 11 (0.0%)
+ Shiraz Hashim 11 (0.0%)
+ Grant Erickson 11 (0.0%)
+ Phil Edworthy 10 (0.0%)
+ Liming Wang 10 (0.0%)
+ Shengzhou Liu 10 (0.0%)
+ Ben Gardiner 9 (0.0%)
+ Daniel Gorsulowski 8 (0.0%)
+ Robert Nelson 7 (0.0%)
+ Frans Meulenbroeks 6 (0.0%)
+ Veli-Pekka Peltola 6 (0.0%)
+ Armando Visconti 5 (0.0%)
+ Michael Jones 5 (0.0%)
+ Jens Scharsig (BuS Elektronik) 4 (0.0%)
+ Zach Sadecki 4 (0.0%)
+ Tim Kientzle 3 (0.0%)
+ Jeroen Hofstee 2 (0.0%)
+ Eric Miao 2 (0.0%)
+ Stefan Bigler 2 (0.0%)
+ Valentin Longchamp 2 (0.0%)
+ Tao Hou 2 (0.0%)
+ Detlev Zundel 2 (0.0%)
+ Dechesne, Nicolas 2 (0.0%)
+ Yegor Yefremov 2 (0.0%)
+ Pali Rohár 2 (0.0%)
+ Ira Snyder 2 (0.0%)
+ Sergei Shtylyov 2 (0.0%)
+ Otavio Salvador 1 (0.0%)
+ Chase Maupin 1 (0.0%)
+ Schuyler Patton 1 (0.0%)
+ Ian Campbell 1 (0.0%)
+ Kumar Gala 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 1564 (2.8%)
+ David Müller (ELSOFT AG) 660 (1.2%)
+ Sven Schnelle 502 (0.9%)
+ Sughosh Ganu 213 (0.4%)
+ Prabhakar Lad 169 (0.3%)
+ Holger Brunck 113 (0.2%)
+ Allen Martin 49 (0.1%)
+ Joel Fernandes 48 (0.1%)
+ Andreas Bießmann 34 (0.1%)
+ Igor Grinberg 29 (0.1%)
+ Vladimir Zapolskiy 17 (0.0%)
+ Vikram Narayanan 6 (0.0%)
+ Veli-Pekka Peltola 6 (0.0%)
+ Jason Hobbs 2 (0.0%)
+ Michael Jones 2 (0.0%)
+ Eric Miao 1 (0.0%)
+ Valentin Longchamp 1 (0.0%)
+ Yegor Yefremov 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 233)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 66 (28.3%)
+ Mike Frysinger 15 (6.4%)
+ Minkyu Kang 14 (6.0%)
+ Kyungmin Park 13 (5.6%)
+ Scott Wood 13 (5.6%)
+ Tom Rini 12 (5.2%)
+ Kumar Gala 12 (5.2%)
+ Amit Virdi 12 (5.2%)
+ Kim Phillips 9 (3.9%)
+ Stefan Roese 8 (3.4%)
+ Igor Grinberg 6 (2.6%)
+ Wolfgang Denk 6 (2.6%)
+ Nobuhiro Iwamatsu 5 (2.1%)
+ Stefano Babic 4 (1.7%)
+ Thomas Chou 3 (1.3%)
+ Anatolij Gustschin 3 (1.3%)
+ Andreas Bießmann 2 (0.9%)
+ Poonam Aggrwal 2 (0.9%)
+ Maximilian Schwerin 2 (0.9%)
+ Chandan Nath 2 (0.9%)
+ Rob Herring 2 (0.9%)
+ Simon Glass 2 (0.9%)
+ Holger Brunck 1 (0.4%)
+ Jason Hobbs 1 (0.4%)
+ Eric Miao 1 (0.4%)
+ Valentin Longchamp 1 (0.4%)
+ Their Name 1 (0.4%)
+ Jason Kridner 1 (0.4%)
+ Michal Simek 1 (0.4%)
+ Stefan Herbrechtsmeier 1 (0.4%)
+ Philip, Avinash 1 (0.4%)
+ Hebbar, Gururaja 1 (0.4%)
+ Martin Mueller 1 (0.4%)
+ Dirk Behme 1 (0.4%)
+ Doug Anderson 1 (0.4%)
+ Prafulla Wadaskar 1 (0.4%)
+ Troy Kisky 1 (0.4%)
+ Christian Riesch 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ Thomas Weber 1 (0.4%)
+ Heiko Schocher 1 (0.4%)
+ HeungJun, Kim 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 0)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 58)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jason Liu 9 (15.5%)
+ Stefano Babic 8 (13.8%)
+ Marek Vasut 8 (13.8%)
+ Heiko Schocher 6 (10.3%)
+ Simon Glass 5 (8.6%)
+ Fabio Estevam 5 (8.6%)
+ Dirk Behme 2 (3.4%)
+ Tom Rini 1 (1.7%)
+ Holger Brunck 1 (1.7%)
+ Their Name 1 (1.7%)
+ Thomas Weber 1 (1.7%)
+ Will Deacon 1 (1.7%)
+ Peter A. Bigot 1 (1.7%)
+ Sebastien Jan 1 (1.7%)
+ Robert P. J. Day 1 (1.7%)
+ Raúl Porcel 1 (1.7%)
+ Robert Nelson 1 (1.7%)
+ Grant Erickson 1 (1.7%)
+ Lukasz Majewski 1 (1.7%)
+ Andreas Müller 1 (1.7%)
+ Stephen Warren 1 (1.7%)
+ Wolfgang Grandegger 1 (1.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 58)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Eric Nelson 6 (10.3%)
+ Thierry Reding 6 (10.3%)
+ Tom Rini 5 (8.6%)
+ Govindraj.R 5 (8.6%)
+ Marek Vasut 3 (5.2%)
+ Fabio Estevam 3 (5.2%)
+ Christian Riesch 3 (5.2%)
+ Matthias Fuchs 3 (5.2%)
+ Robert Delien 3 (5.2%)
+ Stefano Babic 2 (3.4%)
+ Stephen Warren 2 (3.4%)
+ Wolfgang Denk 2 (3.4%)
+ Aneesh V 2 (3.4%)
+ Jason Liu 1 (1.7%)
+ Dirk Behme 1 (1.7%)
+ Tom Warren 1 (1.7%)
+ Chandan Nath 1 (1.7%)
+ Sughosh Ganu 1 (1.7%)
+ Ian Campbell 1 (1.7%)
+ Dechesne, Nicolas 1 (1.7%)
+ Peter Meerwald 1 (1.7%)
+ Vincent Palatin 1 (1.7%)
+ Matt Porter 1 (1.7%)
+ Linus Walleij 1 (1.7%)
+ Simon Schwarz 1 (1.7%)
+ Ilya Yanok 1 (1.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 3 (30.0%)
+ Wolfgang Denk 2 (20.0%)
+ Marek Vasut 1 (10.0%)
+ Sughosh Ganu 1 (10.0%)
+ Mike Frysinger 1 (10.0%)
+ Otavio Salvador 1 (10.0%)
+ Jim Lentz 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephan Linz 3 (30.0%)
+ Linus Walleij 2 (20.0%)
+ Fabio Estevam 1 (10.0%)
+ Christian Riesch 1 (10.0%)
+ Nobuhiro Iwamatsu 1 (10.0%)
+ Jason Hobbs 1 (10.0%)
+ Ira Snyder 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 206 (26.6%)
+ DENX Software Engineering 135 (17.5%)
+ Google, Inc. 119 (15.4%)
+ Linaro 28 (3.6%)
+ Texas Instruments 27 (3.5%)
+ Boundary Devices 26 (3.4%)
+ Freescale 23 (3.0%)
+ Analog Devices 20 (2.6%)
+ Konsulko Group 20 (2.6%)
+ Graeme Russ 17 (2.2%)
+ Samsung 15 (1.9%)
+ ST Microelectronics 15 (1.9%)
+ Calxeda 12 (1.6%)
+ Renesas Electronics 12 (1.6%)
+ CompuLab 10 (1.3%)
+ Wind River 10 (1.3%)
+ ESD Electronics 9 (1.2%)
+ Free Electrons 9 (1.2%)
+ NVidia 9 (1.2%)
+ bct electronic GmbH 8 (1.0%)
+ Bosch 8 (1.0%)
+ Keymile 8 (1.0%)
+ Boeing 5 (0.6%)
+ National Instruments 5 (0.6%)
+ Nobuhiro Iwamatsu 4 (0.5%)
+ BuS Elektronik 2 (0.3%)
+ EmCraft Systems 2 (0.3%)
+ Bluegiga Technologies 1 (0.1%)
+ Guntermann & Drunck 1 (0.1%)
+ Marvell 1 (0.1%)
+ Matrix Vision 1 (0.1%)
+ MontaVista 1 (0.1%)
+ O.S. Systems 1 (0.1%)
+ OVRO 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 88840 (63.9%)
+ (Unknown) 20221 (14.5%)
+ Google, Inc. 10943 (7.9%)
+ Linaro 4456 (3.2%)
+ Konsulko Group 2418 (1.7%)
+ Texas Instruments 2044 (1.5%)
+ Samsung 1897 (1.4%)
+ Graeme Russ 1319 (0.9%)
+ EmCraft Systems 1102 (0.8%)
+ NVidia 1016 (0.7%)
+ Boundary Devices 756 (0.5%)
+ Calxeda 676 (0.5%)
+ Freescale 576 (0.4%)
+ National Instruments 567 (0.4%)
+ Wind River 385 (0.3%)
+ ST Microelectronics 334 (0.2%)
+ CompuLab 284 (0.2%)
+ Analog Devices 225 (0.2%)
+ Keymile 196 (0.1%)
+ ESD Electronics 148 (0.1%)
+ Boeing 134 (0.1%)
+ Renesas Electronics 122 (0.1%)
+ Free Electrons 105 (0.1%)
+ Marvell 72 (0.1%)
+ bct electronic GmbH 52 (0.0%)
+ Bosch 50 (0.0%)
+ Nobuhiro Iwamatsu 21 (0.0%)
+ Guntermann & Drunck 20 (0.0%)
+ Grazvydas Ignotas 14 (0.0%)
+ Bluegiga Technologies 6 (0.0%)
+ Matrix Vision 5 (0.0%)
+ BuS Elektronik 4 (0.0%)
+ MontaVista 2 (0.0%)
+ OVRO 2 (0.0%)
+ Dirk Behme 2 (0.0%)
+ O.S. Systems 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 233)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NVidia 66 (28.3%)
+ Freescale 36 (15.5%)
+ Samsung 28 (12.0%)
+ DENX Software Engineering 22 (9.4%)
+ Texas Instruments 17 (7.3%)
+ Analog Devices 15 (6.4%)
+ (Unknown) 12 (5.2%)
+ ST Microelectronics 12 (5.2%)
+ CompuLab 6 (2.6%)
+ Nobuhiro Iwamatsu 5 (2.1%)
+ Google, Inc. 3 (1.3%)
+ Calxeda 3 (1.3%)
+ Keymile 2 (0.9%)
+ Bosch 2 (0.9%)
+ Linaro 1 (0.4%)
+ Boundary Devices 1 (0.4%)
+ Marvell 1 (0.4%)
+ Funky 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 130)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 48 (36.9%)
+ Texas Instruments 9 (6.9%)
+ DENX Software Engineering 7 (5.4%)
+ Freescale 6 (4.6%)
+ ST Microelectronics 5 (3.8%)
+ Google, Inc. 5 (3.8%)
+ Linaro 5 (3.8%)
+ NVidia 4 (3.1%)
+ Samsung 4 (3.1%)
+ Keymile 4 (3.1%)
+ ESD Electronics 3 (2.3%)
+ Renesas Electronics 3 (2.3%)
+ CompuLab 2 (1.5%)
+ Calxeda 2 (1.5%)
+ Boundary Devices 2 (1.5%)
+ Analog Devices 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Bosch 1 (0.8%)
+ Marvell 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Graeme Russ 1 (0.8%)
+ EmCraft Systems 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Wind River 1 (0.8%)
+ Boeing 1 (0.8%)
+ Free Electrons 1 (0.8%)
+ bct electronic GmbH 1 (0.8%)
+ Guntermann & Drunck 1 (0.8%)
+ Grazvydas Ignotas 1 (0.8%)
+ Bluegiga Technologies 1 (0.8%)
+ Matrix Vision 1 (0.8%)
+ BuS Elektronik 1 (0.8%)
+ MontaVista 1 (0.8%)
+ OVRO 1 (0.8%)
+ Dirk Behme 1 (0.8%)
+ O.S. Systems 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2012.07.rst b/doc/develop/statistics/u-boot-stats-v2012.07.rst
new file mode 100644
index 0000000..040ddab
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2012.07.rst
@@ -0,0 +1,570 @@
+:orphan:
+
+Release Statistics for U-Boot v2012.07
+======================================
+
+* Processed 775 csets from 114 developers
+
+* 29 employers found
+
+* A total of 55134 lines added, 11790 removed (delta 43344)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Joe Hershberger 90 (11.6%)
+ Fabio Estevam 56 (7.2%)
+ Marek Vasut 42 (5.4%)
+ Stephen Warren 35 (4.5%)
+ SRICHARAN R 29 (3.7%)
+ Tom Rini 25 (3.2%)
+ Mike Frysinger 22 (2.8%)
+ Simon Glass 22 (2.8%)
+ Vipin Kumar 21 (2.7%)
+ Anatolij Gustschin 19 (2.5%)
+ Holger Brunck 18 (2.3%)
+ Nobuhiro Iwamatsu 15 (1.9%)
+ Donghwa Lee 14 (1.8%)
+ Prabhakar Kushwaha 14 (1.8%)
+ Valentin Longchamp 13 (1.7%)
+ Wolfgang Denk 12 (1.5%)
+ Łukasz Majewski 11 (1.4%)
+ Rajeshwari Shinde 11 (1.4%)
+ Stefan Roese 11 (1.4%)
+ Stefano Babic 10 (1.3%)
+ Amit Virdi 10 (1.3%)
+ Lokesh Vutla 10 (1.3%)
+ Timur Tabi 9 (1.2%)
+ Eric Nelson 8 (1.0%)
+ Timo Ketola 8 (1.0%)
+ Liu Gang 8 (1.0%)
+ Tom Warren 7 (0.9%)
+ Thierry Reding 7 (0.9%)
+ Rob Herring 7 (0.9%)
+ Dirk Eibach 7 (0.9%)
+ Ilya Yanok 6 (0.8%)
+ Jaehoon Chung 6 (0.8%)
+ Nikita Kiryanov 6 (0.8%)
+ Otavio Salvador 6 (0.8%)
+ Grazvydas Ignotas 6 (0.8%)
+ Aneesh V 6 (0.8%)
+ Macpaul Lin 5 (0.6%)
+ Lucas Stach 5 (0.6%)
+ Shiraz Hashim 5 (0.6%)
+ Armando Visconti 5 (0.6%)
+ Thomas Herzmann 5 (0.6%)
+ Andreas Bießmann 5 (0.6%)
+ Vikram Narayanan 5 (0.6%)
+ York Sun 5 (0.6%)
+ Yen Lin 5 (0.6%)
+ Daniel Schwierzeck 4 (0.5%)
+ Michael Walle 4 (0.5%)
+ Troy Kisky 4 (0.5%)
+ Steve Sakoman 4 (0.5%)
+ Bo Shen 4 (0.5%)
+ Benoît Thébaudeau 3 (0.4%)
+ Tetsuyuki Kobayashi 3 (0.4%)
+ Jerry Huang 3 (0.4%)
+ Andy Fleming 3 (0.4%)
+ Kim Phillips 3 (0.4%)
+ Jens Scharsig 3 (0.4%)
+ Simon Guinot 3 (0.4%)
+ Jimmy Zhang 3 (0.4%)
+ Pali Rohár 3 (0.4%)
+ Stephan Linz 3 (0.4%)
+ Tero Kristo 3 (0.4%)
+ Anton Staff 3 (0.4%)
+ Balaji T K 3 (0.4%)
+ Nishanth Menon 3 (0.4%)
+ Vladimir Zapolskiy 3 (0.4%)
+ Luka Perkov 2 (0.3%)
+ Minkyu Kang 2 (0.3%)
+ Heiko Schocher 2 (0.3%)
+ Shengzhou Liu 2 (0.3%)
+ Scott Wood 2 (0.3%)
+ Jeroen Hofstee 2 (0.3%)
+ Enric Balletbo i Serra 2 (0.3%)
+ Dirk Behme 2 (0.3%)
+ Shaohui Xie 2 (0.3%)
+ Linu Cherian 1 (0.1%)
+ Ashok 1 (0.1%)
+ Zhong Hongbo 1 (0.1%)
+ Stefan Herbrechtsmeier 1 (0.1%)
+ Thomas Chou 1 (0.1%)
+ Torsten Fleischer 1 (0.1%)
+ Igor Grinberg 1 (0.1%)
+ Jim Lin 1 (0.1%)
+ Peter Meerwald 1 (0.1%)
+ Vladimir Yakovlev 1 (0.1%)
+ Sebastien Jan 1 (0.1%)
+ Rajashekhara, Sudhakar 1 (0.1%)
+ David Purdy 1 (0.1%)
+ Alexandre Belloni 1 (0.1%)
+ Michael Langer 1 (0.1%)
+ Jason Liu 1 (0.1%)
+ Thomas Weber 1 (0.1%)
+ Allen Martin 1 (0.1%)
+ Ramneek Mehresh 1 (0.1%)
+ Jason Cooper 1 (0.1%)
+ Loïc Minier 1 (0.1%)
+ Stefan Bigler 1 (0.1%)
+ Christian Herzig 1 (0.1%)
+ Andreas Huber 1 (0.1%)
+ Phil Edworthy 1 (0.1%)
+ Aaron Williams 1 (0.1%)
+ Puneet Saxena 1 (0.1%)
+ Liu, Wentao 1 (0.1%)
+ Matt Porter 1 (0.1%)
+ Jon Hunter 1 (0.1%)
+ Rakesh Iyer 1 (0.1%)
+ Bernie Thompson 1 (0.1%)
+ Wei Ni 1 (0.1%)
+ Lauri Hintsala 1 (0.1%)
+ Wolfgang Grandegger 1 (0.1%)
+ Chander Kashyap 1 (0.1%)
+ Enric Balletbò i Serra 1 (0.1%)
+ Jonathan Solnit 1 (0.1%)
+ Ian Campbell 1 (0.1%)
+ Chunhe Lan 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Donghwa Lee 9434 (15.7%)
+ Mike Frysinger 3465 (5.8%)
+ Joe Hershberger 3048 (5.1%)
+ Marek Vasut 3032 (5.1%)
+ Nobuhiro Iwamatsu 2413 (4.0%)
+ Yen Lin 2098 (3.5%)
+ Stefano Babic 2090 (3.5%)
+ Łukasz Majewski 2022 (3.4%)
+ Stefan Roese 2019 (3.4%)
+ Macpaul Lin 1757 (2.9%)
+ Prabhakar Kushwaha 1554 (2.6%)
+ Simon Glass 1492 (2.5%)
+ SRICHARAN R 1403 (2.3%)
+ Vipin Kumar 1392 (2.3%)
+ Vladimir Zapolskiy 1389 (2.3%)
+ Holger Brunck 1350 (2.3%)
+ Rajeshwari Shinde 1350 (2.3%)
+ Luka Perkov 1320 (2.2%)
+ Stephen Warren 1317 (2.2%)
+ Fabio Estevam 1251 (2.1%)
+ Michael Walle 1227 (2.0%)
+ Tom Rini 1170 (2.0%)
+ Jens Scharsig 1072 (1.8%)
+ Liu Gang 883 (1.5%)
+ Bo Shen 719 (1.2%)
+ Jaehoon Chung 644 (1.1%)
+ Jimmy Zhang 600 (1.0%)
+ Thierry Reding 537 (0.9%)
+ Dirk Eibach 510 (0.9%)
+ David Purdy 498 (0.8%)
+ Valentin Longchamp 449 (0.7%)
+ Lokesh Vutla 432 (0.7%)
+ Rakesh Iyer 410 (0.7%)
+ Phil Edworthy 401 (0.7%)
+ Heiko Schocher 371 (0.6%)
+ Eric Nelson 368 (0.6%)
+ Bernie Thompson 309 (0.5%)
+ Enric Balletbò i Serra 273 (0.5%)
+ Shengzhou Liu 256 (0.4%)
+ Amit Virdi 226 (0.4%)
+ Rob Herring 214 (0.4%)
+ Nishanth Menon 210 (0.4%)
+ Nikita Kiryanov 190 (0.3%)
+ York Sun 176 (0.3%)
+ Timur Tabi 146 (0.2%)
+ Andy Fleming 144 (0.2%)
+ Jeroen Hofstee 120 (0.2%)
+ Armando Visconti 116 (0.2%)
+ Thomas Herzmann 114 (0.2%)
+ Grazvydas Ignotas 105 (0.2%)
+ Aneesh V 103 (0.2%)
+ Tom Warren 101 (0.2%)
+ Timo Ketola 100 (0.2%)
+ Anton Staff 87 (0.1%)
+ Scott Wood 85 (0.1%)
+ Daniel Schwierzeck 81 (0.1%)
+ Anatolij Gustschin 74 (0.1%)
+ Dirk Behme 73 (0.1%)
+ Balaji T K 70 (0.1%)
+ Wolfgang Denk 69 (0.1%)
+ Ramneek Mehresh 66 (0.1%)
+ Zhong Hongbo 65 (0.1%)
+ Vikram Narayanan 63 (0.1%)
+ Andreas Bießmann 61 (0.1%)
+ Puneet Saxena 61 (0.1%)
+ Troy Kisky 58 (0.1%)
+ Jonathan Solnit 58 (0.1%)
+ Shaohui Xie 57 (0.1%)
+ Andreas Huber 43 (0.1%)
+ Pali Rohár 41 (0.1%)
+ Ilya Yanok 39 (0.1%)
+ Minkyu Kang 38 (0.1%)
+ Lucas Stach 32 (0.1%)
+ Lauri Hintsala 31 (0.1%)
+ Simon Guinot 25 (0.0%)
+ Jason Cooper 24 (0.0%)
+ Tetsuyuki Kobayashi 21 (0.0%)
+ Alexandre Belloni 21 (0.0%)
+ Stefan Herbrechtsmeier 20 (0.0%)
+ Shiraz Hashim 18 (0.0%)
+ Jim Lin 18 (0.0%)
+ Wei Ni 18 (0.0%)
+ Enric Balletbo i Serra 17 (0.0%)
+ Matt Porter 16 (0.0%)
+ Thomas Chou 15 (0.0%)
+ Steve Sakoman 13 (0.0%)
+ Stephan Linz 12 (0.0%)
+ Otavio Salvador 11 (0.0%)
+ Kim Phillips 11 (0.0%)
+ Tero Kristo 10 (0.0%)
+ Vladimir Yakovlev 10 (0.0%)
+ Jerry Huang 9 (0.0%)
+ Rajashekhara, Sudhakar 8 (0.0%)
+ Benoît Thébaudeau 7 (0.0%)
+ Peter Meerwald 6 (0.0%)
+ Chunhe Lan 6 (0.0%)
+ Allen Martin 5 (0.0%)
+ Michael Langer 4 (0.0%)
+ Stefan Bigler 4 (0.0%)
+ Aaron Williams 3 (0.0%)
+ Wolfgang Grandegger 3 (0.0%)
+ Ashok 2 (0.0%)
+ Igor Grinberg 2 (0.0%)
+ Jason Liu 2 (0.0%)
+ Thomas Weber 2 (0.0%)
+ Chander Kashyap 2 (0.0%)
+ Ian Campbell 2 (0.0%)
+ Linu Cherian 1 (0.0%)
+ Torsten Fleischer 1 (0.0%)
+ Sebastien Jan 1 (0.0%)
+ Loïc Minier 1 (0.0%)
+ Christian Herzig 1 (0.0%)
+ Liu, Wentao 1 (0.0%)
+ Jon Hunter 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 831 (7.0%)
+ Jaehoon Chung 353 (3.0%)
+ Enric Balletbò i Serra 262 (2.2%)
+ Amit Virdi 104 (0.9%)
+ York Sun 51 (0.4%)
+ Timur Tabi 51 (0.4%)
+ Andreas Bießmann 43 (0.4%)
+ Wolfgang Denk 22 (0.2%)
+ Simon Guinot 13 (0.1%)
+ Thomas Chou 6 (0.1%)
+ Tero Kristo 6 (0.1%)
+ Stephan Linz 4 (0.0%)
+ Otavio Salvador 2 (0.0%)
+ Igor Grinberg 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 370)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 80 (21.6%)
+ Stefan Roese 46 (12.4%)
+ Kyungmin Park 32 (8.6%)
+ Amit Virdi 31 (8.4%)
+ Andy Fleming 16 (4.3%)
+ Kim Phillips 14 (3.8%)
+ Simon Glass 14 (3.8%)
+ Valentin Longchamp 13 (3.5%)
+ Minkyu Kang 11 (3.0%)
+ Anatolij Gustschin 10 (2.7%)
+ Holger Brunck 10 (2.7%)
+ Inki Dae 8 (2.2%)
+ Andreas Bießmann 6 (1.6%)
+ Scott Wood 6 (1.6%)
+ Igor Grinberg 5 (1.4%)
+ Radu Lazarescu 5 (1.4%)
+ Shaohui Xie 5 (1.4%)
+ Vivek Gautam 4 (1.1%)
+ Marius Grigoras 4 (1.1%)
+ Ilya Yanok 3 (0.8%)
+ SRICHARAN R 3 (0.8%)
+ Tom Rini 2 (0.5%)
+ Che-Liang Chiou 2 (0.5%)
+ Senthilvadivu Guruswamy 2 (0.5%)
+ Prafulla Wadaskar 2 (0.5%)
+ Abhilash Kesavan 2 (0.5%)
+ Priyanka Jain 2 (0.5%)
+ Akhil Goyal 2 (0.5%)
+ Rajan Srivastava 2 (0.5%)
+ Poonam Aggrwal 2 (0.5%)
+ Ramneek Mehresh 2 (0.5%)
+ Marek Vasut 2 (0.5%)
+ Vipin Kumar 2 (0.5%)
+ Wolfgang Denk 1 (0.3%)
+ Jason Liu 1 (0.3%)
+ Christian Herzig 1 (0.3%)
+ Lad, Prabhakar 1 (0.3%)
+ Hadli, Manjunath 1 (0.3%)
+ Daniel Stodden 1 (0.3%)
+ Catalin Udma 1 (0.3%)
+ Eric Miao 1 (0.3%)
+ Terry Lv 1 (0.3%)
+ Gerald Kerma 1 (0.3%)
+ Simon Baatz 1 (0.3%)
+ Anmol Paralkar 1 (0.3%)
+ John Russo 1 (0.3%)
+ Michel Sanches 1 (0.3%)
+ Peter Meerwald 1 (0.3%)
+ Shiraz Hashim 1 (0.3%)
+ Balaji T K 1 (0.3%)
+ Fabio Estevam 1 (0.3%)
+ Stefano Babic 1 (0.3%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 2)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Joe Hershberger 2 (100.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Anatolij Gustschin 3 (12.0%)
+ Tom Rini 3 (12.0%)
+ Wolfgang Denk 2 (8.0%)
+ Gary Thomas 2 (8.0%)
+ Pali Rohár 2 (8.0%)
+ Stephen Warren 2 (8.0%)
+ Simon Glass 1 (4.0%)
+ Holger Brunck 1 (4.0%)
+ Jaehoon Chung 1 (4.0%)
+ Simon Guinot 1 (4.0%)
+ Yoshihiro Shimoda 1 (4.0%)
+ Allen Martin 1 (4.0%)
+ Thierry Reding 1 (4.0%)
+ Eric Nelson 1 (4.0%)
+ David Purdy 1 (4.0%)
+ Jimmy Zhang 1 (4.0%)
+ Mike Frysinger 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Anatolij Gustschin 3 (12.0%)
+ Luka Perkov 3 (12.0%)
+ SRICHARAN R 2 (8.0%)
+ Tetsuyuki Kobayashi 2 (8.0%)
+ Jason Cooper 2 (8.0%)
+ Grazvydas Ignotas 2 (8.0%)
+ Timo Ketola 2 (8.0%)
+ Stephen Warren 1 (4.0%)
+ Allen Martin 1 (4.0%)
+ Tom Warren 1 (4.0%)
+ Andy Fleming 1 (4.0%)
+ Minkyu Kang 1 (4.0%)
+ Nobuhiro Iwamatsu 1 (4.0%)
+ Aaron Williams 1 (4.0%)
+ Lucas Stach 1 (4.0%)
+ Aneesh V 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Isabelle Gros 3 (25.0%)
+ Jerome Angeloni 3 (25.0%)
+ Pali Rohár 1 (8.3%)
+ Marek Vasut 1 (8.3%)
+ Deepak Sikri 1 (8.3%)
+ David Jander 1 (8.3%)
+ Armando Visconti 1 (8.3%)
+ Michael Walle 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nishanth Menon 6 (50.0%)
+ Shiraz Hashim 2 (16.7%)
+ Anatolij Gustschin 1 (8.3%)
+ Mike Frysinger 1 (8.3%)
+ Joe Hershberger 1 (8.3%)
+ Stefano Babic 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 102 (13.2%)
+ DENX Software Engineering 97 (12.5%)
+ (Unknown) 97 (12.5%)
+ National Instruments 90 (11.6%)
+ Texas Instruments 58 (7.5%)
+ NVidia 51 (6.6%)
+ Samsung 44 (5.7%)
+ ST Microelectronics 41 (5.3%)
+ Keymile 39 (5.0%)
+ Google, Inc. 26 (3.4%)
+ Konsulko Group 25 (3.2%)
+ Analog Devices 22 (2.8%)
+ Renesas Electronics 13 (1.7%)
+ Boundary Devices 12 (1.5%)
+ Calxeda 7 (0.9%)
+ CompuLab 7 (0.9%)
+ Guntermann & Drunck 7 (0.9%)
+ O.S. Systems 6 (0.8%)
+ Grazvydas Ignotas 6 (0.8%)
+ Atmel 4 (0.5%)
+ Sakoman Inc. 4 (0.5%)
+ ADVANSEE 3 (0.4%)
+ BuS Elektronik 3 (0.4%)
+ Bosch 3 (0.4%)
+ Nobuhiro Iwamatsu 3 (0.4%)
+ Linaro 2 (0.3%)
+ Bluegiga Technologies 1 (0.1%)
+ Debian.org 1 (0.1%)
+ Intel 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 13488 (22.5%)
+ (Unknown) 8487 (14.1%)
+ DENX Software Engineering 7658 (12.8%)
+ NVidia 4584 (7.6%)
+ Freescale 4044 (6.7%)
+ Analog Devices 3465 (5.8%)
+ National Instruments 3048 (5.1%)
+ Renesas Electronics 2803 (4.7%)
+ Texas Instruments 2254 (3.8%)
+ Keymile 1961 (3.3%)
+ Google, Inc. 1888 (3.1%)
+ ST Microelectronics 1752 (2.9%)
+ Konsulko Group 1170 (2.0%)
+ BuS Elektronik 1072 (1.8%)
+ Atmel 719 (1.2%)
+ Guntermann & Drunck 510 (0.9%)
+ Boundary Devices 426 (0.7%)
+ Calxeda 214 (0.4%)
+ CompuLab 192 (0.3%)
+ Grazvydas Ignotas 105 (0.2%)
+ Bosch 77 (0.1%)
+ Bluegiga Technologies 31 (0.1%)
+ Sakoman Inc. 13 (0.0%)
+ O.S. Systems 11 (0.0%)
+ Nobuhiro Iwamatsu 11 (0.0%)
+ ADVANSEE 7 (0.0%)
+ Linaro 4 (0.0%)
+ Debian.org 1 (0.0%)
+ Intel 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 370)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NVidia 80 (21.6%)
+ DENX Software Engineering 60 (16.2%)
+ Freescale 59 (15.9%)
+ Samsung 57 (15.4%)
+ ST Microelectronics 35 (9.5%)
+ Keymile 24 (6.5%)
+ (Unknown) 18 (4.9%)
+ Google, Inc. 16 (4.3%)
+ Texas Instruments 10 (2.7%)
+ CompuLab 5 (1.4%)
+ Linaro 2 (0.5%)
+ Marvell 2 (0.5%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ bct electronic GmbH 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 35 (29.9%)
+ Freescale 13 (11.1%)
+ Texas Instruments 10 (8.5%)
+ NVidia 9 (7.7%)
+ DENX Software Engineering 7 (6.0%)
+ Keymile 6 (5.1%)
+ Samsung 5 (4.3%)
+ ST Microelectronics 4 (3.4%)
+ Google, Inc. 3 (2.6%)
+ CompuLab 2 (1.7%)
+ Linaro 2 (1.7%)
+ Renesas Electronics 2 (1.7%)
+ Boundary Devices 2 (1.7%)
+ Bosch 2 (1.7%)
+ Nobuhiro Iwamatsu 1 (0.9%)
+ Analog Devices 1 (0.9%)
+ National Instruments 1 (0.9%)
+ Konsulko Group 1 (0.9%)
+ BuS Elektronik 1 (0.9%)
+ Atmel 1 (0.9%)
+ Guntermann & Drunck 1 (0.9%)
+ Calxeda 1 (0.9%)
+ Grazvydas Ignotas 1 (0.9%)
+ Bluegiga Technologies 1 (0.9%)
+ Sakoman Inc. 1 (0.9%)
+ O.S. Systems 1 (0.9%)
+ ADVANSEE 1 (0.9%)
+ Debian.org 1 (0.9%)
+ Intel 1 (0.9%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2012.10.rst b/doc/develop/statistics/u-boot-stats-v2012.10.rst
new file mode 100644
index 0000000..ec06b57
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2012.10.rst
@@ -0,0 +1,638 @@
+:orphan:
+
+Release Statistics for U-Boot v2012.12
+======================================
+
+* Processed 925 csets from 134 developers
+
+* 31 employers found
+
+* A total of 88011 lines added, 36373 removed (delta 51638)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ===================================== =====
+ Name Count
+ ===================================== =====
+ Benoît Thébaudeau 71 (7.7%)
+ Tom Rini 66 (7.1%)
+ Marek Vasut 51 (5.5%)
+ Troy Kisky 31 (3.4%)
+ Joe Hershberger 30 (3.2%)
+ Nobuhiro Iwamatsu 30 (3.2%)
+ Stephen Warren 28 (3.0%)
+ Michal Simek 27 (2.9%)
+ Otavio Salvador 26 (2.8%)
+ Stefano Babic 20 (2.2%)
+ Allen Martin 20 (2.2%)
+ Rajeshwari Shinde 19 (2.1%)
+ Gerlando Falauto 17 (1.8%)
+ Tetsuyuki Kobayashi 16 (1.7%)
+ Fabio Estevam 16 (1.7%)
+ York Sun 16 (1.7%)
+ Łukasz Majewski 15 (1.6%)
+ Simon Glass 14 (1.5%)
+ Stephan Linz 13 (1.4%)
+ Rob Herring 12 (1.3%)
+ Timur Tabi 12 (1.3%)
+ Ilya Yanok 11 (1.2%)
+ Bo Shen 11 (1.2%)
+ Andreas Bießmann 10 (1.1%)
+ Matt Sealey 10 (1.1%)
+ Mike Frysinger 10 (1.1%)
+ Mathieu J. Poirier 10 (1.1%)
+ Anatolij Gustschin 9 (1.0%)
+ Alison Wang 9 (1.0%)
+ Donghwa Lee 9 (1.0%)
+ Stefan Roese 8 (0.9%)
+ Holger Brunck 8 (0.9%)
+ Lucas Stach 8 (0.9%)
+ Valentin Longchamp 7 (0.8%)
+ Daniel Schwierzeck 7 (0.8%)
+ Prabhakar Lad 7 (0.8%)
+ Scott Wood 7 (0.8%)
+ Wu, Josh 7 (0.8%)
+ Yoshihiro Shimoda 7 (0.8%)
+ Matthew McClintock 7 (0.8%)
+ Laurence Withers 6 (0.6%)
+ Bastian Ruppert 6 (0.6%)
+ Lei Wen 6 (0.6%)
+ Liu Gang 6 (0.6%)
+ Albert ARIBAUD 5 (0.5%)
+ Peter Meerwald 5 (0.5%)
+ Nikita Kiryanov 5 (0.5%)
+ Andrew Sharp 5 (0.5%)
+ Javier Martinez Canillas 5 (0.5%)
+ Luka Perkov 4 (0.4%)
+ Karl O. Pinc 4 (0.4%)
+ Pavel Herrmann 4 (0.4%)
+ Kumar Gala 4 (0.4%)
+ Ira W. Snyder 4 (0.4%)
+ Ashok Kumar Reddy 4 (0.4%)
+ Jaehoon Chung 4 (0.4%)
+ Mikhail Kshevetskiy 4 (0.4%)
+ Markus Hubig 4 (0.4%)
+ Tomáš Hlaváček 4 (0.4%)
+ Viktor Krivak 4 (0.4%)
+ Prabhakar Kushwaha 4 (0.4%)
+ Shaohui Xie 4 (0.4%)
+ Igor Grinberg 3 (0.3%)
+ Wolfgang Denk 3 (0.3%)
+ Dinh Nguyen 3 (0.3%)
+ Zhong Hongbo 3 (0.3%)
+ Michael Walle 3 (0.3%)
+ Simon Guinot 3 (0.3%)
+ Sughosh Ganu 3 (0.3%)
+ Andy Fleming 3 (0.3%)
+ Jens Scharsig 3 (0.3%)
+ Joakim Tjernlund 3 (0.3%)
+ trem 3 (0.3%)
+ Chandan Nath 3 (0.3%)
+ Steve Sakoman 3 (0.3%)
+ Pavel Machek 2 (0.2%)
+ Gabriel Huau 2 (0.2%)
+ Hideyuki Sano 2 (0.2%)
+ Stefan Kristiansson 2 (0.2%)
+ Koen Kooi 2 (0.2%)
+ Eric Nelson 2 (0.2%)
+ Tom Warren 2 (0.2%)
+ Veli-Pekka Peltola 2 (0.2%)
+ Thierry Reding 2 (0.2%)
+ Charles Manning 2 (0.2%)
+ Vikram Narayanan 2 (0.2%)
+ Rajashekhara, Sudhakar 2 (0.2%)
+ Horst Kronstorfer 2 (0.2%)
+ Uma Shankar 2 (0.2%)
+ Jeroen Hofstee 1 (0.1%)
+ Simon Baatz 1 (0.1%)
+ Rommel Custodio 1 (0.1%)
+ Ramesh Chandrasekaran 1 (0.1%)
+ Chan-Taek Park 1 (0.1%)
+ Wolfgang Grandegger 1 (0.1%)
+ Joel A Fernandes 1 (0.1%)
+ Brian Rzycki 1 (0.1%)
+ Chander Kashyap 1 (0.1%)
+ Priyanka Jain 1 (0.1%)
+ Jason Jin 1 (0.1%)
+ Richard Retanubun 1 (0.1%)
+ Iwo Mergler 1 (0.1%)
+ Tyler Olmstead 1 (0.1%)
+ Matthieu CASTET 1 (0.1%)
+ Jim Lin 1 (0.1%)
+ Jongman Heo 1 (0.1%)
+ Arnout Vandecappelle (Essensium/Mind) 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Jagan Teki 1 (0.1%)
+ Kaspter Ju 1 (0.1%)
+ Xu, Hong 1 (0.1%)
+ Matej Frančeškin 1 (0.1%)
+ Łukasz Dałek 1 (0.1%)
+ Jim Shimer 1 (0.1%)
+ John Rigby 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Satyanarayana, Sandhya 1 (0.1%)
+ Stathis Voukelatos 1 (0.1%)
+ Enric Balletbò i Serra 1 (0.1%)
+ Vaibhav Bedia 1 (0.1%)
+ Cyril Chemparathy 1 (0.1%)
+ Jeremy Andrus 1 (0.1%)
+ Paul Gortmaker 1 (0.1%)
+ Kenth Eriksson 1 (0.1%)
+ Khem Raj 1 (0.1%)
+ Jorgen Lundman 1 (0.1%)
+ Julius Baxter 1 (0.1%)
+ Dirk Eibach 1 (0.1%)
+ Timo Ketola 1 (0.1%)
+ Bernhard Walle 1 (0.1%)
+ Hongtao Jia 1 (0.1%)
+ David du Colombier 1 (0.1%)
+ Jayachandran Chandrasekharan Nair 1 (0.1%)
+ Jérôme Carretero 1 (0.1%)
+ ===================================== =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ===================================== =====
+ Name Count
+ ===================================== =====
+ Charles Manning 13922 (13.8%)
+ Nobuhiro Iwamatsu 9559 (9.5%)
+ Marek Vasut 5946 (5.9%)
+ Uma Shankar 5463 (5.4%)
+ Jorgen Lundman 4750 (4.7%)
+ Lei Wen 3818 (3.8%)
+ Donghwa Lee 3597 (3.6%)
+ Wolfgang Denk 3185 (3.2%)
+ Anatolij Gustschin 2534 (2.5%)
+ Rajeshwari Shinde 2433 (2.4%)
+ Timur Tabi 2252 (2.2%)
+ Mathieu J. Poirier 2180 (2.2%)
+ Tom Rini 2038 (2.0%)
+ Rob Herring 1962 (2.0%)
+ Łukasz Majewski 1940 (1.9%)
+ Benoît Thébaudeau 1637 (1.6%)
+ Michal Simek 1546 (1.5%)
+ Allen Martin 1429 (1.4%)
+ Alison Wang 1339 (1.3%)
+ Jim Lin 1287 (1.3%)
+ Stephen Warren 1224 (1.2%)
+ Stefan Roese 1207 (1.2%)
+ Troy Kisky 1148 (1.1%)
+ Bo Shen 1098 (1.1%)
+ Joe Hershberger 1083 (1.1%)
+ Otavio Salvador 1071 (1.1%)
+ Cyril Chemparathy 1043 (1.0%)
+ Gabriel Huau 1008 (1.0%)
+ York Sun 946 (0.9%)
+ Wu, Josh 945 (0.9%)
+ Dinh Nguyen 905 (0.9%)
+ Gerlando Falauto 869 (0.9%)
+ Tomáš Hlaváček 757 (0.8%)
+ Matt Sealey 698 (0.7%)
+ Markus Hubig 679 (0.7%)
+ Pavel Herrmann 673 (0.7%)
+ Shaohui Xie 647 (0.6%)
+ Veli-Pekka Peltola 620 (0.6%)
+ Stefano Babic 611 (0.6%)
+ Hideyuki Sano 566 (0.6%)
+ Liu Gang 544 (0.5%)
+ Scott Wood 509 (0.5%)
+ Stephan Linz 500 (0.5%)
+ Valentin Longchamp 488 (0.5%)
+ Luka Perkov 488 (0.5%)
+ Viktor Krivak 472 (0.5%)
+ Simon Glass 465 (0.5%)
+ Mike Frysinger 451 (0.4%)
+ Andreas Bießmann 448 (0.4%)
+ Richard Retanubun 415 (0.4%)
+ Yoshihiro Shimoda 330 (0.3%)
+ Ilya Yanok 299 (0.3%)
+ Matthew McClintock 241 (0.2%)
+ Simon Guinot 241 (0.2%)
+ Prabhakar Lad 219 (0.2%)
+ John Rigby 213 (0.2%)
+ Lucas Stach 209 (0.2%)
+ Javier Martinez Canillas 209 (0.2%)
+ trem 207 (0.2%)
+ Bastian Ruppert 205 (0.2%)
+ Chandan Nath 182 (0.2%)
+ Łukasz Dałek 159 (0.2%)
+ Andrew Sharp 157 (0.2%)
+ Linus Walleij 156 (0.2%)
+ Fabio Estevam 154 (0.2%)
+ Tom Warren 147 (0.1%)
+ Sughosh Ganu 128 (0.1%)
+ Daniel Schwierzeck 122 (0.1%)
+ Nikita Kiryanov 109 (0.1%)
+ Steve Sakoman 101 (0.1%)
+ Tetsuyuki Kobayashi 97 (0.1%)
+ Laurence Withers 97 (0.1%)
+ Holger Brunck 94 (0.1%)
+ Ira W. Snyder 93 (0.1%)
+ Heiko Schocher 69 (0.1%)
+ Jason Jin 68 (0.1%)
+ Hongtao Jia 49 (0.0%)
+ Chander Kashyap 48 (0.0%)
+ Mikhail Kshevetskiy 39 (0.0%)
+ Ashok Kumar Reddy 36 (0.0%)
+ Kumar Gala 33 (0.0%)
+ Zhong Hongbo 33 (0.0%)
+ Karl O. Pinc 32 (0.0%)
+ Vikram Narayanan 32 (0.0%)
+ Prabhakar Kushwaha 30 (0.0%)
+ Michael Walle 30 (0.0%)
+ Eric Nelson 30 (0.0%)
+ Pavel Machek 29 (0.0%)
+ Kaspter Ju 29 (0.0%)
+ Kenth Eriksson 27 (0.0%)
+ Jaehoon Chung 26 (0.0%)
+ Igor Grinberg 26 (0.0%)
+ Wolfgang Grandegger 26 (0.0%)
+ Thierry Reding 23 (0.0%)
+ Jens Scharsig 22 (0.0%)
+ Albert ARIBAUD 21 (0.0%)
+ Joakim Tjernlund 19 (0.0%)
+ Andy Fleming 18 (0.0%)
+ Stefan Kristiansson 14 (0.0%)
+ Priyanka Jain 14 (0.0%)
+ Rajashekhara, Sudhakar 13 (0.0%)
+ Julius Baxter 13 (0.0%)
+ Koen Kooi 12 (0.0%)
+ Jim Shimer 12 (0.0%)
+ Paul Gortmaker 12 (0.0%)
+ Peter Meerwald 11 (0.0%)
+ Xu, Hong 10 (0.0%)
+ Simon Baatz 7 (0.0%)
+ Satyanarayana, Sandhya 7 (0.0%)
+ Stathis Voukelatos 6 (0.0%)
+ Enric Balletbò i Serra 6 (0.0%)
+ Jérôme Carretero 6 (0.0%)
+ Horst Kronstorfer 5 (0.0%)
+ Arnout Vandecappelle (Essensium/Mind) 5 (0.0%)
+ Vaibhav Bedia 5 (0.0%)
+ Jeremy Andrus 5 (0.0%)
+ Khem Raj 5 (0.0%)
+ Dirk Eibach 5 (0.0%)
+ Ramesh Chandrasekaran 4 (0.0%)
+ Chan-Taek Park 4 (0.0%)
+ Joel A Fernandes 4 (0.0%)
+ Jagan Teki 4 (0.0%)
+ Timo Ketola 4 (0.0%)
+ Tyler Olmstead 3 (0.0%)
+ Brian Rzycki 2 (0.0%)
+ Matthieu CASTET 2 (0.0%)
+ Jeroen Hofstee 1 (0.0%)
+ Rommel Custodio 1 (0.0%)
+ Iwo Mergler 1 (0.0%)
+ Jongman Heo 1 (0.0%)
+ Matej Frančeškin 1 (0.0%)
+ Bernhard Walle 1 (0.0%)
+ David du Colombier 1 (0.0%)
+ Jayachandran Chandrasekharan Nair 1 (0.0%)
+ ===================================== =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 2612 (7.2%)
+ Timur Tabi 1845 (5.1%)
+ Rob Herring 1394 (3.8%)
+ Mike Frysinger 338 (0.9%)
+ Marek Vasut 129 (0.4%)
+ Fabio Estevam 90 (0.2%)
+ Matt Sealey 53 (0.1%)
+ Linus Walleij 45 (0.1%)
+ Kaspter Ju 29 (0.1%)
+ Vikram Narayanan 14 (0.0%)
+ Jim Shimer 12 (0.0%)
+ Daniel Schwierzeck 4 (0.0%)
+ Joakim Tjernlund 4 (0.0%)
+ Tom Warren 3 (0.0%)
+ Igor Grinberg 2 (0.0%)
+ Tyler Olmstead 2 (0.0%)
+ Ashok Kumar Reddy 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 367)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andy Fleming 70 (19.1%)
+ Tom Warren 31 (8.4%)
+ Kyungmin Park 28 (7.6%)
+ Andreas Bießmann 27 (7.4%)
+ Minkyu Kang 24 (6.5%)
+ Tom Rini 21 (5.7%)
+ Scott Wood 18 (4.9%)
+ Nobuhiro Iwamatsu 15 (4.1%)
+ John Rigby 10 (2.7%)
+ Mike Frysinger 9 (2.5%)
+ Hadli, Manjunath 9 (2.5%)
+ Alim Akhtar 7 (1.9%)
+ Rajashekhara, Sudhakar 7 (1.9%)
+ Stefan Roese 6 (1.6%)
+ Igor Grinberg 4 (1.1%)
+ Kim Phillips 4 (1.1%)
+ Hatim Ali 4 (1.1%)
+ Doug Anderson 4 (1.1%)
+ Ilya Yanok 4 (1.1%)
+ York Sun 4 (1.1%)
+ Abhilash Kesavan 3 (0.8%)
+ Holger Brunck 3 (0.8%)
+ Kumar Gala 3 (0.8%)
+ Simon Glass 3 (0.8%)
+ Hideyuki Sano 3 (0.8%)
+ Michal Simek 3 (0.8%)
+ Wolfgang Denk 2 (0.5%)
+ Daniel Schwierzeck 2 (0.5%)
+ Jens Scharsig (BuS Elektronik) 2 (0.5%)
+ Che-Liang Chiou 2 (0.5%)
+ Tom Wai-Hong Tam 2 (0.5%)
+ Manjunatha C Achar 2 (0.5%)
+ Iqbal Shareef 2 (0.5%)
+ Hakgoo Lee 2 (0.5%)
+ Pavel Machek 2 (0.5%)
+ Prabhakar Lad 2 (0.5%)
+ Rob Herring 1 (0.3%)
+ Jim Shimer 1 (0.3%)
+ Chin Liang See 1 (0.3%)
+ Jate Sujjavanich 1 (0.3%)
+ Artem Bityutskiy 1 (0.3%)
+ David Woodhouse 1 (0.3%)
+ Prafulla Wadaskar 1 (0.3%)
+ Lauri Hintsala 1 (0.3%)
+ Radu Lazarescu 1 (0.3%)
+ Ralf Baechle 1 (0.3%)
+ Thomas Weber 1 (0.3%)
+ Li Yang 1 (0.3%)
+ Jerry Huang 1 (0.3%)
+ Jiang Yutang 1 (0.3%)
+ Satyanarayana, Sandhya 1 (0.3%)
+ Simon Baatz 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ Jason Jin 1 (0.3%)
+ Otavio Salvador 1 (0.3%)
+ Chandan Nath 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Gerlando Falauto 1 (0.3%)
+ Mathieu J. Poirier 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 15)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 14 (93.3%)
+ Matthew Gerlach 1 (6.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 52)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thierry Reding 14 (26.9%)
+ Christian Riesch 12 (23.1%)
+ Fabio Estevam 3 (5.8%)
+ Michal Simek 2 (3.8%)
+ Albert ARIBAUD 2 (3.8%)
+ Sughosh Ganu 2 (3.8%)
+ Stefano Babic 2 (3.8%)
+ Allen Martin 2 (3.8%)
+ Andreas Bießmann 1 (1.9%)
+ Tom Rini 1 (1.9%)
+ Wolfgang Denk 1 (1.9%)
+ Jens Scharsig (BuS Elektronik) 1 (1.9%)
+ Matt Sealey 1 (1.9%)
+ Wojciech Dubowik 1 (1.9%)
+ Tim Fletcher 1 (1.9%)
+ Matt Porter 1 (1.9%)
+ Jeroen Hofstee 1 (1.9%)
+ Jaehoon Chung 1 (1.9%)
+ Javier Martinez Canillas 1 (1.9%)
+ Valentin Longchamp 1 (1.9%)
+ Luka Perkov 1 (1.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 52)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Allen Martin 14 (26.9%)
+ Prabhakar Lad 7 (13.5%)
+ Mikhail Kshevetskiy 4 (7.7%)
+ Tom Rini 3 (5.8%)
+ Luka Perkov 3 (5.8%)
+ Stefano Babic 2 (3.8%)
+ Marek Vasut 2 (3.8%)
+ Rajashekhara, Sudhakar 2 (3.8%)
+ Stefan Roese 2 (3.8%)
+ Anatolij Gustschin 2 (3.8%)
+ Zhong Hongbo 2 (3.8%)
+ Stephan Linz 2 (3.8%)
+ Albert ARIBAUD 1 (1.9%)
+ Andreas Bießmann 1 (1.9%)
+ Andy Fleming 1 (1.9%)
+ Gerlando Falauto 1 (1.9%)
+ Enric Balletbò i Serra 1 (1.9%)
+ Eric Nelson 1 (1.9%)
+ Veli-Pekka Peltola 1 (1.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 9)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Albert ARIBAUD 3 (33.3%)
+ Prabhakar Lad 2 (22.2%)
+ Stefano Babic 1 (11.1%)
+ Igor Grinberg 1 (11.1%)
+ Rafael Beims 1 (11.1%)
+ James Miller 1 (11.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 9)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nobuhiro Iwamatsu 2 (22.2%)
+ Stephen Warren 2 (22.2%)
+ Marek Vasut 1 (11.1%)
+ Anatolij Gustschin 1 (11.1%)
+ Gerlando Falauto 1 (11.1%)
+ Matthieu CASTET 1 (11.1%)
+ Joe Hershberger 1 (11.1%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 203 (21.9%)
+ DENX Software Engineering 95 (10.3%)
+ Freescale 92 (9.9%)
+ ADVANSEE 71 (7.7%)
+ Konsulko Group 66 (7.1%)
+ Samsung 49 (5.3%)
+ NVidia 46 (5.0%)
+ Renesas Electronics 37 (4.0%)
+ Boundary Devices 33 (3.6%)
+ Keymile 32 (3.5%)
+ National Instruments 30 (3.2%)
+ Xilinx 27 (2.9%)
+ O.S. Systems 26 (2.8%)
+ Atmel 19 (2.1%)
+ Texas Instruments 17 (1.8%)
+ Google, Inc. 14 (1.5%)
+ Linaro 13 (1.4%)
+ Calxeda 12 (1.3%)
+ Analog Devices 10 (1.1%)
+ CompuLab 8 (0.9%)
+ bct electronic GmbH 5 (0.5%)
+ OVRO 4 (0.4%)
+ Transmode Systems 4 (0.4%)
+ Sakoman Inc. 3 (0.3%)
+ Bluegiga Technologies 2 (0.2%)
+ Nobuhiro Iwamatsu 2 (0.2%)
+ Wind River 1 (0.1%)
+ Guntermann & Drunck 1 (0.1%)
+ Motorola 1 (0.1%)
+ RuggedCom 1 (0.1%)
+ ST-Ericsson 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 32255 (32.1%)
+ DENX Software Engineering 13607 (13.5%)
+ Samsung 13459 (13.4%)
+ Renesas Electronics 10389 (10.3%)
+ Freescale 6846 (6.8%)
+ NVidia 3482 (3.5%)
+ Linaro 2597 (2.6%)
+ Atmel 2053 (2.0%)
+ Konsulko Group 2038 (2.0%)
+ Calxeda 1962 (2.0%)
+ ADVANSEE 1637 (1.6%)
+ Xilinx 1546 (1.5%)
+ Texas Instruments 1477 (1.5%)
+ Keymile 1451 (1.4%)
+ Boundary Devices 1178 (1.2%)
+ National Instruments 1083 (1.1%)
+ O.S. Systems 1071 (1.1%)
+ Bluegiga Technologies 620 (0.6%)
+ Google, Inc. 465 (0.5%)
+ Analog Devices 451 (0.4%)
+ RuggedCom 415 (0.4%)
+ CompuLab 135 (0.1%)
+ Sakoman Inc. 101 (0.1%)
+ OVRO 93 (0.1%)
+ Nobuhiro Iwamatsu 66 (0.1%)
+ Transmode Systems 46 (0.0%)
+ Wind River 12 (0.0%)
+ Motorola 12 (0.0%)
+ bct electronic GmbH 11 (0.0%)
+ Guntermann & Drunck 5 (0.0%)
+ ST-Ericsson 4 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 367)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 104 (28.3%)
+ Samsung 72 (19.6%)
+ (Unknown) 42 (11.4%)
+ Texas Instruments 41 (11.2%)
+ NVidia 31 (8.4%)
+ Nobuhiro Iwamatsu 14 (3.8%)
+ DENX Software Engineering 11 (3.0%)
+ Linaro 11 (3.0%)
+ Google, Inc. 11 (3.0%)
+ Analog Devices 9 (2.5%)
+ Renesas Electronics 4 (1.1%)
+ Keymile 4 (1.1%)
+ CompuLab 4 (1.1%)
+ BuS Elektronik 2 (0.5%)
+ Intel 2 (0.5%)
+ Calxeda 1 (0.3%)
+ O.S. Systems 1 (0.3%)
+ Bluegiga Technologies 1 (0.3%)
+ Motorola 1 (0.3%)
+ Marvell 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 136)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 59 (43.4%)
+ Freescale 15 (11.0%)
+ Texas Instruments 8 (5.9%)
+ DENX Software Engineering 8 (5.9%)
+ Samsung 5 (3.7%)
+ NVidia 4 (2.9%)
+ Linaro 4 (2.9%)
+ Renesas Electronics 3 (2.2%)
+ Keymile 3 (2.2%)
+ Atmel 3 (2.2%)
+ CompuLab 2 (1.5%)
+ Boundary Devices 2 (1.5%)
+ Transmode Systems 2 (1.5%)
+ Nobuhiro Iwamatsu 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Analog Devices 1 (0.7%)
+ Calxeda 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ Bluegiga Technologies 1 (0.7%)
+ Motorola 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ ADVANSEE 1 (0.7%)
+ Xilinx 1 (0.7%)
+ National Instruments 1 (0.7%)
+ RuggedCom 1 (0.7%)
+ Sakoman Inc. 1 (0.7%)
+ OVRO 1 (0.7%)
+ Wind River 1 (0.7%)
+ bct electronic GmbH 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ ST-Ericsson 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2013.01.rst b/doc/develop/statistics/u-boot-stats-v2013.01.rst
new file mode 100644
index 0000000..5eaa578
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2013.01.rst
@@ -0,0 +1,664 @@
+:orphan:
+
+Release Statistics for U-Boot v2013.01
+======================================
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 132 (11.3%)
+ Simon Glass 93 (7.9%)
+ Fabio Estevam 58 (4.9%)
+ Benoît Thébaudeau 50 (4.3%)
+ Joe Hershberger 42 (3.6%)
+ Stephen Warren 42 (3.6%)
+ Rajeshwari Shinde 39 (3.3%)
+ Łukasz Majewski 39 (3.3%)
+ Gabe Black 36 (3.1%)
+ York Sun 31 (2.6%)
+ Kim Phillips 30 (2.6%)
+ Tom Rini 28 (2.4%)
+ Scott Wood 24 (2.0%)
+ Stefan Reinauer 20 (1.7%)
+ Ilya Yanok 19 (1.6%)
+ Stefan Roese 18 (1.5%)
+ Piotr Wilczek 18 (1.5%)
+ Stefano Babic 15 (1.3%)
+ Lucas Stach 15 (1.3%)
+ Eric Nelson 15 (1.3%)
+ Otavio Salvador 13 (1.1%)
+ Vadim Bendebury 13 (1.1%)
+ Troy Kisky 12 (1.0%)
+ Allen Martin 11 (0.9%)
+ Pavel Herrmann 11 (0.9%)
+ Łukasz Dałek 10 (0.9%)
+ Albert ARIBAUD 10 (0.9%)
+ Tetsuyuki Kobayashi 10 (0.9%)
+ Daniel Schwierzeck 9 (0.8%)
+ Timur Tabi 9 (0.8%)
+ Ajay Kumar 8 (0.7%)
+ Taylor Hutt 8 (0.7%)
+ Hatim RV 8 (0.7%)
+ Robert P. J. Day 8 (0.7%)
+ Nikita Kiryanov 7 (0.6%)
+ Peter Korsgaard 7 (0.6%)
+ Wolfgang Denk 6 (0.5%)
+ Jaehoon Chung 6 (0.5%)
+ Tom Wai-Hong Tam 6 (0.5%)
+ Andreas Bießmann 6 (0.5%)
+ Michal Simek 6 (0.5%)
+ Zhi-zhou Zhang 6 (0.5%)
+ Gerlando Falauto 6 (0.5%)
+ Minkyu Kang 5 (0.4%)
+ Ashok 5 (0.4%)
+ Chander Kashyap 5 (0.4%)
+ Armando Visconti 5 (0.4%)
+ Duncan Laurie 5 (0.4%)
+ Graeme Russ 5 (0.4%)
+ Andrew Bradford 5 (0.4%)
+ Jens Scharsig (BuS Elektronik) 4 (0.3%)
+ Yoshihiro Shimoda 4 (0.3%)
+ Nobuhiro Iwamatsu 4 (0.3%)
+ Richard Genoud 4 (0.3%)
+ Andy Fleming 4 (0.3%)
+ Wu, Josh 4 (0.3%)
+ Vikram Narayanan 4 (0.3%)
+ Pali Rohár 4 (0.3%)
+ Jason Jin 4 (0.3%)
+ Alison Wang 4 (0.3%)
+ Bo Shen 3 (0.3%)
+ Javier Martinez Canillas 3 (0.3%)
+ Holger Brunck 3 (0.3%)
+ Shawn Guo 3 (0.3%)
+ Prabhakar Kushwaha 3 (0.3%)
+ Mike Frysinger 3 (0.3%)
+ Pantelis Antoniou 3 (0.3%)
+ Vincent Palatin 3 (0.3%)
+ Vincent Stehlé 3 (0.3%)
+ Zang Roy-R61911 3 (0.3%)
+ Marc Jones 3 (0.3%)
+ Hung-Te Lin 3 (0.3%)
+ Igor Grinberg 2 (0.2%)
+ angelo 2 (0.2%)
+ Eric Benard 2 (0.2%)
+ Yegor Yefremov 2 (0.2%)
+ Mansoor Ahamed 2 (0.2%)
+ Luka Perkov 2 (0.2%)
+ Che-Liang Chiou 2 (0.2%)
+ Bill Richardson 2 (0.2%)
+ Matthias Fuchs 2 (0.2%)
+ Shaohui Xie 2 (0.2%)
+ Gerald Van Baren 2 (0.2%)
+ Tom Warren 2 (0.2%)
+ Abhilash Kesavan 2 (0.2%)
+ Thomas Chou 2 (0.2%)
+ Walter Murphy 2 (0.2%)
+ Liu Gang 2 (0.2%)
+ Haiying Wang 2 (0.2%)
+ Shengzhou Liu 2 (0.2%)
+ Laurentiu Tudor 2 (0.2%)
+ Minghuan Lian 2 (0.2%)
+ Thierry Reding 2 (0.2%)
+ Peter Meerwald 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Doug Anderson 1 (0.1%)
+ Arun Mankuzhi 1 (0.1%)
+ Luke Lowrey 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Valentin Longchamp 1 (0.1%)
+ Vivek Gautam 1 (0.1%)
+ James Miller 1 (0.1%)
+ Milind Choudhary 1 (0.1%)
+ Vipin Kumar 1 (0.1%)
+ trem 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Chang Hyun Park 1 (0.1%)
+ Wolfram Sang 1 (0.1%)
+ Luigi Semenzato 1 (0.1%)
+ Sean Paul 1 (0.1%)
+ Kenneth Waters 1 (0.1%)
+ Anton Staaf 1 (0.1%)
+ Lars Rasmusson 1 (0.1%)
+ Thomas Weber 1 (0.1%)
+ Davide Bonfanti 1 (0.1%)
+ ajoy 1 (0.1%)
+ Lokesh Vutla 1 (0.1%)
+ Peter Barada 1 (0.1%)
+ Joshua Housh 1 (0.1%)
+ Jerry Huang 1 (0.1%)
+ Yuanquan Chen 1 (0.1%)
+ Mela Custodio 1 (0.1%)
+ Karl O. Pinc 1 (0.1%)
+ José Miguel Gonçalves 1 (0.1%)
+ Jeroen Hofstee 1 (0.1%)
+ Mayuresh Kulkarni 1 (0.1%)
+ Wei Ni 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Alejandro Mery 1 (0.1%)
+ Liu Ying 1 (0.1%)
+ Koen Kooi 1 (0.1%)
+ Raphael Assenat 1 (0.1%)
+ Stephan Gatzka 1 (0.1%)
+ Marc Dietrich 1 (0.1%)
+ Yann Vernier 1 (0.1%)
+ Annamalai Lakshmanan 1 (0.1%)
+ Tushar Behera 1 (0.1%)
+ Vaibhav Hiremath 1 (0.1%)
+ Joel A Fernandes 1 (0.1%)
+ Pankaj Bharadiya 1 (0.1%)
+ Mingkai Hu 1 (0.1%)
+ Kumar Gala 1 (0.1%)
+ Shaveta Leekha 1 (0.1%)
+ ramneek mehresh 1 (0.1%)
+ Mark Marshall 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Louis Yung-Chieh Lo 1 (0.1%)
+ Philippe De Muyter 1 (0.1%)
+ Jagan Teki 1 (0.1%)
+ Paul Gortmaker 1 (0.1%)
+ David Gibson 1 (0.1%)
+ Matthias Weisser 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 17893 (14.3%)
+ Ilya Yanok 14706 (11.8%)
+ Wolfgang Denk 11127 (8.9%)
+ Stefan Roese 10284 (8.2%)
+ York Sun 5190 (4.2%)
+ Albert ARIBAUD 4314 (3.5%)
+ Rajeshwari Shinde 3971 (3.2%)
+ Simon Glass 3225 (2.6%)
+ Joe Hershberger 3038 (2.4%)
+ Alison Wang 2966 (2.4%)
+ Łukasz Dałek 2660 (2.1%)
+ Pali Rohár 2623 (2.1%)
+ Łukasz Majewski 2406 (1.9%)
+ Tom Rini 2280 (1.8%)
+ Benoît Thébaudeau 2037 (1.6%)
+ Fabio Estevam 1919 (1.5%)
+ Eric Nelson 1849 (1.5%)
+ Gabe Black 1758 (1.4%)
+ Paul Gortmaker 1539 (1.2%)
+ Piotr Wilczek 1527 (1.2%)
+ Yoshihiro Shimoda 1480 (1.2%)
+ Timur Tabi 1456 (1.2%)
+ Stefano Babic 1310 (1.0%)
+ Kim Phillips 1284 (1.0%)
+ Scott Wood 1186 (0.9%)
+ Zhi-zhou Zhang 1146 (0.9%)
+ Wei Ni 1109 (0.9%)
+ Lucas Stach 1066 (0.9%)
+ Stephen Warren 1038 (0.8%)
+ Graeme Russ 993 (0.8%)
+ Peter Korsgaard 868 (0.7%)
+ Jaehoon Chung 787 (0.6%)
+ Tom Wai-Hong Tam 784 (0.6%)
+ Jens Scharsig (BuS Elektronik) 779 (0.6%)
+ Tom Warren 779 (0.6%)
+ Mansoor Ahamed 713 (0.6%)
+ Pavel Herrmann 689 (0.6%)
+ Zang Roy-R61911 679 (0.5%)
+ Stefan Reinauer 607 (0.5%)
+ Raphael Assenat 594 (0.5%)
+ Vadim Bendebury 588 (0.5%)
+ Chander Kashyap 567 (0.5%)
+ Bill Richardson 503 (0.4%)
+ Gerlando Falauto 461 (0.4%)
+ Troy Kisky 439 (0.4%)
+ Hatim RV 364 (0.3%)
+ Shaveta Leekha 262 (0.2%)
+ Hung-Te Lin 227 (0.2%)
+ Otavio Salvador 224 (0.2%)
+ Daniel Schwierzeck 220 (0.2%)
+ Vikram Narayanan 210 (0.2%)
+ Liu Gang 209 (0.2%)
+ Andrew Bradford 179 (0.1%)
+ David Gibson 170 (0.1%)
+ Allen Martin 169 (0.1%)
+ Andy Fleming 159 (0.1%)
+ Nikita Kiryanov 155 (0.1%)
+ Ajay Kumar 146 (0.1%)
+ Minghuan Lian 138 (0.1%)
+ Tetsuyuki Kobayashi 129 (0.1%)
+ Peter Barada 122 (0.1%)
+ Marc Jones 120 (0.1%)
+ Chang Hyun Park 114 (0.1%)
+ Armando Visconti 110 (0.1%)
+ Annamalai Lakshmanan 110 (0.1%)
+ Gerald Van Baren 100 (0.1%)
+ Minkyu Kang 87 (0.1%)
+ Shawn Guo 87 (0.1%)
+ Luigi Semenzato 87 (0.1%)
+ Kenneth Waters 84 (0.1%)
+ Prabhakar Kushwaha 75 (0.1%)
+ Taylor Hutt 71 (0.1%)
+ Wu, Josh 71 (0.1%)
+ Jason Jin 62 (0.0%)
+ Doug Anderson 62 (0.0%)
+ Laurentiu Tudor 60 (0.0%)
+ Anton Staaf 59 (0.0%)
+ Holger Brunck 56 (0.0%)
+ Abhilash Kesavan 53 (0.0%)
+ Michal Simek 51 (0.0%)
+ Richard Genoud 51 (0.0%)
+ Louis Yung-Chieh Lo 51 (0.0%)
+ Ashok 48 (0.0%)
+ ajoy 45 (0.0%)
+ Vaibhav Hiremath 45 (0.0%)
+ Thomas Chou 44 (0.0%)
+ Che-Liang Chiou 43 (0.0%)
+ James Miller 39 (0.0%)
+ Andreas Bießmann 38 (0.0%)
+ Vincent Stehlé 38 (0.0%)
+ Sean Paul 36 (0.0%)
+ Lokesh Vutla 36 (0.0%)
+ ramneek mehresh 34 (0.0%)
+ Bo Shen 31 (0.0%)
+ Matthias Fuchs 30 (0.0%)
+ Mike Frysinger 29 (0.0%)
+ Vipin Kumar 28 (0.0%)
+ angelo 27 (0.0%)
+ Haiying Wang 27 (0.0%)
+ Duncan Laurie 26 (0.0%)
+ Yuanquan Chen 26 (0.0%)
+ Marc Dietrich 25 (0.0%)
+ Robert P. J. Day 24 (0.0%)
+ Vincent Palatin 20 (0.0%)
+ Vivek Gautam 19 (0.0%)
+ Walter Murphy 18 (0.0%)
+ Shengzhou Liu 18 (0.0%)
+ Milind Choudhary 15 (0.0%)
+ Kumar Gala 15 (0.0%)
+ Nobuhiro Iwamatsu 14 (0.0%)
+ Javier Martinez Canillas 14 (0.0%)
+ Valentin Longchamp 14 (0.0%)
+ Pantelis Antoniou 13 (0.0%)
+ Igor Grinberg 13 (0.0%)
+ Luka Perkov 11 (0.0%)
+ trem 11 (0.0%)
+ Ruchika Gupta 11 (0.0%)
+ Thomas Weber 11 (0.0%)
+ Mayuresh Kulkarni 11 (0.0%)
+ Thierry Reding 10 (0.0%)
+ Jeroen Hofstee 10 (0.0%)
+ Liu Ying 10 (0.0%)
+ Pankaj Bharadiya 10 (0.0%)
+ Matthias Weisser 10 (0.0%)
+ Anatolij Gustschin 8 (0.0%)
+ Joel A Fernandes 7 (0.0%)
+ Eric Benard 6 (0.0%)
+ Yegor Yefremov 6 (0.0%)
+ Shaohui Xie 6 (0.0%)
+ José Miguel Gonçalves 6 (0.0%)
+ Koen Kooi 6 (0.0%)
+ Tushar Behera 6 (0.0%)
+ Arun Mankuzhi 4 (0.0%)
+ Michael Walle 4 (0.0%)
+ Mela Custodio 4 (0.0%)
+ Mark Marshall 4 (0.0%)
+ Chris Packham 4 (0.0%)
+ Wolfram Sang 3 (0.0%)
+ Alejandro Mery 3 (0.0%)
+ Yann Vernier 3 (0.0%)
+ Jagan Teki 3 (0.0%)
+ Peter Meerwald 2 (0.0%)
+ Joshua Housh 2 (0.0%)
+ Dirk Behme 2 (0.0%)
+ Stephan Gatzka 2 (0.0%)
+ Philippe De Muyter 2 (0.0%)
+ Nishanth Menon 1 (0.0%)
+ Luke Lowrey 1 (0.0%)
+ Lars Rasmusson 1 (0.0%)
+ Davide Bonfanti 1 (0.0%)
+ Jerry Huang 1 (0.0%)
+ Karl O. Pinc 1 (0.0%)
+ Mingkai Hu 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 11086 (22.1%)
+ Stefan Roese 7902 (15.8%)
+ Albert ARIBAUD 2113 (4.2%)
+ Tom Rini 1714 (3.4%)
+ Paul Gortmaker 1539 (3.1%)
+ Marek Vasut 624 (1.2%)
+ Jens Scharsig (BuS Elektronik) 623 (1.2%)
+ Holger Brunck 45 (0.1%)
+ Thomas Chou 40 (0.1%)
+ Jason Jin 37 (0.1%)
+ Chang Hyun Park 26 (0.1%)
+ Mike Frysinger 15 (0.0%)
+ Valentin Longchamp 14 (0.0%)
+ Michal Simek 12 (0.0%)
+ Igor Grinberg 12 (0.0%)
+ Andreas Bießmann 11 (0.0%)
+ trem 11 (0.0%)
+ Thomas Weber 11 (0.0%)
+ Jeroen Hofstee 10 (0.0%)
+ Allen Martin 7 (0.0%)
+ Nobuhiro Iwamatsu 7 (0.0%)
+ Anatolij Gustschin 7 (0.0%)
+ Minkyu Kang 6 (0.0%)
+ Kim Phillips 5 (0.0%)
+ Mark Marshall 3 (0.0%)
+ Peter Barada 2 (0.0%)
+ Shaohui Xie 2 (0.0%)
+ Michael Walle 1 (0.0%)
+ Dirk Behme 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 571)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 124 (21.7%)
+ Andy Fleming 83 (14.5%)
+ Minkyu Kang 81 (14.2%)
+ kyungmin Park 64 (11.2%)
+ Tom Warren 51 (8.9%)
+ Tom Rini 41 (7.2%)
+ Anatolij Gustschin 9 (1.6%)
+ Andreas Bießmann 7 (1.2%)
+ Stefan Reinauer 7 (1.2%)
+ Kim Phillips 6 (1.1%)
+ Rajeshwari Shinde 6 (1.1%)
+ R. Chandrasekar 5 (0.9%)
+ Daniel Schwierzeck 5 (0.9%)
+ Prabhakar Kushwaha 5 (0.9%)
+ Stefan Roese 4 (0.7%)
+ Igor Grinberg 4 (0.7%)
+ Nobuhiro Iwamatsu 4 (0.7%)
+ Zang Roy-R61911 4 (0.7%)
+ Gabe Black 4 (0.7%)
+ Shengzhou Liu 3 (0.5%)
+ Kumar Gala 3 (0.5%)
+ Vivek Gautam 3 (0.5%)
+ Taylor Hutt 3 (0.5%)
+ Scott Wood 3 (0.5%)
+ Vadim Bendebury 3 (0.5%)
+ Jason Jin 2 (0.4%)
+ TsiChung Liew 2 (0.4%)
+ Vincent Palatin 2 (0.4%)
+ Che-Liang Chiou 2 (0.4%)
+ David Gibson 2 (0.4%)
+ Hatim RV 2 (0.4%)
+ Chander Kashyap 2 (0.4%)
+ Łukasz Majewski 2 (0.4%)
+ Ilya Yanok 2 (0.4%)
+ Valentin Longchamp 1 (0.2%)
+ Shaohui Xie 1 (0.2%)
+ Hemant Nautiyal 1 (0.2%)
+ Vakul Garg 1 (0.2%)
+ Vic Yang 1 (0.2%)
+ Padmavathi Venna 1 (0.2%)
+ Giridhar Maruthy 1 (0.2%)
+ Inderpal Singh 1 (0.2%)
+ Sandeep Singh 1 (0.2%)
+ Poonam Aggrwal 1 (0.2%)
+ Tushar Behera 1 (0.2%)
+ Mayuresh Kulkarni 1 (0.2%)
+ Sean Paul 1 (0.2%)
+ James Miller 1 (0.2%)
+ Doug Anderson 1 (0.2%)
+ Troy Kisky 1 (0.2%)
+ Piotr Wilczek 1 (0.2%)
+ Tom Wai-Hong Tam 1 (0.2%)
+ Jaehoon Chung 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ Timur Tabi 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 23)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Benoît Thébaudeau 9 (39.1%)
+ Marek Vasut 6 (26.1%)
+ Tom Rini 2 (8.7%)
+ Kim Phillips 2 (8.7%)
+ Łukasz Majewski 2 (8.7%)
+ Doug Anderson 1 (4.3%)
+ Stephen Warren 1 (4.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 44)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 16 (36.4%)
+ Stephen Warren 8 (18.2%)
+ Holger Brunck 4 (9.1%)
+ Stefano Babic 3 (6.8%)
+ Marek Vasut 1 (2.3%)
+ Łukasz Majewski 1 (2.3%)
+ Andy Fleming 1 (2.3%)
+ Andreas Bießmann 1 (2.3%)
+ Stefan Reinauer 1 (2.3%)
+ Stefan Roese 1 (2.3%)
+ Piotr Wilczek 1 (2.3%)
+ Jaehoon Chung 1 (2.3%)
+ Jens Scharsig (BuS Elektronik) 1 (2.3%)
+ Alex Xol 1 (2.3%)
+ Lucas Stach 1 (2.3%)
+ Fabio Estevam 1 (2.3%)
+ Joe Hershberger 1 (2.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 44)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Allen Martin 12 (27.3%)
+ Stephen Warren 10 (22.7%)
+ Stefan Roese 4 (9.1%)
+ Andy Fleming 3 (6.8%)
+ Simon Glass 2 (4.5%)
+ Joe Hershberger 2 (4.5%)
+ Benoît Thébaudeau 2 (4.5%)
+ Marek Vasut 1 (2.3%)
+ Łukasz Majewski 1 (2.3%)
+ Andreas Bießmann 1 (2.3%)
+ Stefan Reinauer 1 (2.3%)
+ Fabio Estevam 1 (2.3%)
+ Minkyu Kang 1 (2.3%)
+ Joshua Housh 1 (2.3%)
+ angelo 1 (2.3%)
+ Otavio Salvador 1 (2.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Benoît Thébaudeau 1 (20.0%)
+ Dirk Behme 1 (20.0%)
+ Luka Perkov 1 (20.0%)
+ Robert Nelson 1 (20.0%)
+ Henrik Nordström 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 2 (40.0%)
+ Stephen Warren 1 (20.0%)
+ Joe Hershberger 1 (20.0%)
+ Anatolij Gustschin 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 191 (16.3%)
+ Google, Inc. 190 (16.2%)
+ Freescale 189 (16.1%)
+ DENX Software Engineering 172 (14.7%)
+ Samsung 127 (10.8%)
+ NVidia 57 (4.9%)
+ ADVANSEE 50 (4.3%)
+ National Instruments 42 (3.6%)
+ Konsulko Group 28 (2.4%)
+ Boundary Devices 27 (2.3%)
+ O.S. Systems 13 (1.1%)
+ Keymile 10 (0.9%)
+ Linaro 10 (0.9%)
+ Texas Instruments 10 (0.9%)
+ CompuLab 9 (0.8%)
+ Atmel 7 (0.6%)
+ Renesas Electronics 7 (0.6%)
+ ST Microelectronics 6 (0.5%)
+ Xilinx 6 (0.5%)
+ Graeme Russ 5 (0.4%)
+ BuS Elektronik 4 (0.3%)
+ Analog Devices 3 (0.3%)
+ ESD Electronics 2 (0.2%)
+ 8D Technologies 1 (0.1%)
+ bct electronic GmbH 1 (0.1%)
+ Calxeda 1 (0.1%)
+ Wind River 1 (0.1%)
+ Bosch 1 (0.1%)
+ Macq Electronique 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 40622 (32.5%)
+ (Unknown) 30103 (24.1%)
+ Freescale 15783 (12.6%)
+ Samsung 9364 (7.5%)
+ Google, Inc. 8094 (6.5%)
+ NVidia 3106 (2.5%)
+ National Instruments 3038 (2.4%)
+ Boundary Devices 2288 (1.8%)
+ Konsulko Group 2280 (1.8%)
+ ADVANSEE 2037 (1.6%)
+ Wind River 1539 (1.2%)
+ Renesas Electronics 1484 (1.2%)
+ Graeme Russ 993 (0.8%)
+ Texas Instruments 850 (0.7%)
+ BuS Elektronik 779 (0.6%)
+ Linaro 770 (0.6%)
+ 8D Technologies 594 (0.5%)
+ Keymile 531 (0.4%)
+ O.S. Systems 224 (0.2%)
+ CompuLab 168 (0.1%)
+ ST Microelectronics 138 (0.1%)
+ Atmel 102 (0.1%)
+ Xilinx 51 (0.0%)
+ ESD Electronics 30 (0.0%)
+ Analog Devices 29 (0.0%)
+ Nobuhiro Iwamatsu 10 (0.0%)
+ Pengutronix 3 (0.0%)
+ bct electronic GmbH 2 (0.0%)
+ Calxeda 2 (0.0%)
+ Bosch 2 (0.0%)
+ Macq Electronique 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 571)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 166 (29.1%)
+ Google, Inc. 145 (25.4%)
+ Freescale 115 (20.1%)
+ NVidia 52 (9.1%)
+ Texas Instruments 41 (7.2%)
+ (Unknown) 23 (4.0%)
+ DENX Software Engineering 14 (2.5%)
+ Linaro 5 (0.9%)
+ CompuLab 4 (0.7%)
+ Nobuhiro Iwamatsu 4 (0.7%)
+ Boundary Devices 1 (0.2%)
+ Keymile 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 154)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 54 (35.1%)
+ Freescale 23 (14.9%)
+ Google, Inc. 16 (10.4%)
+ Samsung 10 (6.5%)
+ Texas Instruments 7 (4.5%)
+ NVidia 5 (3.2%)
+ DENX Software Engineering 5 (3.2%)
+ Linaro 4 (2.6%)
+ Keymile 3 (1.9%)
+ CompuLab 2 (1.3%)
+ Boundary Devices 2 (1.3%)
+ Renesas Electronics 2 (1.3%)
+ ST Microelectronics 2 (1.3%)
+ Atmel 2 (1.3%)
+ Nobuhiro Iwamatsu 1 (0.6%)
+ National Instruments 1 (0.6%)
+ Konsulko Group 1 (0.6%)
+ ADVANSEE 1 (0.6%)
+ Wind River 1 (0.6%)
+ Graeme Russ 1 (0.6%)
+ BuS Elektronik 1 (0.6%)
+ 8D Technologies 1 (0.6%)
+ O.S. Systems 1 (0.6%)
+ Xilinx 1 (0.6%)
+ ESD Electronics 1 (0.6%)
+ Analog Devices 1 (0.6%)
+ Pengutronix 1 (0.6%)
+ bct electronic GmbH 1 (0.6%)
+ Calxeda 1 (0.6%)
+ Bosch 1 (0.6%)
+ Macq Electronique 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2013.04.rst b/doc/develop/statistics/u-boot-stats-v2013.04.rst
new file mode 100644
index 0000000..fd31bd8
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2013.04.rst
@@ -0,0 +1,622 @@
+:orphan:
+
+Release Statistics for U-Boot v2013.04
+======================================
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 179 (18.3%)
+ Tom Warren 57 (5.8%)
+ Tom Rini 39 (4.0%)
+ Benoît Thébaudeau 35 (3.6%)
+ Otavio Salvador 30 (3.1%)
+ Allen Martin 29 (3.0%)
+ Gabor Juhos 29 (3.0%)
+ Fabio Estevam 26 (2.7%)
+ Stephen Warren 25 (2.6%)
+ Marek Vasut 23 (2.3%)
+ Holger Brunck 17 (1.7%)
+ Akshay Saraswat 16 (1.6%)
+ Nikita Kiryanov 15 (1.5%)
+ Lokesh Vutla 14 (1.4%)
+ Rajeshwari Shinde 14 (1.4%)
+ Ajay Kumar 13 (1.3%)
+ Daniel Schwierzeck 13 (1.3%)
+ Joe Hershberger 12 (1.2%)
+ Doug Anderson 12 (1.2%)
+ R Sricharan 12 (1.2%)
+ Albert ARIBAUD 11 (1.1%)
+ Eric Nelson 11 (1.1%)
+ Anatolij Gustschin 11 (1.1%)
+ Jeroen Hofstee 11 (1.1%)
+ Matt Porter 10 (1.0%)
+ Michal Simek 10 (1.0%)
+ Troy Kisky 10 (1.0%)
+ Andreas Bießmann 9 (0.9%)
+ Jon Hunter 9 (0.9%)
+ Pantelis Antoniou 9 (0.9%)
+ Enric Balletbo i Serra 9 (0.9%)
+ Lucas Stach 9 (0.9%)
+ Prabhakar Kushwaha 8 (0.8%)
+ Thierry Reding 7 (0.7%)
+ Stefan Roese 7 (0.7%)
+ York Sun 7 (0.7%)
+ Łukasz Majewski 7 (0.7%)
+ Jagan Teki 7 (0.7%)
+ Kim Phillips 7 (0.7%)
+ Robert P. J. Day 6 (0.6%)
+ Vivek Gautam 5 (0.5%)
+ Javier Martinez Canillas 5 (0.5%)
+ Lars Poeschel 5 (0.5%)
+ Wolfgang Denk 5 (0.5%)
+ Sonic Zhang 5 (0.5%)
+ Bob Liu 5 (0.5%)
+ Scott Wood 5 (0.5%)
+ James Yang 5 (0.5%)
+ Marc Dietrich 4 (0.4%)
+ Padmavathi Venna 4 (0.4%)
+ Vincent Palatin 4 (0.4%)
+ Stefano Babic 4 (0.4%)
+ Ilya Yanok 4 (0.4%)
+ Vadim Bendebury 3 (0.3%)
+ Tetsuyuki Kobayashi 3 (0.3%)
+ Koen Kooi 3 (0.3%)
+ Rob Herring 3 (0.3%)
+ Gabe Black 3 (0.3%)
+ Pali Rohár 3 (0.3%)
+ Mark Jackson 3 (0.3%)
+ Piotr Wilczek 3 (0.3%)
+ Bo Shen 3 (0.3%)
+ Holger Hans Peter Freyther 3 (0.3%)
+ Chase Maupin 3 (0.3%)
+ Michael Jones 3 (0.3%)
+ Richard Genoud 3 (0.3%)
+ Shaveta Leekha 3 (0.3%)
+ Jaehoon Chung 2 (0.2%)
+ Che-liang Chiou 2 (0.2%)
+ Taylor Hutt 2 (0.2%)
+ Linus Walleij 2 (0.2%)
+ Manfred Huber 2 (0.2%)
+ Lubomir Popov 2 (0.2%)
+ Peter Korsgaard 2 (0.2%)
+ Bin Liu 2 (0.2%)
+ Jagannadha Sutradharudu Teki 2 (0.2%)
+ Vincent Stehlé 2 (0.2%)
+ Vaibhav Hiremath 2 (0.2%)
+ Knut Wohlrab 2 (0.2%)
+ Vipin Kumar 2 (0.2%)
+ Nicolas Ferre 2 (0.2%)
+ Fadil Berisha 2 (0.2%)
+ Phil Sutter 2 (0.2%)
+ Robert Nelson 2 (0.2%)
+ Tomas Novotny 2 (0.2%)
+ Andreas Huber 2 (0.2%)
+ Karlheinz Jerg 2 (0.2%)
+ Alexey Brodkin 2 (0.2%)
+ Poonam Aggrwal 2 (0.2%)
+ Valentin Longchamp 2 (0.2%)
+ Hongtao Jia 2 (0.2%)
+ Maxime Larocque 1 (0.1%)
+ Minkyu Kang 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Andrew Gabbasov 1 (0.1%)
+ Rong Chang 1 (0.1%)
+ Gerlando Falauto 1 (0.1%)
+ Mats Kärrman 1 (0.1%)
+ ramneek mehresh 1 (0.1%)
+ Mingkai Hu 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Josh Wu 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Alexandre Pereira da Silva 1 (0.1%)
+ Abbas Raza 1 (0.1%)
+ Aaron Williams 1 (0.1%)
+ Przemyslaw Marczak 1 (0.1%)
+ Veli-Pekka Peltola 1 (0.1%)
+ Steven Stallion 1 (0.1%)
+ Steve Kipisz 1 (0.1%)
+ Matthias Weisser 1 (0.1%)
+ Andre Renaud 1 (0.1%)
+ Michael Spang 1 (0.1%)
+ Patrick Georgi 1 (0.1%)
+ Shiraz Hashim 1 (0.1%)
+ Barak Wasserstrom 1 (0.1%)
+ Jesse Gilles 1 (0.1%)
+ Lubomir Rintel 1 (0.1%)
+ Gray Remlin 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ Steven Miao 1 (0.1%)
+ Scott Jiang 1 (0.1%)
+ Harvey Chapman 1 (0.1%)
+ Reinhard Arlt 1 (0.1%)
+ Howard Gray 1 (0.1%)
+ Gerald Van Baren 1 (0.1%)
+ Jeff Lance 1 (0.1%)
+ Jim Lin 1 (0.1%)
+ Ashok 1 (0.1%)
+ Jason Wu 1 (0.1%)
+ David Holsgrove 1 (0.1%)
+ Andy Fleming 1 (0.1%)
+ Shengzhou Liu 1 (0.1%)
+ Vakul Garg 1 (0.1%)
+ Timur Tabi 1 (0.1%)
+ Shaohui Xie 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 17102 (16.6%)
+ Tom Warren 13132 (12.7%)
+ Michal Simek 6776 (6.6%)
+ Benoît Thébaudeau 4934 (4.8%)
+ Eric Nelson 4693 (4.6%)
+ York Sun 3715 (3.6%)
+ Stefan Roese 3386 (3.3%)
+ R Sricharan 3139 (3.0%)
+ Piotr Wilczek 2823 (2.7%)
+ Wolfgang Denk 2419 (2.3%)
+ Allen Martin 2373 (2.3%)
+ Lokesh Vutla 2087 (2.0%)
+ Prabhakar Kushwaha 1864 (1.8%)
+ Matt Porter 1861 (1.8%)
+ Anatolij Gustschin 1700 (1.6%)
+ Sonic Zhang 1509 (1.5%)
+ Bob Liu 1487 (1.4%)
+ Otavio Salvador 1447 (1.4%)
+ Che-liang Chiou 1434 (1.4%)
+ Marek Vasut 1420 (1.4%)
+ Rong Chang 1414 (1.4%)
+ Nikita Kiryanov 1379 (1.3%)
+ Stephen Warren 1369 (1.3%)
+ Fabio Estevam 1251 (1.2%)
+ Rajeshwari Shinde 1241 (1.2%)
+ Akshay Saraswat 1196 (1.2%)
+ Troy Kisky 1057 (1.0%)
+ Łukasz Majewski 896 (0.9%)
+ Albert ARIBAUD 810 (0.8%)
+ Lars Poeschel 807 (0.8%)
+ Gabor Juhos 792 (0.8%)
+ Pali Rohár 753 (0.7%)
+ Lucas Stach 710 (0.7%)
+ Kim Phillips 666 (0.6%)
+ Ajay Kumar 637 (0.6%)
+ Pantelis Antoniou 600 (0.6%)
+ Scott Jiang 549 (0.5%)
+ Andreas Bießmann 546 (0.5%)
+ Joe Hershberger 483 (0.5%)
+ Tom Rini 445 (0.4%)
+ Jeroen Hofstee 423 (0.4%)
+ Doug Anderson 396 (0.4%)
+ Javier Martinez Canillas 377 (0.4%)
+ Scott Wood 361 (0.4%)
+ Patrick Georgi 316 (0.3%)
+ Daniel Schwierzeck 310 (0.3%)
+ James Yang 281 (0.3%)
+ Stefano Babic 231 (0.2%)
+ Vipin Kumar 226 (0.2%)
+ Poonam Aggrwal 172 (0.2%)
+ Padmavathi Venna 166 (0.2%)
+ Karlheinz Jerg 144 (0.1%)
+ Shaveta Leekha 143 (0.1%)
+ Ilya Yanok 138 (0.1%)
+ Tomas Novotny 138 (0.1%)
+ Thierry Reding 135 (0.1%)
+ Fadil Berisha 130 (0.1%)
+ Holger Brunck 109 (0.1%)
+ Jon Hunter 104 (0.1%)
+ David Holsgrove 92 (0.1%)
+ Vakul Garg 92 (0.1%)
+ Marc Dietrich 89 (0.1%)
+ Enric Balletbo i Serra 86 (0.1%)
+ Vivek Gautam 82 (0.1%)
+ Rob Herring 82 (0.1%)
+ Michael Jones 76 (0.1%)
+ Aaron Williams 76 (0.1%)
+ Richard Genoud 74 (0.1%)
+ Jagan Teki 63 (0.1%)
+ Bo Shen 63 (0.1%)
+ Taylor Hutt 61 (0.1%)
+ Vincent Palatin 60 (0.1%)
+ Jeff Lance 57 (0.1%)
+ Robert P. J. Day 52 (0.1%)
+ Steven Miao 46 (0.0%)
+ Shaohui Xie 44 (0.0%)
+ Chase Maupin 43 (0.0%)
+ Steven Stallion 42 (0.0%)
+ Jaehoon Chung 35 (0.0%)
+ Gabe Black 31 (0.0%)
+ Knut Wohlrab 30 (0.0%)
+ Lubomir Rintel 27 (0.0%)
+ Tetsuyuki Kobayashi 24 (0.0%)
+ Vadim Bendebury 21 (0.0%)
+ Shengzhou Liu 19 (0.0%)
+ Koen Kooi 18 (0.0%)
+ Manfred Huber 18 (0.0%)
+ Peter Korsgaard 18 (0.0%)
+ Mugunthan V N 18 (0.0%)
+ Holger Hans Peter Freyther 16 (0.0%)
+ Abbas Raza 16 (0.0%)
+ Nicolas Ferre 14 (0.0%)
+ Robert Nelson 14 (0.0%)
+ Andreas Huber 14 (0.0%)
+ Valentin Longchamp 13 (0.0%)
+ Hongtao Jia 13 (0.0%)
+ Nishanth Menon 13 (0.0%)
+ Howard Gray 13 (0.0%)
+ Mark Jackson 12 (0.0%)
+ Phil Sutter 12 (0.0%)
+ Timur Tabi 12 (0.0%)
+ Mats Kärrman 11 (0.0%)
+ Gerald Van Baren 11 (0.0%)
+ Bin Liu 9 (0.0%)
+ Jesse Gilles 8 (0.0%)
+ Andre Przywara 7 (0.0%)
+ Matthias Weisser 7 (0.0%)
+ Lubomir Popov 6 (0.0%)
+ Jagannadha Sutradharudu Teki 6 (0.0%)
+ Vaibhav Hiremath 6 (0.0%)
+ Linus Walleij 5 (0.0%)
+ ramneek mehresh 5 (0.0%)
+ Jim Lin 5 (0.0%)
+ Jason Wu 5 (0.0%)
+ Alexey Brodkin 4 (0.0%)
+ Andrew Gabbasov 4 (0.0%)
+ Gerlando Falauto 4 (0.0%)
+ Dirk Behme 4 (0.0%)
+ Veli-Pekka Peltola 4 (0.0%)
+ Steve Kipisz 4 (0.0%)
+ Andre Renaud 4 (0.0%)
+ Michael Spang 4 (0.0%)
+ Shiraz Hashim 4 (0.0%)
+ Barak Wasserstrom 4 (0.0%)
+ Minkyu Kang 3 (0.0%)
+ Vincent Stehlé 2 (0.0%)
+ Maxime Larocque 2 (0.0%)
+ Gray Remlin 2 (0.0%)
+ Ashok 2 (0.0%)
+ Mingkai Hu 1 (0.0%)
+ Alexandre Pereira da Silva 1 (0.0%)
+ Przemyslaw Marczak 1 (0.0%)
+ Harvey Chapman 1 (0.0%)
+ Reinhard Arlt 1 (0.0%)
+ Andy Fleming 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 6306 (14.3%)
+ Benoît Thébaudeau 3523 (8.0%)
+ Stefan Roese 2874 (6.5%)
+ Wolfgang Denk 2053 (4.7%)
+ Jeroen Hofstee 290 (0.7%)
+ Javier Martinez Canillas 251 (0.6%)
+ Gabor Juhos 222 (0.5%)
+ Daniel Schwierzeck 98 (0.2%)
+ Lucas Stach 75 (0.2%)
+ Robert P. J. Day 34 (0.1%)
+ Richard Genoud 26 (0.1%)
+ Scott Wood 16 (0.0%)
+ Gerald Van Baren 9 (0.0%)
+ Gabe Black 6 (0.0%)
+ Michael Spang 4 (0.0%)
+ Ashok 2 (0.0%)
+ Knut Wohlrab 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 353)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 54 (15.3%)
+ Tom Warren 51 (14.4%)
+ Andy Fleming 32 (9.1%)
+ Tom Rini 23 (6.5%)
+ Sonic Zhang 14 (4.0%)
+ Kyungmin Park 13 (3.7%)
+ R Sricharan 13 (3.7%)
+ Simon Glass 13 (3.7%)
+ Igor Grinberg 11 (3.1%)
+ Poonam Aggrwal 9 (2.5%)
+ Akshay Saraswat 9 (2.5%)
+ Michal Simek 8 (2.3%)
+ Jagannadha Sutradharudu Teki 8 (2.3%)
+ Andreas Bießmann 7 (2.0%)
+ Anatolij Gustschin 7 (2.0%)
+ Bob Liu 6 (1.7%)
+ York Sun 6 (1.7%)
+ ARUN MANKUZHI 5 (1.4%)
+ Holger Brunck 5 (1.4%)
+ Lokesh Vutla 4 (1.1%)
+ Kim Phillips 3 (0.8%)
+ Prabhakar Kushwaha 3 (0.8%)
+ Daniel Schwierzeck 2 (0.6%)
+ Tom Wai-Hong Tam 2 (0.6%)
+ Hatim Ali 2 (0.6%)
+ Naveen Burmi 2 (0.6%)
+ Sandeep Singh 2 (0.6%)
+ Li Yang 2 (0.6%)
+ Michael Jones 2 (0.6%)
+ Bo Shen 2 (0.6%)
+ Shaveta Leekha 2 (0.6%)
+ Marek Vasut 2 (0.6%)
+ Otavio Salvador 2 (0.6%)
+ Piotr Wilczek 2 (0.6%)
+ Scott Wood 1 (0.3%)
+ Gabe Black 1 (0.3%)
+ Dirk Behme 1 (0.3%)
+ Naveen Krishna Ch 1 (0.3%)
+ Satyanarayana, Sandhya 1 (0.3%)
+ Oleksandr Tymoshenko 1 (0.3%)
+ Bernie Thompson 1 (0.3%)
+ Duncan Laurie 1 (0.3%)
+ Bill Richardson 1 (0.3%)
+ Julius Werner 1 (0.3%)
+ Andrzej Pietrasiewicz 1 (0.3%)
+ Armando Visconti 1 (0.3%)
+ Alim Akhtar 1 (0.3%)
+ Nishant Kamat 1 (0.3%)
+ Hebbar Gururaja 1 (0.3%)
+ Ruchika Gupta 1 (0.3%)
+ Priyanka Jain 1 (0.3%)
+ Roy Zang 1 (0.3%)
+ Vadim Bendebury 1 (0.3%)
+ Vincent Palatin 1 (0.3%)
+ Thierry Reding 1 (0.3%)
+ Pantelis Antoniou 1 (0.3%)
+ Łukasz Majewski 1 (0.3%)
+ Rajeshwari Shinde 1 (0.3%)
+ Che-liang Chiou 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 128)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 60 (46.9%)
+ Tom Rini 45 (35.2%)
+ Doug Anderson 9 (7.0%)
+ R Sricharan 3 (2.3%)
+ Otavio Salvador 3 (2.3%)
+ Benoît Thébaudeau 2 (1.6%)
+ Javier Martinez Canillas 2 (1.6%)
+ Simon Glass 1 (0.8%)
+ Vadim Bendebury 1 (0.8%)
+ Joe Hershberger 1 (0.8%)
+ Fabio Estevam 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 5 (17.2%)
+ Rommel Custodio 3 (10.3%)
+ Nishanth Menon 3 (10.3%)
+ Michal Simek 2 (6.9%)
+ Jagannadha Sutradharudu Teki 2 (6.9%)
+ Eric Nelson 2 (6.9%)
+ R Sricharan 1 (3.4%)
+ Javier Martinez Canillas 1 (3.4%)
+ Andreas Bießmann 1 (3.4%)
+ Marek Vasut 1 (3.4%)
+ Thierry Reding 1 (3.4%)
+ Stefan Roese 1 (3.4%)
+ Wolfgang Denk 1 (3.4%)
+ Vincent Stehlé 1 (3.4%)
+ Their Name 1 (3.4%)
+ Rao Bodapati 1 (3.4%)
+ Andrew Gabbasov 1 (3.4%)
+ Koen Kooi 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Benoît Thébaudeau 5 (17.2%)
+ R Sricharan 4 (13.8%)
+ Fabio Estevam 2 (6.9%)
+ Michal Simek 2 (6.9%)
+ Tom Rini 2 (6.9%)
+ Simon Glass 2 (6.9%)
+ Manfred Huber 2 (6.9%)
+ Nishanth Menon 1 (3.4%)
+ Eric Nelson 1 (3.4%)
+ Marek Vasut 1 (3.4%)
+ Doug Anderson 1 (3.4%)
+ Otavio Salvador 1 (3.4%)
+ Tom Warren 1 (3.4%)
+ Mats Kärrman 1 (3.4%)
+ Jaehoon Chung 1 (3.4%)
+ Aaron Williams 1 (3.4%)
+ Jagan Teki 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Benoît Thébaudeau 2 (20.0%)
+ Albert ARIBAUD 2 (20.0%)
+ Koen Kooi 1 (10.0%)
+ Lubomir Popov 1 (10.0%)
+ Michael Cashwell 1 (10.0%)
+ Alexei Fedorov 1 (10.0%)
+ Aaron Williams 1 (10.0%)
+ Peter Korsgaard 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Albert ARIBAUD 2 (20.0%)
+ Fabio Estevam 2 (20.0%)
+ Tom Rini 2 (20.0%)
+ Marek Vasut 1 (10.0%)
+ Vincent Stehlé 1 (10.0%)
+ Akshay Saraswat 1 (10.0%)
+ Lokesh Vutla 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 231 (23.6%)
+ Google, Inc. 203 (20.7%)
+ NVidia 75 (7.7%)
+ Freescale 72 (7.3%)
+ Samsung 66 (6.7%)
+ Texas Instruments 57 (5.8%)
+ DENX Software Engineering 50 (5.1%)
+ Konsulko Group 39 (4.0%)
+ ADVANSEE 35 (3.6%)
+ O.S. Systems 30 (3.1%)
+ Keymile 24 (2.4%)
+ Boundary Devices 21 (2.1%)
+ CompuLab 15 (1.5%)
+ National Instruments 12 (1.2%)
+ AMD 10 (1.0%)
+ Xilinx 9 (0.9%)
+ Atmel 6 (0.6%)
+ Analog Devices 4 (0.4%)
+ Matrix Vision 4 (0.4%)
+ Calxeda 3 (0.3%)
+ Bosch 3 (0.3%)
+ Linaro 3 (0.3%)
+ Mercury IMC Ltd. 3 (0.3%)
+ ST Microelectronics 3 (0.3%)
+ Bluewater Systems 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 22275 (21.6%)
+ Google, Inc. 19044 (18.5%)
+ DENX Software Engineering 9156 (8.9%)
+ Freescale 8640 (8.4%)
+ Texas Instruments 7286 (7.1%)
+ Samsung 7080 (6.9%)
+ AMD 6776 (6.6%)
+ NVidia 5869 (5.7%)
+ Boundary Devices 5750 (5.6%)
+ ADVANSEE 4934 (4.8%)
+ Analog Devices 1507 (1.5%)
+ O.S. Systems 1447 (1.4%)
+ CompuLab 1379 (1.3%)
+ National Instruments 483 (0.5%)
+ Konsulko Group 445 (0.4%)
+ Keymile 284 (0.3%)
+ ST Microelectronics 230 (0.2%)
+ Xilinx 155 (0.2%)
+ Matrix Vision 89 (0.1%)
+ Calxeda 82 (0.1%)
+ Atmel 77 (0.1%)
+ Bosch 34 (0.0%)
+ Linaro 12 (0.0%)
+ Mercury IMC Ltd. 12 (0.0%)
+ Bluewater Systems 4 (0.0%)
+ ESD Electronics 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 353)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 90 (25.5%)
+ Freescale 65 (18.4%)
+ NVidia 51 (14.4%)
+ Texas Instruments 43 (12.2%)
+ (Unknown) 26 (7.4%)
+ Google, Inc. 22 (6.2%)
+ Xilinx 16 (4.5%)
+ CompuLab 11 (3.1%)
+ DENX Software Engineering 9 (2.5%)
+ Analog Devices 7 (2.0%)
+ Keymile 5 (1.4%)
+ O.S. Systems 2 (0.6%)
+ Matrix Vision 2 (0.6%)
+ Atmel 2 (0.6%)
+ ST Microelectronics 1 (0.3%)
+ Bosch 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 140)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 56 (40.0%)
+ Freescale 16 (11.4%)
+ Texas Instruments 11 (7.9%)
+ Samsung 10 (7.1%)
+ Google, Inc. 6 (4.3%)
+ DENX Software Engineering 5 (3.6%)
+ Keymile 5 (3.6%)
+ NVidia 4 (2.9%)
+ Xilinx 3 (2.1%)
+ Atmel 3 (2.1%)
+ Matrix Vision 2 (1.4%)
+ ST Microelectronics 2 (1.4%)
+ Bosch 2 (1.4%)
+ Boundary Devices 2 (1.4%)
+ Linaro 2 (1.4%)
+ CompuLab 1 (0.7%)
+ Analog Devices 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ AMD 1 (0.7%)
+ ADVANSEE 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Calxeda 1 (0.7%)
+ Mercury IMC Ltd. 1 (0.7%)
+ Bluewater Systems 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2013.07.rst b/doc/develop/statistics/u-boot-stats-v2013.07.rst
new file mode 100644
index 0000000..b0ee57c
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2013.07.rst
@@ -0,0 +1,741 @@
+:orphan:
+
+Release Statistics for U-Boot v2013.07
+======================================
+
+* Processed 948 csets from 162 developers
+
+* 30 employers found
+
+* A total of 68587 lines added, 37600 removed (delta 30987)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 136 (14.3%)
+ Fabio Estevam 42 (4.4%)
+ Benoît Thébaudeau 41 (4.3%)
+ Michal Simek 29 (3.1%)
+ Tom Rini 28 (3.0%)
+ York Sun 27 (2.8%)
+ Jagannadha Sutradharudu Teki 24 (2.5%)
+ Marek Vasut 23 (2.4%)
+ Otavio Salvador 19 (2.0%)
+ Stephen Warren 19 (2.0%)
+ Bo Shen 17 (1.8%)
+ Wolfgang Denk 15 (1.6%)
+ Axel Lin 15 (1.6%)
+ Stefan Roese 15 (1.6%)
+ Rajeshwari Shinde 14 (1.5%)
+ Shaohui Xie 14 (1.5%)
+ Sonic Zhang 14 (1.5%)
+ Mike Dunn 13 (1.4%)
+ Lokesh Vutla 13 (1.4%)
+ Prabhakar Kushwaha 12 (1.3%)
+ Heiko Schocher 12 (1.3%)
+ Andreas Bießmann 11 (1.2%)
+ Albert ARIBAUD 11 (1.2%)
+ Amar 11 (1.2%)
+ Vivek Gautam 11 (1.2%)
+ Nishanth Menon 11 (1.2%)
+ Rob Herring 10 (1.1%)
+ Sricharan R 10 (1.1%)
+ Lukasz Majewski 9 (0.9%)
+ Masahiro Yamada 9 (0.9%)
+ Lubomir Popov 9 (0.9%)
+ Kuo-Jung Su 9 (0.9%)
+ Gerhard Sittig 8 (0.8%)
+ Liu Gang 8 (0.8%)
+ Dan Murphy 7 (0.7%)
+ Peter Korsgaard 7 (0.7%)
+ Robert Winkler 7 (0.7%)
+ Hung-ying Tyan 7 (0.7%)
+ Jagan Teki 7 (0.7%)
+ Alison Wang 7 (0.7%)
+ Shengzhou Liu 7 (0.7%)
+ Egbert Eich 6 (0.6%)
+ Jim Lin 5 (0.5%)
+ Ying Zhang 5 (0.5%)
+ Roy Zang 5 (0.5%)
+ Andy Fleming 4 (0.4%)
+ Anatolij Gustschin 4 (0.4%)
+ Piotr Wilczek 4 (0.4%)
+ Pierre Aubert 4 (0.4%)
+ Doug Anderson 4 (0.4%)
+ David Andrey 4 (0.4%)
+ Scott Wood 4 (0.4%)
+ Wu, Josh 4 (0.4%)
+ Matt Porter 4 (0.4%)
+ Joe Hershberger 3 (0.3%)
+ Dirk Behme 3 (0.3%)
+ Dirk Eibach 3 (0.3%)
+ Tom Warren 3 (0.3%)
+ Vincent Palatin 3 (0.3%)
+ Sebastian Hesselbarth 3 (0.3%)
+ Priyanka Jain 3 (0.3%)
+ Simon Guinot 3 (0.3%)
+ Andrew Gabbasov 3 (0.3%)
+ Inderpal Singh 3 (0.3%)
+ Ed Swarthout 3 (0.3%)
+ Scott Jiang 3 (0.3%)
+ Bob Liu 3 (0.3%)
+ Eric Benard 3 (0.3%)
+ Igor Grinberg 3 (0.3%)
+ Lan Yixun (dlan) 2 (0.2%)
+ Sascha Silbe 2 (0.2%)
+ Haijun.Zhang 2 (0.2%)
+ Reinhard Pfau 2 (0.2%)
+ Holger Brunck 2 (0.2%)
+ trem 2 (0.2%)
+ Eric Nelson 2 (0.2%)
+ Che-Liang Chiou 2 (0.2%)
+ SARTRE Leo 2 (0.2%)
+ Xie Xiaobo 2 (0.2%)
+ Kim Phillips 2 (0.2%)
+ Vipin Kumar 2 (0.2%)
+ Enric Balletbo i Serra 2 (0.2%)
+ Yegor Yefremov 2 (0.2%)
+ Mingkai Hu 2 (0.2%)
+ Poonam Aggrwal 2 (0.2%)
+ Daniel Schwierzeck 2 (0.2%)
+ Naveen Krishna Chatradhi 2 (0.2%)
+ Sergey Yanovich 2 (0.2%)
+ Julius Werner 2 (0.2%)
+ Vishwanathrao Badarkhe, Manish 2 (0.2%)
+ Andrii Tseglytskyi 2 (0.2%)
+ Gabor Juhos 2 (0.2%)
+ Sergey Lapin 2 (0.2%)
+ Renato Frias 2 (0.2%)
+ Tom Wai-Hong Tam 2 (0.2%)
+ Shaveta Leekha 2 (0.2%)
+ James Yang 2 (0.2%)
+ Andre Przywara 2 (0.2%)
+ Ryan Harkin 2 (0.2%)
+ htbegin 2 (0.2%)
+ Akshay Saraswat 2 (0.2%)
+ Stefan Kristiansson 2 (0.2%)
+ Łukasz Dałek 2 (0.2%)
+ Philip Paeps 2 (0.2%)
+ Rommel Custodio 1 (0.1%)
+ Troy Kisky 1 (0.1%)
+ Alexey Brodkin 1 (0.1%)
+ Frederic Leroy 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Minkyu Kang 1 (0.1%)
+ Ilya Ledvich 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Jason Jin 1 (0.1%)
+ Steve deRosier 1 (0.1%)
+ Jens Scharsig (BuS Elektronik) 1 (0.1%)
+ Vincent Stehlé 1 (0.1%)
+ Steven Stallion 1 (0.1%)
+ Tapani Utriainen 1 (0.1%)
+ Bernie Thompson 1 (0.1%)
+ Roberto Cerati 1 (0.1%)
+ Charles Coldwell 1 (0.1%)
+ Shiraz Hashim 1 (0.1%)
+ Matthias Brugger 1 (0.1%)
+ Henrik Nordström 1 (0.1%)
+ Ajay Kumar 1 (0.1%)
+ Chunhe Lan 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Ruud Commandeur 1 (0.1%)
+ Michael Heimpold 1 (0.1%)
+ Arkadiusz Wlodarczyk 1 (0.1%)
+ Balaji T K 1 (0.1%)
+ Joel A Fernandes 1 (0.1%)
+ Allen Martin 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Suresh Gupta 1 (0.1%)
+ Stephen George 1 (0.1%)
+ Suriyan Ramasami 1 (0.1%)
+ Harvey Chapman 1 (0.1%)
+ Luka Perkov 1 (0.1%)
+ Paul B. Henson 1 (0.1%)
+ Sandeep Singh 1 (0.1%)
+ Mike Frysinger 1 (0.1%)
+ Gerald Van Baren 1 (0.1%)
+ Justin Sobota 1 (0.1%)
+ François Revol 1 (0.1%)
+ Mark Jackson 1 (0.1%)
+ Lucian Cojocar 1 (0.1%)
+ Kuan-Yu Kuo 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Davide Bonfanti 1 (0.1%)
+ Timur Tabi 1 (0.1%)
+ Xu Jiucheng 1 (0.1%)
+ Cristian Sovaiala 1 (0.1%)
+ Zhicheng Fan 1 (0.1%)
+ Horst Kronstorfer 1 (0.1%)
+ Xulei 1 (0.1%)
+ Matthew McClintock 1 (0.1%)
+ Wang Dongsheng 1 (0.1%)
+ Jeffrey Ladouceur 1 (0.1%)
+ Jiang Bin 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 12980 (14.2%)
+ Wolfgang Denk 10954 (11.9%)
+ Benoît Thébaudeau 9522 (10.4%)
+ Hung-ying Tyan 4447 (4.9%)
+ Tom Rini 3775 (4.1%)
+ Kuo-Jung Su 2993 (3.3%)
+ Dirk Eibach 2839 (3.1%)
+ Mike Dunn 2791 (3.0%)
+ Rajeshwari Shinde 2467 (2.7%)
+ Sergey Lapin 2210 (2.4%)
+ Michal Simek 2106 (2.3%)
+ Alison Wang 2054 (2.2%)
+ Bo Shen 1935 (2.1%)
+ Stefan Roese 1589 (1.7%)
+ Pierre Aubert 1583 (1.7%)
+ Marek Vasut 1406 (1.5%)
+ Albert ARIBAUD 1341 (1.5%)
+ Prabhakar Kushwaha 1219 (1.3%)
+ York Sun 1188 (1.3%)
+ Sonic Zhang 1134 (1.2%)
+ Amar 1106 (1.2%)
+ Fabio Estevam 1048 (1.1%)
+ Roberto Cerati 1004 (1.1%)
+ Jim Lin 956 (1.0%)
+ Chunhe Lan 851 (0.9%)
+ Wu, Josh 777 (0.8%)
+ Enric Balletbo i Serra 697 (0.8%)
+ Reinhard Pfau 644 (0.7%)
+ Suriyan Ramasami 564 (0.6%)
+ Lubomir Popov 540 (0.6%)
+ Henrik Nordström 535 (0.6%)
+ Sricharan R 534 (0.6%)
+ Vivek Gautam 506 (0.6%)
+ SARTRE Leo 483 (0.5%)
+ Lokesh Vutla 481 (0.5%)
+ Stephen Warren 456 (0.5%)
+ Sergey Yanovich 456 (0.5%)
+ Tom Wai-Hong Tam 401 (0.4%)
+ Shaohui Xie 389 (0.4%)
+ Matt Porter 355 (0.4%)
+ Otavio Salvador 343 (0.4%)
+ Shengzhou Liu 338 (0.4%)
+ Jagannadha Sutradharudu Teki 310 (0.3%)
+ Heiko Schocher 293 (0.3%)
+ Matthew McClintock 284 (0.3%)
+ Andreas Bießmann 280 (0.3%)
+ Andrii Tseglytskyi 272 (0.3%)
+ Nishanth Menon 271 (0.3%)
+ Vishwanathrao Badarkhe, Manish 251 (0.3%)
+ Simon Guinot 236 (0.3%)
+ Ryan Harkin 232 (0.3%)
+ Jagan Teki 188 (0.2%)
+ Inderpal Singh 186 (0.2%)
+ Egbert Eich 172 (0.2%)
+ Rob Herring 159 (0.2%)
+ Gabor Juhos 158 (0.2%)
+ Liu Gang 150 (0.2%)
+ Julius Werner 148 (0.2%)
+ Daniel Schwierzeck 147 (0.2%)
+ Che-Liang Chiou 140 (0.2%)
+ Peter Korsgaard 139 (0.2%)
+ Mingkai Hu 126 (0.1%)
+ Poonam Aggrwal 126 (0.1%)
+ Michael Heimpold 124 (0.1%)
+ Sebastian Hesselbarth 122 (0.1%)
+ Dan Murphy 120 (0.1%)
+ Roy Zang 110 (0.1%)
+ David Andrey 110 (0.1%)
+ Scott Jiang 107 (0.1%)
+ Vincent Palatin 100 (0.1%)
+ Yegor Yefremov 100 (0.1%)
+ Naveen Krishna Chatradhi 100 (0.1%)
+ Robert Winkler 97 (0.1%)
+ Bob Liu 96 (0.1%)
+ Anatolij Gustschin 93 (0.1%)
+ Frederic Leroy 93 (0.1%)
+ Axel Lin 87 (0.1%)
+ Masahiro Yamada 80 (0.1%)
+ Ying Zhang 79 (0.1%)
+ Paul B. Henson 79 (0.1%)
+ Scott Wood 77 (0.1%)
+ Andy Fleming 69 (0.1%)
+ Gerhard Sittig 67 (0.1%)
+ Doug Anderson 64 (0.1%)
+ Renato Frias 63 (0.1%)
+ Priyanka Jain 54 (0.1%)
+ Matthias Brugger 53 (0.1%)
+ Justin Sobota 51 (0.1%)
+ Piotr Wilczek 49 (0.1%)
+ Tom Warren 49 (0.1%)
+ Vipin Kumar 48 (0.1%)
+ Steven Stallion 47 (0.1%)
+ Zhicheng Fan 47 (0.1%)
+ Suresh Gupta 44 (0.0%)
+ Lukasz Majewski 42 (0.0%)
+ Andre Przywara 41 (0.0%)
+ Shaveta Leekha 39 (0.0%)
+ Minkyu Kang 38 (0.0%)
+ Ed Swarthout 36 (0.0%)
+ Sascha Silbe 35 (0.0%)
+ Harvey Chapman 35 (0.0%)
+ Eric Nelson 34 (0.0%)
+ Xie Xiaobo 34 (0.0%)
+ Michael Trimarchi 33 (0.0%)
+ Xu Jiucheng 33 (0.0%)
+ Cristian Sovaiala 30 (0.0%)
+ Xulei 30 (0.0%)
+ Eric Benard 28 (0.0%)
+ Charles Coldwell 27 (0.0%)
+ Andrew Gabbasov 26 (0.0%)
+ Igor Grinberg 25 (0.0%)
+ Chris Packham 25 (0.0%)
+ Dirk Behme 24 (0.0%)
+ Jiang Bin 23 (0.0%)
+ Balaji T K 17 (0.0%)
+ Ruchika Gupta 17 (0.0%)
+ Jeffrey Ladouceur 17 (0.0%)
+ Joe Hershberger 16 (0.0%)
+ James Yang 13 (0.0%)
+ Akshay Saraswat 13 (0.0%)
+ Arkadiusz Wlodarczyk 13 (0.0%)
+ trem 11 (0.0%)
+ Mark Jackson 11 (0.0%)
+ Łukasz Dałek 10 (0.0%)
+ Horst Kronstorfer 10 (0.0%)
+ Tapani Utriainen 9 (0.0%)
+ Stephen George 9 (0.0%)
+ Vincent Stehlé 8 (0.0%)
+ Shiraz Hashim 8 (0.0%)
+ Sandeep Singh 8 (0.0%)
+ Kim Phillips 7 (0.0%)
+ Lan Yixun (dlan) 6 (0.0%)
+ Rommel Custodio 6 (0.0%)
+ Lucian Cojocar 6 (0.0%)
+ Kuan-Yu Kuo 6 (0.0%)
+ Jason Jin 5 (0.0%)
+ Ruud Commandeur 5 (0.0%)
+ Allen Martin 5 (0.0%)
+ Wang Dongsheng 5 (0.0%)
+ Holger Brunck 4 (0.0%)
+ Jaehoon Chung 4 (0.0%)
+ Davide Bonfanti 4 (0.0%)
+ Timur Tabi 4 (0.0%)
+ htbegin 3 (0.0%)
+ Stefan Kristiansson 3 (0.0%)
+ Philip Paeps 3 (0.0%)
+ Bernie Thompson 3 (0.0%)
+ Gerald Van Baren 3 (0.0%)
+ Haijun.Zhang 2 (0.0%)
+ Jens Scharsig (BuS Elektronik) 2 (0.0%)
+ Ajay Kumar 2 (0.0%)
+ Tang Yuantian 2 (0.0%)
+ Joel A Fernandes 2 (0.0%)
+ Luka Perkov 2 (0.0%)
+ Mike Frysinger 2 (0.0%)
+ Troy Kisky 1 (0.0%)
+ Alexey Brodkin 1 (0.0%)
+ Stefano Babic 1 (0.0%)
+ Ilya Ledvich 1 (0.0%)
+ Steve deRosier 1 (0.0%)
+ François Revol 1 (0.0%)
+ Shawn Guo 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 8294 (22.1%)
+ Tom Rini 3382 (9.0%)
+ Albert ARIBAUD 851 (2.3%)
+ Rajeshwari Shinde 763 (2.0%)
+ Daniel Schwierzeck 144 (0.4%)
+ Inderpal Singh 104 (0.3%)
+ Scott Jiang 96 (0.3%)
+ Andreas Bießmann 46 (0.1%)
+ Michael Trimarchi 24 (0.1%)
+ Ruchika Gupta 17 (0.0%)
+ Mark Jackson 8 (0.0%)
+ Anatolij Gustschin 7 (0.0%)
+ Axel Lin 7 (0.0%)
+ Igor Grinberg 7 (0.0%)
+ Dirk Behme 6 (0.0%)
+ Kuan-Yu Kuo 4 (0.0%)
+ Balaji T K 3 (0.0%)
+ Gerhard Sittig 2 (0.0%)
+ Jaehoon Chung 2 (0.0%)
+ Alexey Brodkin 1 (0.0%)
+ Ilya Ledvich 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 347)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andy Fleming 135 (38.9%)
+ Minkyu Kang 38 (11.0%)
+ Simon Glass 19 (5.5%)
+ Andreas Bießmann 14 (4.0%)
+ Tom Warren 11 (3.2%)
+ Tom Rini 9 (2.6%)
+ Kyungmin Park 8 (2.3%)
+ Sonic Zhang 8 (2.3%)
+ Jagannadha Sutradharudu Teki 7 (2.0%)
+ Lokesh Vutla 6 (1.7%)
+ Randall Spangler 5 (1.4%)
+ Roy Zang 4 (1.2%)
+ Stefan Roese 4 (1.2%)
+ Abhilash Kesavan 3 (0.9%)
+ Kumar Gala 3 (0.9%)
+ Vincent Palatin 3 (0.9%)
+ Vivek Gautam 3 (0.9%)
+ York Sun 3 (0.9%)
+ Michal Simek 3 (0.9%)
+ Rajeshwari Shinde 2 (0.6%)
+ Anatolij Gustschin 2 (0.6%)
+ Gabe Black 2 (0.6%)
+ Ramneek Mehresh 2 (0.6%)
+ Hatim Ali 2 (0.6%)
+ TsiChung Liew 2 (0.6%)
+ Jerry Huang 2 (0.6%)
+ Vikas C Sajjan 2 (0.6%)
+ Scott Wood 2 (0.6%)
+ Andre Przywara 2 (0.6%)
+ Poonam Aggrwal 2 (0.6%)
+ Reinhard Pfau 2 (0.6%)
+ Amar 2 (0.6%)
+ Dirk Eibach 2 (0.6%)
+ Scott Jiang 1 (0.3%)
+ Balaji T K 1 (0.3%)
+ Jason Jin 1 (0.3%)
+ Troy Kisky 1 (0.3%)
+ Eric Jarrige 1 (0.3%)
+ Bill Richardson 1 (0.3%)
+ Louis Yung-Chieh Lo 1 (0.3%)
+ Sean Paul 1 (0.3%)
+ Raffaele Recalcati 1 (0.3%)
+ Richard Retanubun 1 (0.3%)
+ Peter Huewe 1 (0.3%)
+ Alim Akhtar 1 (0.3%)
+ Rajendra Nayak 1 (0.3%)
+ xulei 1 (0.3%)
+ Jiang Yutang 1 (0.3%)
+ Gerald Van Baren 1 (0.3%)
+ Bernie Thompson 1 (0.3%)
+ Tang Yuantian 1 (0.3%)
+ Timur Tabi 1 (0.3%)
+ Joe Hershberger 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ Ed Swarthout 1 (0.3%)
+ Xie Xiaobo 1 (0.3%)
+ Vipin Kumar 1 (0.3%)
+ Doug Anderson 1 (0.3%)
+ Bob Liu 1 (0.3%)
+ Che-Liang Chiou 1 (0.3%)
+ Sricharan R 1 (0.3%)
+ Otavio Salvador 1 (0.3%)
+ Prabhakar Kushwaha 1 (0.3%)
+ Stephen Warren 1 (0.3%)
+ Wu, Josh 1 (0.3%)
+ Bo Shen 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 144)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 40 (27.8%)
+ Marek Vasut 19 (13.2%)
+ Simon Glass 17 (11.8%)
+ Benoît Thébaudeau 16 (11.1%)
+ Jagannadha Sutradharudu Teki 10 (6.9%)
+ Joe Hershberger 8 (5.6%)
+ Vadim Bendebury 5 (3.5%)
+ Otavio Salvador 3 (2.1%)
+ Stephen Warren 3 (2.1%)
+ Peter Korsgaard 3 (2.1%)
+ Che-Liang Chiou 2 (1.4%)
+ Stefan Reinauer 2 (1.4%)
+ Michael Spang 2 (1.4%)
+ Tom Wai-Hong Tam 2 (1.4%)
+ Fabio Estevam 2 (1.4%)
+ Vincent Palatin 1 (0.7%)
+ Michal Simek 1 (0.7%)
+ Gabe Black 1 (0.7%)
+ Vipin Kumar 1 (0.7%)
+ Sricharan R 1 (0.7%)
+ Albert ARIBAUD 1 (0.7%)
+ Luigi Semenzato 1 (0.7%)
+ Lukasz Majewski 1 (0.7%)
+ Sascha Silbe 1 (0.7%)
+ Michael Heimpold 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 64)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 11 (17.2%)
+ Lubomir Popov 11 (17.2%)
+ Jeroen Hofstee 6 (9.4%)
+ Stephen Warren 5 (7.8%)
+ Fabio Estevam 4 (6.2%)
+ Vincent Palatin 3 (4.7%)
+ Tom Rini 2 (3.1%)
+ Marek Vasut 2 (3.1%)
+ Tom Wai-Hong Tam 2 (3.1%)
+ Lukasz Majewski 2 (3.1%)
+ Andreas Bießmann 2 (3.1%)
+ Heiko Schocher 2 (3.1%)
+ Andy Voltz 2 (3.1%)
+ Nikita Kiryanov 2 (3.1%)
+ Stefan Roese 1 (1.6%)
+ Raffaele Recalcati 1 (1.6%)
+ Alexandre Pereira da Silva 1 (1.6%)
+ Matt Sealey 1 (1.6%)
+ Robert Nelson 1 (1.6%)
+ Arkadiusz Wlodarczyk 1 (1.6%)
+ Robert Winkler 1 (1.6%)
+ Enric Balletbo i Serra 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 64)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Albert ARIBAUD 16 (25.0%)
+ Vincent Palatin 4 (6.2%)
+ Otavio Salvador 4 (6.2%)
+ Simon Glass 3 (4.7%)
+ Marek Vasut 3 (4.7%)
+ Axel Lin 3 (4.7%)
+ Hung-ying Tyan 3 (4.7%)
+ Fabio Estevam 2 (3.1%)
+ Andreas Bießmann 2 (3.1%)
+ Rajeshwari Shinde 2 (3.1%)
+ Igor Grinberg 2 (3.1%)
+ Rommel Custodio 2 (3.1%)
+ Jim Lin 2 (3.1%)
+ Lubomir Popov 1 (1.6%)
+ Stephen Warren 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Lukasz Majewski 1 (1.6%)
+ Heiko Schocher 1 (1.6%)
+ Arkadiusz Wlodarczyk 1 (1.6%)
+ Benoît Thébaudeau 1 (1.6%)
+ Che-Liang Chiou 1 (1.6%)
+ Sascha Silbe 1 (1.6%)
+ Tom Warren 1 (1.6%)
+ Michael Trimarchi 1 (1.6%)
+ Masahiro Yamada 1 (1.6%)
+ Andrew Gabbasov 1 (1.6%)
+ Piotr Wilczek 1 (1.6%)
+ Matthias Brugger 1 (1.6%)
+ Roberto Cerati 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Albert ARIBAUD 1 (9.1%)
+ Lubomir Popov 1 (9.1%)
+ Tom Rini 1 (9.1%)
+ Dirk Behme 1 (9.1%)
+ Heinz Wrobel 1 (9.1%)
+ Jason Liu 1 (9.1%)
+ Ruchika Kharwar 1 (9.1%)
+ John Traill 1 (9.1%)
+ John Williams 1 (9.1%)
+ Tapani Utriainen 1 (9.1%)
+ Dan Murphy 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 3 (27.3%)
+ Dan Murphy 1 (9.1%)
+ Marek Vasut 1 (9.1%)
+ Andrew Gabbasov 1 (9.1%)
+ Michal Simek 1 (9.1%)
+ Lokesh Vutla 1 (9.1%)
+ Roy Zang 1 (9.1%)
+ Mark Jackson 1 (9.1%)
+ Nishanth Menon 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 171 (18.0%)
+ (Unknown) 167 (17.6%)
+ Google, Inc. 148 (15.6%)
+ DENX Software Engineering 78 (8.2%)
+ Samsung 57 (6.0%)
+ Texas Instruments 52 (5.5%)
+ ADVANSEE 41 (4.3%)
+ Xilinx 37 (3.9%)
+ Konsulko Group 28 (3.0%)
+ NVidia 25 (2.6%)
+ AMD 23 (2.4%)
+ Atmel 21 (2.2%)
+ O.S. Systems 19 (2.0%)
+ Analog Devices 15 (1.6%)
+ Boundary Devices 10 (1.1%)
+ Calxeda 10 (1.1%)
+ Socionext Inc. 9 (0.9%)
+ Linaro 8 (0.8%)
+ Novell 6 (0.6%)
+ Guntermann & Drunck 5 (0.5%)
+ CompuLab 4 (0.4%)
+ National Instruments 3 (0.3%)
+ ST Microelectronics 3 (0.3%)
+ Keymile 2 (0.2%)
+ ACM 1 (0.1%)
+ Amarula Solutions 1 (0.1%)
+ BuS Elektronik 1 (0.1%)
+ Wind River 1 (0.1%)
+ Bosch 1 (0.1%)
+ Mercury IMC Ltd. 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 22131 (24.1%)
+ DENX Software Engineering 14403 (15.7%)
+ Google, Inc. 13688 (14.9%)
+ ADVANSEE 9522 (10.4%)
+ Freescale 8594 (9.4%)
+ Samsung 4340 (4.7%)
+ Konsulko Group 3775 (4.1%)
+ Guntermann & Drunck 3483 (3.8%)
+ Atmel 2712 (3.0%)
+ Texas Instruments 2354 (2.6%)
+ AMD 2010 (2.2%)
+ NVidia 1334 (1.5%)
+ Analog Devices 1136 (1.2%)
+ Xilinx 594 (0.6%)
+ Linaro 460 (0.5%)
+ O.S. Systems 343 (0.4%)
+ Novell 172 (0.2%)
+ Calxeda 159 (0.2%)
+ Boundary Devices 132 (0.1%)
+ Socionext Inc. 80 (0.1%)
+ ACM 79 (0.1%)
+ ST Microelectronics 56 (0.1%)
+ Amarula Solutions 33 (0.0%)
+ CompuLab 26 (0.0%)
+ Wind River 23 (0.0%)
+ National Instruments 16 (0.0%)
+ Mercury IMC Ltd. 11 (0.0%)
+ Keymile 4 (0.0%)
+ Bosch 3 (0.0%)
+ BuS Elektronik 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 347)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 160 (46.1%)
+ Samsung 61 (17.6%)
+ Google, Inc. 30 (8.6%)
+ (Unknown) 26 (7.5%)
+ Texas Instruments 18 (5.2%)
+ NVidia 12 (3.5%)
+ Xilinx 10 (2.9%)
+ Analog Devices 9 (2.6%)
+ DENX Software Engineering 7 (2.0%)
+ Guntermann & Drunck 4 (1.2%)
+ Atmel 2 (0.6%)
+ Linaro 2 (0.6%)
+ O.S. Systems 1 (0.3%)
+ Boundary Devices 1 (0.3%)
+ ST Microelectronics 1 (0.3%)
+ National Instruments 1 (0.3%)
+ Custom IDEAS 1 (0.3%)
+ RuggedCom 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 165)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 57 (34.5%)
+ Freescale 35 (21.2%)
+ Samsung 11 (6.7%)
+ Texas Instruments 10 (6.1%)
+ DENX Software Engineering 7 (4.2%)
+ Google, Inc. 6 (3.6%)
+ NVidia 4 (2.4%)
+ Linaro 4 (2.4%)
+ Xilinx 3 (1.8%)
+ Boundary Devices 3 (1.8%)
+ Analog Devices 2 (1.2%)
+ Guntermann & Drunck 2 (1.2%)
+ Atmel 2 (1.2%)
+ ST Microelectronics 2 (1.2%)
+ CompuLab 2 (1.2%)
+ O.S. Systems 1 (0.6%)
+ National Instruments 1 (0.6%)
+ ADVANSEE 1 (0.6%)
+ Konsulko Group 1 (0.6%)
+ AMD 1 (0.6%)
+ Novell 1 (0.6%)
+ Calxeda 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ ACM 1 (0.6%)
+ Amarula Solutions 1 (0.6%)
+ Wind River 1 (0.6%)
+ Mercury IMC Ltd. 1 (0.6%)
+ Keymile 1 (0.6%)
+ Bosch 1 (0.6%)
+ BuS Elektronik 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2013.10.rst b/doc/develop/statistics/u-boot-stats-v2013.10.rst
new file mode 100644
index 0000000..55a5856
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2013.10.rst
@@ -0,0 +1,598 @@
+:orphan:
+
+Release Statistics for U-Boot v2013.10
+======================================
+
+* Processed 710 csets from 135 developers
+
+* 28 employers found
+
+* A total of 55489 lines added, 119445 removed (delta -63956)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 61 (8.6%)
+ Jagannadha Sutradharudu Teki 48 (6.8%)
+ Marek Vasut 37 (5.2%)
+ Gabor Juhos 29 (4.1%)
+ Heiko Schocher 27 (3.8%)
+ Fabio Estevam 21 (3.0%)
+ York Sun 18 (2.5%)
+ Masahiro Yamada 18 (2.5%)
+ Bo Shen 17 (2.4%)
+ Wolfgang Denk 17 (2.4%)
+ Rob Herring 17 (2.4%)
+ Axel Lin 13 (1.8%)
+ Łukasz Majewski 12 (1.7%)
+ Lokesh Vutla 12 (1.7%)
+ Dan Murphy 11 (1.5%)
+ Stephen Warren 11 (1.5%)
+ Dirk Eibach 11 (1.5%)
+ Paul Burton 10 (1.4%)
+ Michal Simek 9 (1.3%)
+ Daniel Schwierzeck 9 (1.3%)
+ Eric Nelson 9 (1.3%)
+ Andre Przywara 9 (1.3%)
+ Ying Zhang 9 (1.3%)
+ Simon Glass 8 (1.1%)
+ Piotr Wilczek 7 (1.0%)
+ Enric Balletbo i Serra 7 (1.0%)
+ Stefano Babic 7 (1.0%)
+ Wu, Josh 7 (1.0%)
+ ken kuo 7 (1.0%)
+ Holger Brunck 6 (0.8%)
+ Jeroen Hofstee 6 (0.8%)
+ Nishanth Menon 6 (0.8%)
+ Kuo-Jung Su 6 (0.8%)
+ Kees Cook 6 (0.8%)
+ Justin Waters 6 (0.8%)
+ Mugunthan V N 6 (0.8%)
+ Dani Krishna Mohan 5 (0.7%)
+ Robert P. J. Day 5 (0.7%)
+ Taras Kondratiuk 5 (0.7%)
+ Jagan Teki 4 (0.6%)
+ Rajeshwari Shinde 4 (0.6%)
+ Chin Liang See 4 (0.6%)
+ Otavio Salvador 4 (0.6%)
+ Shaohui Xie 4 (0.6%)
+ Stefan Roese 4 (0.6%)
+ Shaveta Leekha 4 (0.6%)
+ Liu Gang 4 (0.6%)
+ Albert ARIBAUD 3 (0.4%)
+ Poddar, Sourav 3 (0.4%)
+ Matt Porter 3 (0.4%)
+ Priyanka Jain 3 (0.4%)
+ Thierry Reding 3 (0.4%)
+ Afzal Mohammed 3 (0.4%)
+ Steve Kipisz 3 (0.4%)
+ Mischa Jonker 3 (0.4%)
+ Oleksandr Tyshchenko 3 (0.4%)
+ trem 3 (0.4%)
+ Chander Kashyap 3 (0.4%)
+ Robert Winkler 3 (0.4%)
+ Jim Lin 3 (0.4%)
+ TENART Antoine 3 (0.4%)
+ Roy Zang 3 (0.4%)
+ Jaehoon Chung 2 (0.3%)
+ Markus Niebel 2 (0.3%)
+ Andrew Murray 2 (0.3%)
+ Javier Martinez Canillas 2 (0.3%)
+ Julius Werner 2 (0.3%)
+ Minkyu Kang 2 (0.3%)
+ Joel Fernandes 2 (0.3%)
+ Oliver Metz 2 (0.3%)
+ Pardeep Kumar Singla 2 (0.3%)
+ Andreas Bießmann 2 (0.3%)
+ Roger Meier 2 (0.3%)
+ Jens Scharsig (BuS Elektronik) 2 (0.3%)
+ Lubomir Popov 2 (0.3%)
+ Przemyslaw Marczak 2 (0.3%)
+ Gerlando Falauto 2 (0.3%)
+ Andreas Wass 2 (0.3%)
+ Shengzhou Liu 2 (0.3%)
+ Shruti Kanetkar 2 (0.3%)
+ Prabhakar Kushwaha 2 (0.3%)
+ Matthias Fuchs 2 (0.3%)
+ Chunhe Lan 2 (0.3%)
+ ramneek mehresh 2 (0.3%)
+ Mingkai Hu 2 (0.3%)
+ Nikita Kiryanov 2 (0.3%)
+ Alison Wang 2 (0.3%)
+ Scott Wood 1 (0.1%)
+ Timo Herbrecher 1 (0.1%)
+ Steven Falco 1 (0.1%)
+ Andreas Huber 1 (0.1%)
+ Lars Poeschel 1 (0.1%)
+ Pierre Aubert 1 (0.1%)
+ Troy Kisky 1 (0.1%)
+ Juhyun (Justin) Oh 1 (0.1%)
+ Hector Palacios 1 (0.1%)
+ Philip, Avinash 1 (0.1%)
+ Greg Guyotte 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ Mark Langsdorf 1 (0.1%)
+ Frederic Leroy 1 (0.1%)
+ Pantelis Antoniou 1 (0.1%)
+ Elie De Brauwer 1 (0.1%)
+ Andrew Gabbasov 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Henrik Nordström 1 (0.1%)
+ Richard Gibbs 1 (0.1%)
+ Jack Mitchell 1 (0.1%)
+ Thomas Chou 1 (0.1%)
+ SARTRE Leo 1 (0.1%)
+ Inderpal Singh 1 (0.1%)
+ Amaury Pouly 1 (0.1%)
+ Phil Sutter 1 (0.1%)
+ Николай Пузанов 1 (0.1%)
+ Bhupesh Sharma 1 (0.1%)
+ Paul B. Henson 1 (0.1%)
+ Angus Ainslie 1 (0.1%)
+ Naumann Andreas 1 (0.1%)
+ Ash Charles 1 (0.1%)
+ Steve Sakoman 1 (0.1%)
+ Po Liu 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ Donghwa Lee 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Hyungwon Hwang 1 (0.1%)
+ James Yang 1 (0.1%)
+ Minghuan Lian 1 (0.1%)
+ Haijun.Zhang 1 (0.1%)
+ Xie Xiaobo 1 (0.1%)
+ Andes 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Christian Riesch 1 (0.1%)
+ Dinh Nguyen 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ naveen krishna chatradhi 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 98751 (62.8%)
+ Heiko Schocher 8452 (5.4%)
+ Marek Vasut 7578 (4.8%)
+ Jagannadha Sutradharudu Teki 4007 (2.5%)
+ Albert ARIBAUD 3987 (2.5%)
+ Dirk Eibach 2312 (1.5%)
+ Bo Shen 2047 (1.3%)
+ Masahiro Yamada 1715 (1.1%)
+ York Sun 1714 (1.1%)
+ Piotr Wilczek 1691 (1.1%)
+ trem 1599 (1.0%)
+ TENART Antoine 1531 (1.0%)
+ Fabio Estevam 1519 (1.0%)
+ Tom Rini 1472 (0.9%)
+ Matthias Fuchs 1453 (0.9%)
+ Lokesh Vutla 1390 (0.9%)
+ Xie Xiaobo 1180 (0.8%)
+ Gabor Juhos 1172 (0.7%)
+ Mingkai Hu 1139 (0.7%)
+ Ying Zhang 799 (0.5%)
+ Dan Murphy 683 (0.4%)
+ Kuo-Jung Su 542 (0.3%)
+ Andre Przywara 522 (0.3%)
+ Stefano Babic 473 (0.3%)
+ Shaveta Leekha 464 (0.3%)
+ Chander Kashyap 457 (0.3%)
+ Dani Krishna Mohan 443 (0.3%)
+ Paul Burton 419 (0.3%)
+ Chin Liang See 397 (0.3%)
+ Andreas Wass 381 (0.2%)
+ Roger Meier 376 (0.2%)
+ Kees Cook 366 (0.2%)
+ ken kuo 361 (0.2%)
+ Matt Porter 355 (0.2%)
+ Steve Kipisz 320 (0.2%)
+ Simon Glass 290 (0.2%)
+ Daniel Schwierzeck 248 (0.2%)
+ Mugunthan V N 235 (0.1%)
+ Wu, Josh 226 (0.1%)
+ Hyungwon Hwang 193 (0.1%)
+ Greg Guyotte 192 (0.1%)
+ Rob Herring 188 (0.1%)
+ Prabhakar Kushwaha 169 (0.1%)
+ Pardeep Kumar Singla 162 (0.1%)
+ Philip, Avinash 161 (0.1%)
+ Shaohui Xie 159 (0.1%)
+ Łukasz Majewski 126 (0.1%)
+ Afzal Mohammed 126 (0.1%)
+ Stephen Warren 121 (0.1%)
+ Julius Werner 113 (0.1%)
+ Rajeshwari Shinde 112 (0.1%)
+ Michal Simek 110 (0.1%)
+ ramneek mehresh 106 (0.1%)
+ Poddar, Sourav 102 (0.1%)
+ Po Liu 100 (0.1%)
+ Chunhe Lan 91 (0.1%)
+ Alison Wang 89 (0.1%)
+ Enric Balletbo i Serra 84 (0.1%)
+ Eric Nelson 74 (0.0%)
+ Justin Waters 66 (0.0%)
+ Donghwa Lee 66 (0.0%)
+ Priyanka Jain 63 (0.0%)
+ Haijun.Zhang 63 (0.0%)
+ Nishanth Menon 62 (0.0%)
+ Phil Sutter 62 (0.0%)
+ Axel Lin 61 (0.0%)
+ Naumann Andreas 60 (0.0%)
+ Jagan Teki 54 (0.0%)
+ Taras Kondratiuk 53 (0.0%)
+ Stefan Roese 53 (0.0%)
+ Roy Zang 51 (0.0%)
+ Bhupesh Sharma 51 (0.0%)
+ Lubomir Popov 48 (0.0%)
+ Oliver Metz 45 (0.0%)
+ Robert P. J. Day 44 (0.0%)
+ Shruti Kanetkar 43 (0.0%)
+ Steven Falco 42 (0.0%)
+ Przemyslaw Marczak 41 (0.0%)
+ Jeroen Hofstee 39 (0.0%)
+ Jim Lin 36 (0.0%)
+ Minkyu Kang 34 (0.0%)
+ Jens Scharsig (BuS Elektronik) 33 (0.0%)
+ Inderpal Singh 32 (0.0%)
+ Liu Gang 31 (0.0%)
+ Oleksandr Tyshchenko 28 (0.0%)
+ Javier Martinez Canillas 27 (0.0%)
+ Joel Fernandes 27 (0.0%)
+ Robert Winkler 23 (0.0%)
+ Angus Ainslie 20 (0.0%)
+ Andrew Murray 19 (0.0%)
+ Holger Brunck 17 (0.0%)
+ Shengzhou Liu 15 (0.0%)
+ Roger Quadros 15 (0.0%)
+ Jaehoon Chung 14 (0.0%)
+ Gerlando Falauto 14 (0.0%)
+ Nobuhiro Iwamatsu 14 (0.0%)
+ Thierry Reding 13 (0.0%)
+ Jack Mitchell 13 (0.0%)
+ Minghuan Lian 12 (0.0%)
+ Andreas Bießmann 11 (0.0%)
+ Christian Riesch 11 (0.0%)
+ Mischa Jonker 8 (0.0%)
+ Ash Charles 8 (0.0%)
+ Otavio Salvador 7 (0.0%)
+ Steve Sakoman 7 (0.0%)
+ Markus Niebel 6 (0.0%)
+ Hector Palacios 6 (0.0%)
+ Nikita Kiryanov 5 (0.0%)
+ Scott Wood 5 (0.0%)
+ Troy Kisky 4 (0.0%)
+ Andrew Gabbasov 4 (0.0%)
+ Richard Gibbs 4 (0.0%)
+ Soren Brinkmann 4 (0.0%)
+ Juhyun (Justin) Oh 3 (0.0%)
+ Elie De Brauwer 3 (0.0%)
+ Lars Poeschel 2 (0.0%)
+ Mark Langsdorf 2 (0.0%)
+ Pantelis Antoniou 2 (0.0%)
+ Tang Yuantian 2 (0.0%)
+ SARTRE Leo 2 (0.0%)
+ Amaury Pouly 2 (0.0%)
+ Dirk Behme 2 (0.0%)
+ naveen krishna chatradhi 2 (0.0%)
+ Timo Herbrecher 1 (0.0%)
+ Andreas Huber 1 (0.0%)
+ Pierre Aubert 1 (0.0%)
+ Frederic Leroy 1 (0.0%)
+ Henrik Nordström 1 (0.0%)
+ Thomas Chou 1 (0.0%)
+ Николай Пузанов 1 (0.0%)
+ Paul B. Henson 1 (0.0%)
+ Christian Gmeiner 1 (0.0%)
+ James Yang 1 (0.0%)
+ Andes 1 (0.0%)
+ Dinh Nguyen 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 89188 (74.7%)
+ Albert ARIBAUD 2630 (2.2%)
+ Masahiro Yamada 1623 (1.4%)
+ Matthias Fuchs 1431 (1.2%)
+ Fabio Estevam 852 (0.7%)
+ Jagannadha Sutradharudu Teki 846 (0.7%)
+ Roger Meier 334 (0.3%)
+ Stephen Warren 35 (0.0%)
+ Minkyu Kang 28 (0.0%)
+ Axel Lin 20 (0.0%)
+ Nobuhiro Iwamatsu 13 (0.0%)
+ Phil Sutter 8 (0.0%)
+ Christian Riesch 8 (0.0%)
+ Hector Palacios 3 (0.0%)
+ Shruti Kanetkar 1 (0.0%)
+ Markus Niebel 1 (0.0%)
+ Juhyun (Justin) Oh 1 (0.0%)
+ SARTRE Leo 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 152)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andreas Bießmann 19 (12.5%)
+ Tom Rini 16 (10.5%)
+ Minkyu Kang 12 (7.9%)
+ Stefan Roese 12 (7.9%)
+ Kyungmin Park 11 (7.2%)
+ Jagannadha Sutradharudu Teki 10 (6.6%)
+ Simon Glass 7 (4.6%)
+ Michal Simek 6 (3.9%)
+ York Sun 6 (3.9%)
+ Sonic Zhang 4 (2.6%)
+ Gabor Juhos 4 (2.6%)
+ Eric Jarrige 3 (2.0%)
+ Tom Warren 3 (2.0%)
+ Anatolij Gustschin 3 (2.0%)
+ Poddar, Sourav 3 (2.0%)
+ Bo Shen 3 (2.0%)
+ Andes 2 (1.3%)
+ Zhao Chenhui 2 (1.3%)
+ Manish Jaggi 2 (1.3%)
+ Kim Phillips 2 (1.3%)
+ Inderpal Singh 2 (1.3%)
+ Roger Meier 1 (0.7%)
+ Ash Charles 1 (0.7%)
+ Nicolas Colombain 1 (0.7%)
+ Jason Liu 1 (0.7%)
+ Edgar E. Iglesias 1 (0.7%)
+ Samuel Egli 1 (0.7%)
+ Jerry Huang 1 (0.7%)
+ Michael Johnston 1 (0.7%)
+ Scott Jiang 1 (0.7%)
+ Naveen Krishna Chatradhi 1 (0.7%)
+ Pantelis Antoniou 1 (0.7%)
+ Donghwa Lee 1 (0.7%)
+ Minghuan Lian 1 (0.7%)
+ Taras Kondratiuk 1 (0.7%)
+ Po Liu 1 (0.7%)
+ Mugunthan V N 1 (0.7%)
+ Ying Zhang 1 (0.7%)
+ Lokesh Vutla 1 (0.7%)
+ Heiko Schocher 1 (0.7%)
+ Marek Vasut 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 44)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagannadha Sutradharudu Teki 11 (25.0%)
+ Peter Korsgaard 8 (18.2%)
+ Tom Rini 7 (15.9%)
+ Javier Martinez Canillas 6 (13.6%)
+ Pavel Machek 5 (11.4%)
+ Otavio Salvador 2 (4.5%)
+ Łukasz Majewski 2 (4.5%)
+ Stephen Warren 1 (2.3%)
+ Thierry Reding 1 (2.3%)
+ Kuo-Jung Su 1 (2.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 23)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Schocher 6 (26.1%)
+ Stephen Warren 2 (8.7%)
+ Luka Perkov 2 (8.7%)
+ Holger Brunck 2 (8.7%)
+ Stefan Roese 1 (4.3%)
+ Marek Vasut 1 (4.3%)
+ Hector Palacios 1 (4.3%)
+ Aparna Balasubramanian 1 (4.3%)
+ Chris Packham 1 (4.3%)
+ Enric Balletbo i Serra 1 (4.3%)
+ Nishanth Menon 1 (4.3%)
+ Oliver Metz 1 (4.3%)
+ Eric Nelson 1 (4.3%)
+ Stefano Babic 1 (4.3%)
+ Dan Murphy 1 (4.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 23)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Schocher 4 (17.4%)
+ Tom Rini 3 (13.0%)
+ Lokesh Vutla 3 (13.0%)
+ Fabio Estevam 3 (13.0%)
+ Oliver Metz 2 (8.7%)
+ Jagannadha Sutradharudu Teki 1 (4.3%)
+ Łukasz Majewski 1 (4.3%)
+ Thierry Reding 1 (4.3%)
+ Simon Glass 1 (4.3%)
+ Masahiro Yamada 1 (4.3%)
+ Lars Poeschel 1 (4.3%)
+ Shaohui Xie 1 (4.3%)
+ Dirk Eibach 1 (4.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Hector Palacios 1 (20.0%)
+ Steven Falco 1 (20.0%)
+ Stephen MacMahon 1 (20.0%)
+ Robert Nelson 1 (20.0%)
+ Pardeep Kumar Singla 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 2 (40.0%)
+ Tom Rini 1 (20.0%)
+ Nishanth Menon 1 (20.0%)
+ Michal Simek 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 156 (22.0%)
+ DENX Software Engineering 92 (13.0%)
+ Freescale 90 (12.7%)
+ Konsulko Group 61 (8.6%)
+ Texas Instruments 54 (7.6%)
+ Xilinx 54 (7.6%)
+ Samsung 36 (5.1%)
+ Atmel 22 (3.1%)
+ Calxeda 19 (2.7%)
+ Socionext Inc. 18 (2.5%)
+ Linaro 16 (2.3%)
+ NVidia 16 (2.3%)
+ Boundary Devices 13 (1.8%)
+ Guntermann & Drunck 11 (1.5%)
+ MIPS 10 (1.4%)
+ Keymile 9 (1.3%)
+ AMD 8 (1.1%)
+ Google, Inc. 8 (1.1%)
+ O.S. Systems 4 (0.6%)
+ BuS Elektronik 2 (0.3%)
+ CompuLab 2 (0.3%)
+ ESD Electronics 2 (0.3%)
+ TQ Systems 2 (0.3%)
+ ACM 1 (0.1%)
+ Bosch 1 (0.1%)
+ Digi International 1 (0.1%)
+ Renesas Electronics 1 (0.1%)
+ Sakoman Inc. 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 115307 (73.3%)
+ (Unknown) 11899 (7.6%)
+ Freescale 8028 (5.1%)
+ Xilinx 4070 (2.6%)
+ Texas Instruments 3268 (2.1%)
+ Samsung 2720 (1.7%)
+ Guntermann & Drunck 2312 (1.5%)
+ Atmel 2271 (1.4%)
+ Socionext Inc. 1715 (1.1%)
+ Konsulko Group 1472 (0.9%)
+ ESD Electronics 1453 (0.9%)
+ Linaro 1366 (0.9%)
+ MIPS 419 (0.3%)
+ Google, Inc. 290 (0.2%)
+ Calxeda 194 (0.1%)
+ NVidia 169 (0.1%)
+ AMD 105 (0.1%)
+ Boundary Devices 101 (0.1%)
+ BuS Elektronik 33 (0.0%)
+ Keymile 32 (0.0%)
+ Renesas Electronics 14 (0.0%)
+ O.S. Systems 7 (0.0%)
+ Sakoman Inc. 7 (0.0%)
+ TQ Systems 6 (0.0%)
+ Digi International 6 (0.0%)
+ CompuLab 5 (0.0%)
+ Bosch 2 (0.0%)
+ ACM 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 152)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 32 (21.1%)
+ Samsung 25 (16.4%)
+ Texas Instruments 22 (14.5%)
+ Freescale 18 (11.8%)
+ DENX Software Engineering 17 (11.2%)
+ Xilinx 17 (11.2%)
+ Google, Inc. 7 (4.6%)
+ Analog Devices 4 (2.6%)
+ Atmel 3 (2.0%)
+ NVidia 3 (2.0%)
+ Linaro 2 (1.3%)
+ Siemens 2 (1.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 138)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 50 (36.2%)
+ Freescale 24 (17.4%)
+ Texas Instruments 12 (8.7%)
+ Samsung 9 (6.5%)
+ DENX Software Engineering 5 (3.6%)
+ Xilinx 4 (2.9%)
+ Linaro 4 (2.9%)
+ NVidia 3 (2.2%)
+ Calxeda 3 (2.2%)
+ Boundary Devices 3 (2.2%)
+ Keymile 3 (2.2%)
+ Atmel 2 (1.4%)
+ Google, Inc. 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ MIPS 1 (0.7%)
+ AMD 1 (0.7%)
+ BuS Elektronik 1 (0.7%)
+ Renesas Electronics 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ Sakoman Inc. 1 (0.7%)
+ TQ Systems 1 (0.7%)
+ Digi International 1 (0.7%)
+ CompuLab 1 (0.7%)
+ Bosch 1 (0.7%)
+ ACM 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2014.01.rst b/doc/develop/statistics/u-boot-stats-v2014.01.rst
new file mode 100644
index 0000000..809f3ff
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2014.01.rst
@@ -0,0 +1,701 @@
+:orphan:
+
+Release Statistics for U-Boot v2014.01
+======================================
+
+* Processed 980 csets from 154 developers
+
+* 31 employers found
+
+* A total of 68855 lines added, 50005 removed (delta 18850)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 127 (13.0%)
+ Nobuhiro Iwamatsu 50 (5.1%)
+ Fabio Estevam 43 (4.4%)
+ Tom Rini 34 (3.5%)
+ Jagan Teki 31 (3.2%)
+ Paul Burton 24 (2.4%)
+ Simon Glass 22 (2.2%)
+ Andreas Bießmann 22 (2.2%)
+ Troy Kisky 21 (2.1%)
+ Bo Shen 19 (1.9%)
+ Łukasz Majewski 18 (1.8%)
+ Heiko Schocher 18 (1.8%)
+ Jagannadha Sutradharudu Teki 17 (1.7%)
+ Lokesh Vutla 17 (1.7%)
+ Nikita Kiryanov 16 (1.6%)
+ Prabhakar Kushwaha 16 (1.6%)
+ Rob Herring 16 (1.6%)
+ Marek Vasut 15 (1.5%)
+ Piotr Wilczek 13 (1.3%)
+ Rajeshwari S Shinde 13 (1.3%)
+ Shengzhou Liu 13 (1.3%)
+ Dan Murphy 12 (1.2%)
+ Roger Quadros 11 (1.1%)
+ Valentin Longchamp 11 (1.1%)
+ Alexey Brodkin 10 (1.0%)
+ York Sun 10 (1.0%)
+ Stefan Roese 10 (1.0%)
+ Sonic Zhang 10 (1.0%)
+ Claudiu Manoil 10 (1.0%)
+ Przemyslaw Marczak 9 (0.9%)
+ Kuo-Jung Su 9 (0.9%)
+ Eric Nelson 9 (0.9%)
+ Otavio Salvador 8 (0.8%)
+ Shaohui Xie 8 (0.8%)
+ Priyanka Jain 8 (0.8%)
+ Vivek Gautam 8 (0.8%)
+ Albert ARIBAUD 7 (0.7%)
+ Miao Yan 7 (0.7%)
+ David Feng 7 (0.7%)
+ Luka Perkov 7 (0.7%)
+ Stefano Babic 7 (0.7%)
+ Igor Grinberg 7 (0.7%)
+ Axel Lin 6 (0.6%)
+ Thierry Reding 6 (0.6%)
+ Jaehoon Chung 5 (0.5%)
+ Sergei Ianovich 5 (0.5%)
+ pekon gupta 5 (0.5%)
+ Giuseppe Pagano 5 (0.5%)
+ Po Liu 5 (0.5%)
+ Zhao Qiang 5 (0.5%)
+ Wu, Josh 5 (0.5%)
+ Stephen Warren 4 (0.4%)
+ Jeroen Hofstee 4 (0.4%)
+ Minkyu Kang 4 (0.4%)
+ Scott Wood 4 (0.4%)
+ Alban Bedel 4 (0.4%)
+ Guilherme Maciel Ferreira 4 (0.4%)
+ Michal Simek 4 (0.4%)
+ Jens Scharsig (BuS Elektronik) 4 (0.4%)
+ SRICHARAN R 4 (0.4%)
+ ramneek mehresh 4 (0.4%)
+ Haijun.Zhang 4 (0.4%)
+ Liu Ying 3 (0.3%)
+ Chin Liang See 3 (0.3%)
+ Naveen Krishna Chatradhi 3 (0.3%)
+ Yoshihiro Shimoda 3 (0.3%)
+ Mike Frysinger 3 (0.3%)
+ Ilya Ledvich 3 (0.3%)
+ Andrew Ruder 3 (0.3%)
+ Laurentiu TUDOR 3 (0.3%)
+ Egbert Eich 3 (0.3%)
+ Thomas Weber 3 (0.3%)
+ trem 3 (0.3%)
+ Ying Zhang 3 (0.3%)
+ Andre Heider 2 (0.2%)
+ Ionut Nicu 2 (0.2%)
+ Ma Haijun 2 (0.2%)
+ Bhupesh Sharma 2 (0.2%)
+ Pierre Aubert 2 (0.2%)
+ Darwin Rambo 2 (0.2%)
+ Lubomir Popov 2 (0.2%)
+ Poddar, Sourav 2 (0.2%)
+ Sekhar Nori 2 (0.2%)
+ Vladimir Zapolskiy 2 (0.2%)
+ Soren Brinkmann 2 (0.2%)
+ Mateusz Kulikowski 2 (0.2%)
+ Michael Trimarchi 2 (0.2%)
+ Viktar Palstsiuk 2 (0.2%)
+ Oleg Kosheliev 2 (0.2%)
+ Wolfgang Denk 2 (0.2%)
+ David Dueck 2 (0.2%)
+ Gabor Juhos 2 (0.2%)
+ Anatolij Gustschin 2 (0.2%)
+ Suriyan Ramasami 2 (0.2%)
+ Mark Langsdorf 2 (0.2%)
+ Javier Martinez Canillas 2 (0.2%)
+ Julius Werner 2 (0.2%)
+ Charles Manning 1 (0.1%)
+ Robert Nelson 1 (0.1%)
+ Ezequiel Garcia 1 (0.1%)
+ Andrew Gabbasov 1 (0.1%)
+ Antonios Vamporakis 1 (0.1%)
+ Inderpal Singh 1 (0.1%)
+ Chander Kashyap 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ John Weber 1 (0.1%)
+ Hisashi Nakamura 1 (0.1%)
+ Siva Durga Prasad Paladugu 1 (0.1%)
+ Markus Niebel 1 (0.1%)
+ Che-Liang Chiou 1 (0.1%)
+ Henrik Nordström 1 (0.1%)
+ Lad, Prabhakar 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ Holger Brunck 1 (0.1%)
+ Karlheinz Jerg 1 (0.1%)
+ Sergey Alyoshin 1 (0.1%)
+ Yen Lin 1 (0.1%)
+ Jim Lin 1 (0.1%)
+ Vidya Sagar 1 (0.1%)
+ Jimmy Zhang 1 (0.1%)
+ Frank Li 1 (0.1%)
+ Stany MARCEL 1 (0.1%)
+ Kees Jongenburger 1 (0.1%)
+ Yegor Yefremov 1 (0.1%)
+ Tapani Utriainen 1 (0.1%)
+ Ian Campbell 1 (0.1%)
+ Roger Meier 1 (0.1%)
+ Zang Roy-R61911 1 (0.1%)
+ Dave Liu 1 (0.1%)
+ Vladimir Koutny 1 (0.1%)
+ Hardik Patel 1 (0.1%)
+ Matt Porter 1 (0.1%)
+ Lars Poeschel 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Srikanth Thokala 1 (0.1%)
+ Rojhalat Ibrahim 1 (0.1%)
+ Chunhe Lan 1 (0.1%)
+ Arpit Goel 1 (0.1%)
+ Sascha Silbe 1 (0.1%)
+ Stephan Bauroth 1 (0.1%)
+ rockly 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Michael Heimpold 1 (0.1%)
+ Samuel Egli 1 (0.1%)
+ Andrew Bradford 1 (0.1%)
+ Tim Harvey 1 (0.1%)
+ jason 1 (0.1%)
+ Radhey Shyam Pandey 1 (0.1%)
+ Steven Miao 1 (0.1%)
+ Minal Shah 1 (0.1%)
+ Christoph G. Baumann 1 (0.1%)
+ Oliver Metz 1 (0.1%)
+ Mateusz Zalega 1 (0.1%)
+ Michael Burr 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 25093 (24.7%)
+ Nobuhiro Iwamatsu 8890 (8.8%)
+ Eric Nelson 5909 (5.8%)
+ Rajeshwari S Shinde 5438 (5.4%)
+ Vivek Gautam 4654 (4.6%)
+ Tom Rini 4245 (4.2%)
+ Shengzhou Liu 3428 (3.4%)
+ Priyanka Jain 2799 (2.8%)
+ David Feng 2200 (2.2%)
+ Prabhakar Kushwaha 1977 (1.9%)
+ Rob Herring 1811 (1.8%)
+ Heiko Schocher 1630 (1.6%)
+ Fabio Estevam 1491 (1.5%)
+ Valentin Longchamp 1405 (1.4%)
+ Yoshihiro Shimoda 1377 (1.4%)
+ Łukasz Majewski 1372 (1.4%)
+ Simon Glass 1340 (1.3%)
+ Albert ARIBAUD 1211 (1.2%)
+ Paul Burton 1184 (1.2%)
+ Lokesh Vutla 1177 (1.2%)
+ Stefan Roese 1055 (1.0%)
+ York Sun 1029 (1.0%)
+ Wolfgang Denk 994 (1.0%)
+ Andreas Bießmann 987 (1.0%)
+ Naveen Krishna Chatradhi 922 (0.9%)
+ Jagannadha Sutradharudu Teki 900 (0.9%)
+ Dan Murphy 898 (0.9%)
+ Mike Frysinger 895 (0.9%)
+ Guilherme Maciel Ferreira 863 (0.9%)
+ Tapani Utriainen 841 (0.8%)
+ Kuo-Jung Su 816 (0.8%)
+ Ilya Ledvich 689 (0.7%)
+ Marek Vasut 684 (0.7%)
+ Bo Shen 668 (0.7%)
+ Alban Bedel 664 (0.7%)
+ Jagan Teki 595 (0.6%)
+ Troy Kisky 589 (0.6%)
+ Roger Quadros 514 (0.5%)
+ Nikita Kiryanov 488 (0.5%)
+ Chin Liang See 476 (0.5%)
+ Giuseppe Pagano 435 (0.4%)
+ Przemyslaw Marczak 419 (0.4%)
+ Piotr Wilczek 346 (0.3%)
+ pekon gupta 346 (0.3%)
+ Mateusz Kulikowski 333 (0.3%)
+ Claudiu Manoil 320 (0.3%)
+ SRICHARAN R 308 (0.3%)
+ Samuel Egli 305 (0.3%)
+ Ying Zhang 298 (0.3%)
+ Zhao Qiang 273 (0.3%)
+ Viktar Palstsiuk 262 (0.3%)
+ Scott Wood 232 (0.2%)
+ Henrik Nordström 223 (0.2%)
+ Miao Yan 215 (0.2%)
+ Igor Grinberg 155 (0.2%)
+ trem 153 (0.2%)
+ Mateusz Zalega 138 (0.1%)
+ Stefano Babic 112 (0.1%)
+ Vladimir Zapolskiy 106 (0.1%)
+ Oleg Kosheliev 106 (0.1%)
+ Stephen Warren 105 (0.1%)
+ Sekhar Nori 103 (0.1%)
+ Otavio Salvador 96 (0.1%)
+ Alexey Brodkin 95 (0.1%)
+ Thierry Reding 84 (0.1%)
+ ramneek mehresh 82 (0.1%)
+ Sonic Zhang 73 (0.1%)
+ Shaohui Xie 68 (0.1%)
+ Arpit Goel 68 (0.1%)
+ Hardik Patel 66 (0.1%)
+ Haijun.Zhang 59 (0.1%)
+ Jimmy Zhang 59 (0.1%)
+ Chander Kashyap 53 (0.1%)
+ Srikanth Thokala 53 (0.1%)
+ Luka Perkov 50 (0.0%)
+ Sergei Ianovich 49 (0.0%)
+ Lars Poeschel 49 (0.0%)
+ Axel Lin 48 (0.0%)
+ Pierre Aubert 47 (0.0%)
+ Markus Niebel 44 (0.0%)
+ Po Liu 39 (0.0%)
+ Yegor Yefremov 38 (0.0%)
+ Rojhalat Ibrahim 38 (0.0%)
+ Michal Simek 37 (0.0%)
+ Andrew Ruder 36 (0.0%)
+ Julius Werner 34 (0.0%)
+ Wu, Josh 31 (0.0%)
+ Laurentiu TUDOR 31 (0.0%)
+ Egbert Eich 31 (0.0%)
+ Jaehoon Chung 30 (0.0%)
+ Ma Haijun 29 (0.0%)
+ Sergey Alyoshin 28 (0.0%)
+ Inderpal Singh 27 (0.0%)
+ Steven Miao 21 (0.0%)
+ Darwin Rambo 20 (0.0%)
+ Suriyan Ramasami 16 (0.0%)
+ Oliver Metz 15 (0.0%)
+ Yen Lin 13 (0.0%)
+ Christoph G. Baumann 13 (0.0%)
+ Thomas Weber 12 (0.0%)
+ Andre Heider 12 (0.0%)
+ Jens Scharsig (BuS Elektronik) 11 (0.0%)
+ Mark Langsdorf 11 (0.0%)
+ Karlheinz Jerg 11 (0.0%)
+ John Weber 10 (0.0%)
+ Minal Shah 10 (0.0%)
+ Minkyu Kang 9 (0.0%)
+ Lubomir Popov 9 (0.0%)
+ Anatolij Gustschin 9 (0.0%)
+ Soren Brinkmann 8 (0.0%)
+ Zang Roy-R61911 8 (0.0%)
+ Tim Harvey 8 (0.0%)
+ Jeroen Hofstee 7 (0.0%)
+ Poddar, Sourav 7 (0.0%)
+ Roger Meier 7 (0.0%)
+ Michael Burr 7 (0.0%)
+ Bhupesh Sharma 6 (0.0%)
+ Javier Martinez Canillas 6 (0.0%)
+ Michael Trimarchi 5 (0.0%)
+ David Dueck 5 (0.0%)
+ Gabor Juhos 5 (0.0%)
+ Andrew Bradford 5 (0.0%)
+ Antonios Vamporakis 4 (0.0%)
+ Mugunthan V N 4 (0.0%)
+ Kees Jongenburger 4 (0.0%)
+ Dave Liu 4 (0.0%)
+ Liu Ying 3 (0.0%)
+ Ionut Nicu 3 (0.0%)
+ Che-Liang Chiou 3 (0.0%)
+ Stany MARCEL 3 (0.0%)
+ Sascha Silbe 3 (0.0%)
+ Robert Nelson 2 (0.0%)
+ Ezequiel Garcia 2 (0.0%)
+ Andrew Gabbasov 2 (0.0%)
+ Christian Gmeiner 2 (0.0%)
+ Hisashi Nakamura 2 (0.0%)
+ Siva Durga Prasad Paladugu 2 (0.0%)
+ Jim Lin 2 (0.0%)
+ Vidya Sagar 2 (0.0%)
+ Frank Li 2 (0.0%)
+ Tang Yuantian 2 (0.0%)
+ Stephan Bauroth 2 (0.0%)
+ Daniel Schwierzeck 2 (0.0%)
+ Michael Heimpold 2 (0.0%)
+ jason 2 (0.0%)
+ Radhey Shyam Pandey 2 (0.0%)
+ Charles Manning 1 (0.0%)
+ Lad, Prabhakar 1 (0.0%)
+ Holger Brunck 1 (0.0%)
+ Ian Campbell 1 (0.0%)
+ Vladimir Koutny 1 (0.0%)
+ Matt Porter 1 (0.0%)
+ Chunhe Lan 1 (0.0%)
+ rockly 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 20766 (41.5%)
+ Tom Rini 3933 (7.9%)
+ Rob Herring 1586 (3.2%)
+ Eric Nelson 1163 (2.3%)
+ Wolfgang Denk 986 (2.0%)
+ Albert ARIBAUD 945 (1.9%)
+ Stefan Roese 570 (1.1%)
+ Vladimir Zapolskiy 100 (0.2%)
+ Luka Perkov 13 (0.0%)
+ Axel Lin 8 (0.0%)
+ Soren Brinkmann 8 (0.0%)
+ Sergei Ianovich 7 (0.0%)
+ Jens Scharsig (BuS Elektronik) 7 (0.0%)
+ Yen Lin 5 (0.0%)
+ Michael Trimarchi 3 (0.0%)
+ Egbert Eich 2 (0.0%)
+ Che-Liang Chiou 2 (0.0%)
+ Radhey Shyam Pandey 2 (0.0%)
+ Charles Manning 1 (0.0%)
+ Lad, Prabhakar 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 235)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagannadha Sutradharudu Teki 34 (14.5%)
+ Minkyu Kang 26 (11.1%)
+ Andreas Bießmann 25 (10.6%)
+ Kyungmin Park 14 (6.0%)
+ Simon Glass 11 (4.7%)
+ Hisashi Nakamura 9 (3.8%)
+ Tom Warren 9 (3.8%)
+ Akshay Saraswat 7 (3.0%)
+ Igor Grinberg 6 (2.6%)
+ Tom Rini 5 (2.1%)
+ Poonam Aggrwal 5 (2.1%)
+ Sonic Zhang 5 (2.1%)
+ Michal Simek 5 (2.1%)
+ Nobuhiro Iwamatsu 5 (2.1%)
+ Kouei Abe 4 (1.7%)
+ Scott Wood 4 (1.7%)
+ Anson Huang 3 (1.3%)
+ Vadim Bendebury 3 (1.3%)
+ Vikas C Sajjan 3 (1.3%)
+ David Feng 3 (1.3%)
+ Bhupesh Sharma 2 (0.9%)
+ Mathias Rulf 2 (0.9%)
+ Jon Nettleton 2 (0.9%)
+ Jason Liu 2 (0.9%)
+ Alim Akhtar 2 (0.9%)
+ Ryo Kataoka 2 (0.9%)
+ Anatolij Gustschin 2 (0.9%)
+ Roger Meier 2 (0.9%)
+ Shaohui Xie 2 (0.9%)
+ Lokesh Vutla 2 (0.9%)
+ Naveen Krishna Chatradhi 2 (0.9%)
+ Prabhakar Kushwaha 2 (0.9%)
+ Vivek Gautam 2 (0.9%)
+ Stefan Roese 1 (0.4%)
+ Daniel Schwierzeck 1 (0.4%)
+ Holger Brunck 1 (0.4%)
+ Måns Rullgård 1 (0.4%)
+ Rabeeh Khoury 1 (0.4%)
+ Boris Schmidt 1 (0.4%)
+ Tom Wai-Hong Tam 1 (0.4%)
+ Rockly 1 (0.4%)
+ Their Name 1 (0.4%)
+ Pascal Bach 1 (0.4%)
+ Jason Jin 1 (0.4%)
+ Xie Shaohui-B21989 1 (0.4%)
+ Stefan Bigler 1 (0.4%)
+ R. Chandrasekar 1 (0.4%)
+ Zang Roy-R61911 1 (0.4%)
+ Julius Werner 1 (0.4%)
+ Inderpal Singh 1 (0.4%)
+ Chander Kashyap 1 (0.4%)
+ Thierry Reding 1 (0.4%)
+ Otavio Salvador 1 (0.4%)
+ Stephen Warren 1 (0.4%)
+ Heiko Schocher 1 (0.4%)
+ Priyanka Jain 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 45)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagannadha Sutradharudu Teki 9 (20.0%)
+ Hung-ying Tyan 6 (13.3%)
+ Simon Glass 5 (11.1%)
+ Fabio Estevam 5 (11.1%)
+ Stefan Roese 4 (8.9%)
+ Benoît Thébaudeau 4 (8.9%)
+ Heiko Schocher 3 (6.7%)
+ Tom Warren 1 (2.2%)
+ Naveen Krishna Chatradhi 1 (2.2%)
+ Stephen Warren 1 (2.2%)
+ Che-Liang Chiou 1 (2.2%)
+ Tim Kryger 1 (2.2%)
+ Steve Rae 1 (2.2%)
+ Julian Scheel 1 (2.2%)
+ Andre Heider 1 (2.2%)
+ Łukasz Majewski 1 (2.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 30)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nikita Kiryanov 3 (10.0%)
+ Fabio Estevam 2 (6.7%)
+ Stephen Warren 2 (6.7%)
+ Łukasz Majewski 2 (6.7%)
+ Jens Scharsig (BuS Elektronik) 2 (6.7%)
+ Yebio Mesfin 2 (6.7%)
+ Bo Shen 2 (6.7%)
+ Ilya Ledvich 2 (6.7%)
+ Stefan Roese 1 (3.3%)
+ Naveen Krishna Chatradhi 1 (3.3%)
+ Che-Liang Chiou 1 (3.3%)
+ Tom Rini 1 (3.3%)
+ Michal Simek 1 (3.3%)
+ Eric Nelson 1 (3.3%)
+ Matt Porter 1 (3.3%)
+ Thomas Petazzoni 1 (3.3%)
+ Ryan Barnett 1 (3.3%)
+ Jaehoon Chung 1 (3.3%)
+ Lubomir Popov 1 (3.3%)
+ Piotr Wilczek 1 (3.3%)
+ Rajeshwari S Shinde 1 (3.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 30)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Igor Grinberg 5 (16.7%)
+ Heiko Schocher 4 (13.3%)
+ Nikita Kiryanov 2 (6.7%)
+ Andreas Bießmann 2 (6.7%)
+ Poddar, Sourav 2 (6.7%)
+ Giuseppe Pagano 2 (6.7%)
+ Fabio Estevam 1 (3.3%)
+ Bo Shen 1 (3.3%)
+ Che-Liang Chiou 1 (3.3%)
+ Tom Rini 1 (3.3%)
+ Piotr Wilczek 1 (3.3%)
+ Albert ARIBAUD 1 (3.3%)
+ Axel Lin 1 (3.3%)
+ Egbert Eich 1 (3.3%)
+ Jim Lin 1 (3.3%)
+ Haijun.Zhang 1 (3.3%)
+ Alexey Brodkin 1 (3.3%)
+ pekon gupta 1 (3.3%)
+ Alban Bedel 1 (3.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tomi Valkeinen 3 (16.7%)
+ Otavio Salvador 2 (11.1%)
+ Robin Gong 2 (11.1%)
+ Stefan Roese 1 (5.6%)
+ Andre Heider 1 (5.6%)
+ Ian Campbell 1 (5.6%)
+ Alexey Smishlayev 1 (5.6%)
+ Nishanth Menon 1 (5.6%)
+ Rajendran, Vinothkumar 1 (5.6%)
+ Chao Xu 1 (5.6%)
+ Griffis, Brad 1 (5.6%)
+ Pavel Nakonechny 1 (5.6%)
+ Sven Schwermer 1 (5.6%)
+ Pierre Aubert 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 4 (22.2%)
+ Roger Quadros 3 (16.7%)
+ Fabio Estevam 2 (11.1%)
+ Liu Ying 2 (11.1%)
+ Heiko Schocher 1 (5.6%)
+ Andreas Bießmann 1 (5.6%)
+ Tom Rini 1 (5.6%)
+ pekon gupta 1 (5.6%)
+ Stephen Warren 1 (5.6%)
+ Michal Simek 1 (5.6%)
+ Rob Herring 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 165 (16.8%)
+ Freescale 147 (15.0%)
+ Socionext Inc. 127 (13.0%)
+ Samsung 74 (7.6%)
+ Texas Instruments 57 (5.8%)
+ DENX Software Engineering 54 (5.5%)
+ Xilinx 53 (5.4%)
+ Renesas Electronics 43 (4.4%)
+ Konsulko Group 34 (3.5%)
+ Boundary Devices 30 (3.1%)
+ CompuLab 26 (2.7%)
+ MIPS 24 (2.4%)
+ Google, Inc. 23 (2.3%)
+ Atmel 23 (2.3%)
+ Calxeda 18 (1.8%)
+ Analog Devices 13 (1.3%)
+ Keymile 13 (1.3%)
+ Nobuhiro Iwamatsu 11 (1.1%)
+ O.S. Systems 8 (0.8%)
+ Wind River 7 (0.7%)
+ NVidia 6 (0.6%)
+ AMD 4 (0.4%)
+ BuS Elektronik 4 (0.4%)
+ Linaro 3 (0.3%)
+ Novell 3 (0.3%)
+ Amarula Solutions 2 (0.2%)
+ Broadcom 2 (0.2%)
+ Promwad 2 (0.2%)
+ Siemens 2 (0.2%)
+ Free Electrons 1 (0.1%)
+ TQ Systems 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 25093 (24.7%)
+ Samsung 13328 (13.1%)
+ Freescale 12220 (12.0%)
+ (Unknown) 10272 (10.1%)
+ Renesas Electronics 10033 (9.9%)
+ Boundary Devices 6498 (6.4%)
+ DENX Software Engineering 4484 (4.4%)
+ Konsulko Group 4245 (4.2%)
+ Texas Instruments 3473 (3.4%)
+ Calxeda 1822 (1.8%)
+ Xilinx 1560 (1.5%)
+ Keymile 1417 (1.4%)
+ Google, Inc. 1343 (1.3%)
+ CompuLab 1332 (1.3%)
+ MIPS 1184 (1.2%)
+ Analog Devices 968 (1.0%)
+ Atmel 695 (0.7%)
+ Siemens 312 (0.3%)
+ Promwad 262 (0.3%)
+ Nobuhiro Iwamatsu 236 (0.2%)
+ Wind River 215 (0.2%)
+ NVidia 99 (0.1%)
+ O.S. Systems 96 (0.1%)
+ Linaro 81 (0.1%)
+ TQ Systems 44 (0.0%)
+ AMD 37 (0.0%)
+ Novell 31 (0.0%)
+ Broadcom 20 (0.0%)
+ BuS Elektronik 11 (0.0%)
+ Amarula Solutions 5 (0.0%)
+ Free Electrons 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 235)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 57 (24.3%)
+ Xilinx 39 (16.6%)
+ (Unknown) 37 (15.7%)
+ Freescale 24 (10.2%)
+ Renesas Electronics 16 (6.8%)
+ Google, Inc. 15 (6.4%)
+ NVidia 11 (4.7%)
+ Texas Instruments 7 (3.0%)
+ CompuLab 6 (2.6%)
+ Analog Devices 5 (2.1%)
+ DENX Software Engineering 4 (1.7%)
+ Siemens 4 (1.7%)
+ Nobuhiro Iwamatsu 4 (1.7%)
+ Keymile 2 (0.9%)
+ Linaro 2 (0.9%)
+ O.S. Systems 1 (0.4%)
+ Funky 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 157)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 61 (38.9%)
+ Freescale 22 (14.0%)
+ Texas Instruments 10 (6.4%)
+ Samsung 9 (5.7%)
+ Xilinx 6 (3.8%)
+ DENX Software Engineering 6 (3.8%)
+ NVidia 5 (3.2%)
+ Renesas Electronics 3 (1.9%)
+ CompuLab 3 (1.9%)
+ Keymile 3 (1.9%)
+ Linaro 3 (1.9%)
+ Google, Inc. 2 (1.3%)
+ Analog Devices 2 (1.3%)
+ Siemens 2 (1.3%)
+ Boundary Devices 2 (1.3%)
+ Calxeda 2 (1.3%)
+ Atmel 2 (1.3%)
+ Nobuhiro Iwamatsu 1 (0.6%)
+ O.S. Systems 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ Konsulko Group 1 (0.6%)
+ MIPS 1 (0.6%)
+ Promwad 1 (0.6%)
+ Wind River 1 (0.6%)
+ TQ Systems 1 (0.6%)
+ AMD 1 (0.6%)
+ Novell 1 (0.6%)
+ Broadcom 1 (0.6%)
+ BuS Elektronik 1 (0.6%)
+ Amarula Solutions 1 (0.6%)
+ Free Electrons 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2014.04.rst b/doc/develop/statistics/u-boot-stats-v2014.04.rst
new file mode 100644
index 0000000..47d3314
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2014.04.rst
@@ -0,0 +1,568 @@
+:orphan:
+
+Release Statistics for U-Boot v2014.04
+======================================
+
+* Processed 769 csets from 109 developers
+
+* 26 employers found
+
+* A total of 66836 lines added, 112896 removed (delta -46060)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 162 (21.1%)
+ Stephen Warren 56 (7.3%)
+ Simon Glass 42 (5.5%)
+ Marek Vasut 38 (4.9%)
+ Tom Rini 35 (4.6%)
+ Michal Simek 29 (3.8%)
+ Alexey Brodkin 26 (3.4%)
+ Przemyslaw Marczak 24 (3.1%)
+ Piotr Wilczek 20 (2.6%)
+ Fabio Estevam 17 (2.2%)
+ Łukasz Majewski 13 (1.7%)
+ York Sun 12 (1.6%)
+ Otavio Salvador 11 (1.4%)
+ Tom Warren 9 (1.2%)
+ pekon gupta 9 (1.2%)
+ Shengzhou Liu 8 (1.0%)
+ Prabhakar Kushwaha 8 (1.0%)
+ Enric Balletbo i Serra 8 (1.0%)
+ Darwin Rambo 8 (1.0%)
+ Stefano Babic 7 (0.9%)
+ Heiko Schocher 7 (0.9%)
+ Soren Brinkmann 7 (0.9%)
+ Valentin Longchamp 7 (0.9%)
+ Haijun.Zhang 6 (0.8%)
+ Hannes Petermaier 6 (0.8%)
+ Gerhard Sittig 6 (0.8%)
+ Stefan Roese 6 (0.8%)
+ Priyanka Jain 6 (0.8%)
+ Mugunthan V N 6 (0.8%)
+ Shaveta Leekha 5 (0.7%)
+ Sonic Zhang 5 (0.7%)
+ Dan Murphy 5 (0.7%)
+ Sourav Poddar 5 (0.7%)
+ Markus Niebel 5 (0.7%)
+ Holger Brunck 5 (0.7%)
+ Marcel Ziswiler 4 (0.5%)
+ Baruch Siach 4 (0.5%)
+ Axel Lin 4 (0.5%)
+ Ian Campbell 4 (0.5%)
+ Bo Shen 4 (0.5%)
+ Dave Gerlach 4 (0.5%)
+ Ying Zhang 4 (0.5%)
+ Nishanth Menon 4 (0.5%)
+ Andreas Bießmann 3 (0.4%)
+ Albert ARIBAUD 3 (0.4%)
+ Nitin Garg 3 (0.4%)
+ Minkyu Kang 3 (0.4%)
+ Eric Nelson 3 (0.4%)
+ Pantelis Antoniou 3 (0.4%)
+ Gerlando Falauto 3 (0.4%)
+ Inha Song 3 (0.4%)
+ Tetsuyuki Kobayashi 2 (0.3%)
+ Nobuhiro Iwamatsu 2 (0.3%)
+ David Feng 2 (0.3%)
+ Mela Custodio 2 (0.3%)
+ Chin Liang See 2 (0.3%)
+ Andrew Gabbasov 2 (0.3%)
+ Patrice Bouchand 2 (0.3%)
+ Vadim Bendebury 2 (0.3%)
+ Randall Spangler 2 (0.3%)
+ Dustin Byford 2 (0.3%)
+ Vasili Galka 2 (0.3%)
+ Tim Harvey 2 (0.3%)
+ Andreas Henriksson 2 (0.3%)
+ poonam aggrwal 2 (0.3%)
+ Lokesh Vutla 2 (0.3%)
+ Nikhil Badola 2 (0.3%)
+ Dennis Gilmore 2 (0.3%)
+ Michael Burr 2 (0.3%)
+ Rajeshwari Shinde 2 (0.3%)
+ Siva Durga Prasad Paladugu 2 (0.3%)
+ Anson Huang 2 (0.3%)
+ Rainer Boschung 2 (0.3%)
+ Vivek Gautam 2 (0.3%)
+ Jassi Brar 2 (0.3%)
+ Po Liu 2 (0.3%)
+ Linus Walleij 2 (0.3%)
+ Leo Yan 1 (0.1%)
+ Andreas Färber 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Matthias Fuchs 1 (0.1%)
+ Jonghwa Lee 1 (0.1%)
+ Jimmy Zhang 1 (0.1%)
+ Jagan Teki 1 (0.1%)
+ Ilya Ledvich 1 (0.1%)
+ Suresh Gupta 1 (0.1%)
+ James Hogan 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Hector Palacios 1 (0.1%)
+ Måns Rullgård 1 (0.1%)
+ Janne Grunau 1 (0.1%)
+ Lothar Felten 1 (0.1%)
+ Karicheri, Muralidharan 1 (0.1%)
+ Ionut Nicu 1 (0.1%)
+ Bhupesh Sharma 1 (0.1%)
+ Christian Eggers 1 (0.1%)
+ Scott Jiang 1 (0.1%)
+ Detlev Zundel 1 (0.1%)
+ Andy Ng 1 (0.1%)
+ Aaron Wu 1 (0.1%)
+ Bob Liu 1 (0.1%)
+ Novasys Ingenierie 1 (0.1%)
+ Jim Lin 1 (0.1%)
+ Ezequiel Garcia 1 (0.1%)
+ rick 1 (0.1%)
+ Satyanarayana, Sandhya 1 (0.1%)
+ Ramneek Mehresh 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 71940 (44.6%)
+ Masahiro Yamada 16145 (10.0%)
+ Przemyslaw Marczak 12079 (7.5%)
+ Simon Glass 11586 (7.2%)
+ Jonghwa Lee 5783 (3.6%)
+ Tom Warren 5453 (3.4%)
+ Tom Rini 3717 (2.3%)
+ Alexey Brodkin 3607 (2.2%)
+ Darwin Rambo 3167 (2.0%)
+ Shengzhou Liu 2274 (1.4%)
+ Tim Harvey 2272 (1.4%)
+ Piotr Wilczek 2223 (1.4%)
+ Stefan Roese 1927 (1.2%)
+ Stephen Warren 1893 (1.2%)
+ Hannes Petermaier 1772 (1.1%)
+ Prabhakar Kushwaha 1070 (0.7%)
+ Jassi Brar 915 (0.6%)
+ Michal Simek 865 (0.5%)
+ Gerhard Sittig 854 (0.5%)
+ Chin Liang See 808 (0.5%)
+ pekon gupta 803 (0.5%)
+ Soren Brinkmann 786 (0.5%)
+ Pantelis Antoniou 640 (0.4%)
+ Bo Shen 599 (0.4%)
+ Lothar Felten 559 (0.3%)
+ York Sun 529 (0.3%)
+ Albert ARIBAUD 495 (0.3%)
+ Shaveta Leekha 450 (0.3%)
+ Sonic Zhang 420 (0.3%)
+ Priyanka Jain 398 (0.2%)
+ Fabio Estevam 338 (0.2%)
+ Po Liu 329 (0.2%)
+ Dan Murphy 316 (0.2%)
+ David Feng 306 (0.2%)
+ Ying Zhang 304 (0.2%)
+ Enric Balletbo i Serra 294 (0.2%)
+ Valentin Longchamp 279 (0.2%)
+ Mugunthan V N 235 (0.1%)
+ Heiko Schocher 191 (0.1%)
+ Vadim Bendebury 155 (0.1%)
+ Łukasz Majewski 143 (0.1%)
+ Sourav Poddar 142 (0.1%)
+ Stefano Babic 131 (0.1%)
+ Ionut Nicu 130 (0.1%)
+ Suresh Gupta 128 (0.1%)
+ Jimmy Zhang 118 (0.1%)
+ Rajeshwari Shinde 103 (0.1%)
+ Otavio Salvador 101 (0.1%)
+ Randall Spangler 98 (0.1%)
+ rick 85 (0.1%)
+ Rainer Boschung 82 (0.1%)
+ Scott Jiang 80 (0.0%)
+ Dennis Gilmore 74 (0.0%)
+ poonam aggrwal 72 (0.0%)
+ Inha Song 70 (0.0%)
+ Axel Lin 68 (0.0%)
+ Haijun.Zhang 65 (0.0%)
+ Gerlando Falauto 62 (0.0%)
+ Patrice Bouchand 57 (0.0%)
+ Michael Burr 53 (0.0%)
+ Andreas Henriksson 49 (0.0%)
+ Marcel Ziswiler 46 (0.0%)
+ Andrew Gabbasov 42 (0.0%)
+ Nishanth Menon 40 (0.0%)
+ Anson Huang 31 (0.0%)
+ Dave Gerlach 29 (0.0%)
+ Ian Campbell 24 (0.0%)
+ Markus Niebel 23 (0.0%)
+ Vivek Gautam 22 (0.0%)
+ Daniel Schwierzeck 20 (0.0%)
+ Holger Brunck 18 (0.0%)
+ Janne Grunau 18 (0.0%)
+ Roger Quadros 16 (0.0%)
+ Eric Nelson 13 (0.0%)
+ Baruch Siach 12 (0.0%)
+ Bhupesh Sharma 12 (0.0%)
+ Andreas Bießmann 11 (0.0%)
+ Dustin Byford 11 (0.0%)
+ Nitin Garg 10 (0.0%)
+ Novasys Ingenierie 10 (0.0%)
+ Minkyu Kang 9 (0.0%)
+ Mela Custodio 9 (0.0%)
+ Karicheri, Muralidharan 9 (0.0%)
+ Matthias Fuchs 7 (0.0%)
+ Vasili Galka 6 (0.0%)
+ Linus Walleij 6 (0.0%)
+ Jagan Teki 6 (0.0%)
+ Andy Ng 6 (0.0%)
+ Ilya Ledvich 5 (0.0%)
+ Hector Palacios 5 (0.0%)
+ Aaron Wu 5 (0.0%)
+ Ramneek Mehresh 5 (0.0%)
+ Tetsuyuki Kobayashi 4 (0.0%)
+ Siva Durga Prasad Paladugu 4 (0.0%)
+ Måns Rullgård 4 (0.0%)
+ Ezequiel Garcia 4 (0.0%)
+ Satyanarayana, Sandhya 4 (0.0%)
+ Nobuhiro Iwamatsu 3 (0.0%)
+ Nikhil Badola 3 (0.0%)
+ Leo Yan 3 (0.0%)
+ Lokesh Vutla 2 (0.0%)
+ Andreas Färber 2 (0.0%)
+ Wolfgang Denk 2 (0.0%)
+ Christian Eggers 2 (0.0%)
+ James Hogan 1 (0.0%)
+ Zhao Qiang 1 (0.0%)
+ Detlev Zundel 1 (0.0%)
+ Bob Liu 1 (0.0%)
+ Jim Lin 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 69052 (61.2%)
+ Masahiro Yamada 7038 (6.2%)
+ Jonghwa Lee 2169 (1.9%)
+ Stefan Roese 1843 (1.6%)
+ Jassi Brar 915 (0.8%)
+ Tom Rini 673 (0.6%)
+ pekon gupta 481 (0.4%)
+ Stephen Warren 361 (0.3%)
+ Albert ARIBAUD 252 (0.2%)
+ Enric Balletbo i Serra 78 (0.1%)
+ Rajeshwari Shinde 65 (0.1%)
+ Stefano Babic 59 (0.1%)
+ Vadim Bendebury 44 (0.0%)
+ Axel Lin 43 (0.0%)
+ Inha Song 42 (0.0%)
+ Vivek Gautam 19 (0.0%)
+ Daniel Schwierzeck 17 (0.0%)
+ Minkyu Kang 6 (0.0%)
+ Ilya Ledvich 4 (0.0%)
+ Måns Rullgård 3 (0.0%)
+ Karicheri, Muralidharan 2 (0.0%)
+ Hector Palacios 2 (0.0%)
+ Leo Yan 2 (0.0%)
+ Nobuhiro Iwamatsu 1 (0.0%)
+ Nikhil Badola 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 207)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 41 (19.8%)
+ Tom Warren 25 (12.1%)
+ Kyungmin Park 20 (9.7%)
+ Michal Simek 12 (5.8%)
+ Stephen Warren 11 (5.3%)
+ Pantelis Antoniou 11 (5.3%)
+ York Sun 9 (4.3%)
+ Tom Rini 6 (2.9%)
+ Nobuhiro Iwamatsu 6 (2.9%)
+ Andreas Bießmann 6 (2.9%)
+ Simon Glass 6 (2.9%)
+ poonam aggrwal 5 (2.4%)
+ Marek Vasut 4 (1.9%)
+ Pavel Herrmann 4 (1.9%)
+ Viktor Křivák 4 (1.9%)
+ Tomas Hlavacek 4 (1.9%)
+ Valentin Longchamp 4 (1.9%)
+ Stefan Agner 3 (1.4%)
+ Jaehoon Chung 3 (1.4%)
+ Sonic Zhang 3 (1.4%)
+ Rommel G Custodio 2 (1.0%)
+ Thomas Chou 2 (1.0%)
+ Arpit Goel 2 (1.0%)
+ Holger Brunck 2 (1.0%)
+ Priyanka Jain 2 (1.0%)
+ Lokesh Vutla 1 (0.5%)
+ Jagannadha Sutradharudu Teki 1 (0.5%)
+ Shaohui Xie 1 (0.5%)
+ Uday Hegde 1 (0.5%)
+ Stany MARCEL 1 (0.5%)
+ Kuan-Yu Kuo 1 (0.5%)
+ Bhupesh Sharma 1 (0.5%)
+ Łukasz Majewski 1 (0.5%)
+ Jimmy Zhang 1 (0.5%)
+ Prabhakar Kushwaha 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 43 (38.7%)
+ Jagannadha Sutradharudu Teki 13 (11.7%)
+ Thierry Reding 8 (7.2%)
+ Simon Glass 7 (6.3%)
+ Steve Rae 7 (6.3%)
+ Tim Kryger 7 (6.3%)
+ Vadim Bendebury 5 (4.5%)
+ Tom Rini 3 (2.7%)
+ Lokesh Vutla 3 (2.7%)
+ Felipe Balbi 2 (1.8%)
+ Roger Quadros 2 (1.8%)
+ Łukasz Majewski 1 (0.9%)
+ Stefano Babic 1 (0.9%)
+ Che-Liang Chiou 1 (0.9%)
+ Andrew Chew 1 (0.9%)
+ Hung-ying Tyan 1 (0.9%)
+ Markus Mayer 1 (0.9%)
+ Sricharan R 1 (0.9%)
+ Andreas Färber 1 (0.9%)
+ Randall Spangler 1 (0.9%)
+ Dennis Gilmore 1 (0.9%)
+ Fabio Estevam 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 52)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thierry Reding 21 (40.4%)
+ Che-Liang Chiou 7 (13.5%)
+ Simon Glass 4 (7.7%)
+ Gerhard Sittig 4 (7.7%)
+ Heiko Schocher 3 (5.8%)
+ Vadim Bendebury 2 (3.8%)
+ Łukasz Majewski 2 (3.8%)
+ Jagannadha Sutradharudu Teki 1 (1.9%)
+ Andrew Chew 1 (1.9%)
+ Dennis Gilmore 1 (1.9%)
+ Stephen Warren 1 (1.9%)
+ Andreas Bießmann 1 (1.9%)
+ Marek Vasut 1 (1.9%)
+ Hyungwon Hwang 1 (1.9%)
+ Matthias Fuchs 1 (1.9%)
+ Bo Shen 1 (1.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 52)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 13 (25.0%)
+ Masahiro Yamada 11 (21.2%)
+ Tom Warren 9 (17.3%)
+ Simon Glass 8 (15.4%)
+ Vadim Bendebury 2 (3.8%)
+ Przemyslaw Marczak 2 (3.8%)
+ Marek Vasut 1 (1.9%)
+ Andreas Färber 1 (1.9%)
+ Jimmy Zhang 1 (1.9%)
+ Stefan Roese 1 (1.9%)
+ Inha Song 1 (1.9%)
+ Hector Palacios 1 (1.9%)
+ Jim Lin 1 (1.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 3 (14.3%)
+ Simon Glass 2 (9.5%)
+ Andreas Bießmann 2 (9.5%)
+ Wolfgang Denk 2 (9.5%)
+ Heiko Schocher 1 (4.8%)
+ Łukasz Majewski 1 (4.8%)
+ Dennis Gilmore 1 (4.8%)
+ Bo Shen 1 (4.8%)
+ Tom Rini 1 (4.8%)
+ Eli Nidam 1 (4.8%)
+ Pierre AUBERT 1 (4.8%)
+ Russell King 1 (4.8%)
+ Praveen Rao 1 (4.8%)
+ Abraham Varricatt 1 (4.8%)
+ Olof Johansson 1 (4.8%)
+ Nishanth Menon 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 8 (38.1%)
+ Stephen Warren 5 (23.8%)
+ Tom Rini 2 (9.5%)
+ Nobuhiro Iwamatsu 2 (9.5%)
+ Nishanth Menon 1 (4.8%)
+ Roger Quadros 1 (4.8%)
+ Måns Rullgård 1 (4.8%)
+ Ezequiel Garcia 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 162 (21.1%)
+ (Unknown) 124 (16.1%)
+ Freescale 81 (10.5%)
+ Samsung 68 (8.8%)
+ DENX Software Engineering 66 (8.6%)
+ NVidia 47 (6.1%)
+ Google, Inc. 44 (5.7%)
+ Texas Instruments 38 (4.9%)
+ Konsulko Group 35 (4.6%)
+ AMD 29 (3.8%)
+ Keymile 17 (2.2%)
+ O.S. Systems 11 (1.4%)
+ Xilinx 10 (1.3%)
+ Broadcom 8 (1.0%)
+ Analog Devices 6 (0.8%)
+ Atmel 4 (0.5%)
+ Linaro 4 (0.5%)
+ TQ Systems 4 (0.5%)
+ Boundary Devices 3 (0.4%)
+ Renesas Electronics 2 (0.3%)
+ CompuLab 1 (0.1%)
+ Digi International 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ Free Electrons 1 (0.1%)
+ Marvell 1 (0.1%)
+ Novell 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 75046 (46.6%)
+ Samsung 20432 (12.7%)
+ (Unknown) 18319 (11.4%)
+ Socionext Inc. 16145 (10.0%)
+ Google, Inc. 11741 (7.3%)
+ Freescale 6019 (3.7%)
+ Konsulko Group 3717 (2.3%)
+ Broadcom 3167 (2.0%)
+ Texas Instruments 1596 (1.0%)
+ Linaro 921 (0.6%)
+ AMD 865 (0.5%)
+ NVidia 828 (0.5%)
+ Xilinx 796 (0.5%)
+ Atmel 599 (0.4%)
+ Keymile 441 (0.3%)
+ Analog Devices 425 (0.3%)
+ O.S. Systems 101 (0.1%)
+ TQ Systems 15 (0.0%)
+ Boundary Devices 13 (0.0%)
+ ESD Electronics 7 (0.0%)
+ CompuLab 5 (0.0%)
+ Digi International 5 (0.0%)
+ Free Electrons 4 (0.0%)
+ Renesas Electronics 3 (0.0%)
+ Marvell 3 (0.0%)
+ Novell 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 207)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 65 (31.4%)
+ (Unknown) 38 (18.4%)
+ NVidia 37 (17.9%)
+ Freescale 21 (10.1%)
+ Xilinx 14 (6.8%)
+ Texas Instruments 7 (3.4%)
+ Google, Inc. 6 (2.9%)
+ Keymile 6 (2.9%)
+ Nobuhiro Iwamatsu 6 (2.9%)
+ DENX Software Engineering 4 (1.9%)
+ Analog Devices 3 (1.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 38 (34.2%)
+ Freescale 17 (15.3%)
+ Texas Instruments 10 (9.0%)
+ Samsung 8 (7.2%)
+ DENX Software Engineering 7 (6.3%)
+ Keymile 4 (3.6%)
+ NVidia 3 (2.7%)
+ Xilinx 3 (2.7%)
+ Google, Inc. 2 (1.8%)
+ Analog Devices 2 (1.8%)
+ Linaro 2 (1.8%)
+ Socionext Inc. 1 (0.9%)
+ Konsulko Group 1 (0.9%)
+ Broadcom 1 (0.9%)
+ AMD 1 (0.9%)
+ Atmel 1 (0.9%)
+ O.S. Systems 1 (0.9%)
+ TQ Systems 1 (0.9%)
+ Boundary Devices 1 (0.9%)
+ ESD Electronics 1 (0.9%)
+ CompuLab 1 (0.9%)
+ Digi International 1 (0.9%)
+ Free Electrons 1 (0.9%)
+ Renesas Electronics 1 (0.9%)
+ Marvell 1 (0.9%)
+ Novell 1 (0.9%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2014.07.rst b/doc/develop/statistics/u-boot-stats-v2014.07.rst
new file mode 100644
index 0000000..d931ca0
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2014.07.rst
@@ -0,0 +1,720 @@
+:orphan:
+
+Release Statistics for U-Boot v2014.07
+======================================
+
+* Processed 1074 csets from 146 developers
+
+* 30 employers found
+
+* A total of 65681 lines added, 100024 removed (delta -34343)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 123 (11.5%)
+ Stephen Warren 91 (8.5%)
+ Simon Glass 82 (7.6%)
+ Nobuhiro Iwamatsu 49 (4.6%)
+ Tom Rini 40 (3.7%)
+ Michal Simek 33 (3.1%)
+ Jeroen Hofstee 33 (3.1%)
+ Fabio Estevam 24 (2.2%)
+ Tim Harvey 22 (2.0%)
+ Prabhakar Kushwaha 20 (1.9%)
+ Wu, Josh 19 (1.8%)
+ York Sun 19 (1.8%)
+ Heiko Schocher 18 (1.7%)
+ Ian Campbell 15 (1.4%)
+ pekon gupta 15 (1.4%)
+ Mateusz Zalega 15 (1.4%)
+ Marek Vasut 14 (1.3%)
+ Dirk Eibach 13 (1.2%)
+ Ash Charles 13 (1.2%)
+ Jaehoon Chung 13 (1.2%)
+ Lukasz Majewski 12 (1.1%)
+ Akshay Saraswat 12 (1.1%)
+ Siva Durga Prasad Paladugu 12 (1.1%)
+ Shengzhou Liu 12 (1.1%)
+ Aneesh Bansal 12 (1.1%)
+ Paul Burton 11 (1.0%)
+ Nishanth Menon 11 (1.0%)
+ Vasili Galka 10 (0.9%)
+ Przemyslaw Marczak 10 (0.9%)
+ Alexander Graf 10 (0.9%)
+ Lokesh Vutla 9 (0.8%)
+ Felipe Balbi 8 (0.7%)
+ Hannes Petermaier 8 (0.7%)
+ Andreas Bießmann 8 (0.7%)
+ Murali Karicheri 8 (0.7%)
+ Eric Benard 8 (0.7%)
+ Albert ARIBAUD 7 (0.7%)
+ Rob Herring 7 (0.7%)
+ Samuel Egli 7 (0.7%)
+ Steve Rae 6 (0.6%)
+ Bo Shen 6 (0.6%)
+ Dmitry Lifshitz 6 (0.6%)
+ Zhao Qiang 6 (0.6%)
+ Valentin Longchamp 6 (0.6%)
+ Stefano Babic 5 (0.5%)
+ Shaveta Leekha 5 (0.5%)
+ Chunhe Lan 5 (0.5%)
+ Shaohui Xie 5 (0.5%)
+ Alexey Brodkin 5 (0.5%)
+ Nikhil Badola 5 (0.5%)
+ Tang Yuantian 5 (0.5%)
+ Vitaly Andrianov 5 (0.5%)
+ Eric Nelson 4 (0.4%)
+ Wolfgang Denk 4 (0.4%)
+ Chin Liang See 4 (0.4%)
+ Poddar, Sourav 4 (0.4%)
+ Stefan Agner 4 (0.4%)
+ Daniel Schwierzeck 4 (0.4%)
+ Khoronzhuk, Ivan 3 (0.3%)
+ Thomas Betker 3 (0.3%)
+ Aaron Durbin 3 (0.3%)
+ Pierre Aubert 3 (0.3%)
+ Beomho Seo 3 (0.3%)
+ Thomas Diener 3 (0.3%)
+ Lothar Rubusch 2 (0.2%)
+ Cooper Jr., Franklin 2 (0.2%)
+ Christian Riesch 2 (0.2%)
+ Darwin Rambo 2 (0.2%)
+ Axel Lin 2 (0.2%)
+ J. German Rivera 2 (0.2%)
+ Ilya Ledvich 2 (0.2%)
+ Yasuhisa Umano 2 (0.2%)
+ Jon Loeliger 2 (0.2%)
+ Chao Fu 2 (0.2%)
+ Doug Anderson 2 (0.2%)
+ Alison Wang 2 (0.2%)
+ Brian Norris 2 (0.2%)
+ Michael van der Westhuizen 2 (0.2%)
+ Franck Jullien 2 (0.2%)
+ Charles Manning 2 (0.2%)
+ Hans de Goede 2 (0.2%)
+ Michael Walle 2 (0.2%)
+ Robert Nelson 2 (0.2%)
+ Stefan Bigler 2 (0.2%)
+ Manish Badarkhe 2 (0.2%)
+ Otavio Salvador 2 (0.2%)
+ Daniel Hellstrom 2 (0.2%)
+ Sebastian Siewior 2 (0.2%)
+ Adrian Cox 2 (0.2%)
+ vijay rai 2 (0.2%)
+ Codrin Ciubotariu 2 (0.2%)
+ Pavel Machek 1 (0.1%)
+ Andre Renaud 1 (0.1%)
+ Tyler Baker 1 (0.1%)
+ Alexey Ignatov 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Shaibal.Dutta 1 (0.1%)
+ Łukasz Dałek 1 (0.1%)
+ Sergey Kostanbaev 1 (0.1%)
+ Minkyu Kang 1 (0.1%)
+ Michael Pratt 1 (0.1%)
+ Jon Nalley 1 (0.1%)
+ Dan Murphy 1 (0.1%)
+ Tushar Behera 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ Tim Schendekehl 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Darwin Dingel 1 (0.1%)
+ Mark Rutland 1 (0.1%)
+ Andrew Ruder 1 (0.1%)
+ WingMan Kwok 1 (0.1%)
+ David Mosberger 1 (0.1%)
+ Sandeep Singh 1 (0.1%)
+ poonam aggrwal 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Cormier, Jonathan 1 (0.1%)
+ Piotr Wilczek 1 (0.1%)
+ Tom Wai-Hong Tam 1 (0.1%)
+ David Feng 1 (0.1%)
+ Igor Grinberg 1 (0.1%)
+ Sergey Alyoshin 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Peter A. Bigot 1 (0.1%)
+ Andrew Gabbasov 1 (0.1%)
+ Ye.Li 1 (0.1%)
+ Liu Gang 1 (0.1%)
+ Kim Phillips 1 (0.1%)
+ ramneek mehresh 1 (0.1%)
+ Ebony Zhu 1 (0.1%)
+ Mike Looijmans 1 (0.1%)
+ Belisko Marek 1 (0.1%)
+ Yegor Yefremov 1 (0.1%)
+ Ralph Siemsen 1 (0.1%)
+ Kristian Otnes 1 (0.1%)
+ Xiaobo Xie 1 (0.1%)
+ Jesper B. Christensen 1 (0.1%)
+ Inha Song 1 (0.1%)
+ Stephan Linz 1 (0.1%)
+ Andrey Konovalov 1 (0.1%)
+ Matthias Fuchs 1 (0.1%)
+ Priyanka Jain 1 (0.1%)
+ Haijun.Zhang 1 (0.1%)
+ Scott Wood 1 (0.1%)
+ David Müller (ELSOFT AG) 1 (0.1%)
+ Kees Cook 1 (0.1%)
+ Hung-ying Tyan 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 66904 (46.0%)
+ Simon Glass 7690 (5.3%)
+ Stephen Warren 7624 (5.2%)
+ Daniel Schwierzeck 5276 (3.6%)
+ York Sun 4289 (3.0%)
+ Vitaly Andrianov 3725 (2.6%)
+ Albert ARIBAUD 3721 (2.6%)
+ Akshay Saraswat 3652 (2.5%)
+ Ian Campbell 3431 (2.4%)
+ Nobuhiro Iwamatsu 2613 (1.8%)
+ Tim Harvey 2387 (1.6%)
+ Heiko Schocher 2126 (1.5%)
+ Sergey Kostanbaev 1636 (1.1%)
+ Fabio Estevam 1581 (1.1%)
+ Chunhe Lan 1518 (1.0%)
+ Murali Karicheri 1477 (1.0%)
+ Prabhakar Kushwaha 1463 (1.0%)
+ Ash Charles 1353 (0.9%)
+ Eric Benard 1178 (0.8%)
+ Chin Liang See 1094 (0.8%)
+ Sebastian Siewior 1039 (0.7%)
+ Michal Simek 896 (0.6%)
+ Pierre Aubert 892 (0.6%)
+ Alexander Graf 889 (0.6%)
+ Tom Rini 887 (0.6%)
+ Stefan Agner 788 (0.5%)
+ vijay rai 749 (0.5%)
+ Shaveta Leekha 733 (0.5%)
+ Shengzhou Liu 723 (0.5%)
+ Wolfgang Denk 649 (0.4%)
+ Alison Wang 612 (0.4%)
+ Marek Vasut 599 (0.4%)
+ Dmitry Lifshitz 590 (0.4%)
+ pekon gupta 582 (0.4%)
+ Shaohui Xie 555 (0.4%)
+ Tom Wai-Hong Tam 525 (0.4%)
+ Dirk Eibach 495 (0.3%)
+ Andreas Bießmann 494 (0.3%)
+ Darwin Rambo 468 (0.3%)
+ Siva Durga Prasad Paladugu 426 (0.3%)
+ Vasili Galka 398 (0.3%)
+ J. German Rivera 391 (0.3%)
+ Lukasz Majewski 363 (0.2%)
+ Wu, Josh 321 (0.2%)
+ Thomas Diener 297 (0.2%)
+ Mateusz Zalega 289 (0.2%)
+ Khoronzhuk, Ivan 272 (0.2%)
+ Jaehoon Chung 267 (0.2%)
+ Nishanth Menon 259 (0.2%)
+ Jeroen Hofstee 250 (0.2%)
+ Samuel Egli 229 (0.2%)
+ Cooper Jr., Franklin 225 (0.2%)
+ Bo Shen 188 (0.1%)
+ Lothar Rubusch 170 (0.1%)
+ Alexey Brodkin 161 (0.1%)
+ Otavio Salvador 155 (0.1%)
+ Hung-ying Tyan 153 (0.1%)
+ Zhao Qiang 141 (0.1%)
+ Tang Yuantian 134 (0.1%)
+ Felipe Balbi 115 (0.1%)
+ Paul Burton 111 (0.1%)
+ Nikhil Badola 109 (0.1%)
+ Hou Zhiqiang 106 (0.1%)
+ Valentin Longchamp 104 (0.1%)
+ Matthias Fuchs 101 (0.1%)
+ Przemyslaw Marczak 100 (0.1%)
+ Charles Manning 96 (0.1%)
+ Steve Rae 92 (0.1%)
+ Stefano Babic 92 (0.1%)
+ Aneesh Bansal 87 (0.1%)
+ Sandeep Singh 76 (0.1%)
+ Beomho Seo 73 (0.1%)
+ Chao Fu 72 (0.0%)
+ Lokesh Vutla 68 (0.0%)
+ Adrian Cox 56 (0.0%)
+ Franck Jullien 53 (0.0%)
+ Hannes Petermaier 52 (0.0%)
+ Doug Anderson 51 (0.0%)
+ Stefan Bigler 49 (0.0%)
+ Poddar, Sourav 48 (0.0%)
+ Rob Herring 43 (0.0%)
+ Thomas Betker 38 (0.0%)
+ Michael Walle 32 (0.0%)
+ Keerthy 32 (0.0%)
+ Codrin Ciubotariu 30 (0.0%)
+ Liu Gang 30 (0.0%)
+ Daniel Hellstrom 28 (0.0%)
+ Hans de Goede 24 (0.0%)
+ Sergey Alyoshin 23 (0.0%)
+ Brian Norris 20 (0.0%)
+ Darwin Dingel 20 (0.0%)
+ Aaron Durbin 18 (0.0%)
+ Michael van der Westhuizen 18 (0.0%)
+ Kim Phillips 18 (0.0%)
+ Ye.Li 14 (0.0%)
+ Andrew Ruder 12 (0.0%)
+ Priyanka Jain 12 (0.0%)
+ Jon Loeliger 11 (0.0%)
+ Dan Murphy 11 (0.0%)
+ Eric Nelson 10 (0.0%)
+ David Mosberger 10 (0.0%)
+ Michael Pratt 9 (0.0%)
+ Robert Nelson 8 (0.0%)
+ Manish Badarkhe 8 (0.0%)
+ Scott Wood 8 (0.0%)
+ poonam aggrwal 6 (0.0%)
+ ramneek mehresh 6 (0.0%)
+ Axel Lin 5 (0.0%)
+ Chris Packham 5 (0.0%)
+ Igor Grinberg 5 (0.0%)
+ Andrew Gabbasov 5 (0.0%)
+ Christian Riesch 4 (0.0%)
+ Alexey Ignatov 4 (0.0%)
+ Ebony Zhu 4 (0.0%)
+ Inha Song 4 (0.0%)
+ Andrey Konovalov 4 (0.0%)
+ Ilya Ledvich 3 (0.0%)
+ Yasuhisa Umano 3 (0.0%)
+ Cormier, Jonathan 3 (0.0%)
+ Yegor Yefremov 3 (0.0%)
+ Xiaobo Xie 3 (0.0%)
+ Minkyu Kang 2 (0.0%)
+ Tushar Behera 2 (0.0%)
+ Tim Schendekehl 2 (0.0%)
+ David Feng 2 (0.0%)
+ Peter A. Bigot 2 (0.0%)
+ Jesper B. Christensen 2 (0.0%)
+ Haijun.Zhang 2 (0.0%)
+ Pavel Machek 1 (0.0%)
+ Andre Renaud 1 (0.0%)
+ Tyler Baker 1 (0.0%)
+ Linus Walleij 1 (0.0%)
+ Shaibal.Dutta 1 (0.0%)
+ Łukasz Dałek 1 (0.0%)
+ Jon Nalley 1 (0.0%)
+ Shawn Guo 1 (0.0%)
+ Mark Rutland 1 (0.0%)
+ WingMan Kwok 1 (0.0%)
+ Piotr Wilczek 1 (0.0%)
+ Mike Looijmans 1 (0.0%)
+ Belisko Marek 1 (0.0%)
+ Ralph Siemsen 1 (0.0%)
+ Kristian Otnes 1 (0.0%)
+ Stephan Linz 1 (0.0%)
+ David Müller (ELSOFT AG) 1 (0.0%)
+ Kees Cook 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 64999 (65.0%)
+ Daniel Schwierzeck 5230 (5.2%)
+ Albert ARIBAUD 2130 (2.1%)
+ vijay rai 671 (0.7%)
+ Stephen Warren 647 (0.6%)
+ Nobuhiro Iwamatsu 537 (0.5%)
+ Stefan Agner 507 (0.5%)
+ Wolfgang Denk 374 (0.4%)
+ Vasili Galka 329 (0.3%)
+ Khoronzhuk, Ivan 104 (0.1%)
+ Jeroen Hofstee 62 (0.1%)
+ Hans de Goede 18 (0.0%)
+ Przemyslaw Marczak 9 (0.0%)
+ Kim Phillips 9 (0.0%)
+ Rob Herring 5 (0.0%)
+ Ye.Li 5 (0.0%)
+ Manish Badarkhe 3 (0.0%)
+ Nishanth Menon 2 (0.0%)
+ Cormier, Jonathan 2 (0.0%)
+ Xiaobo Xie 2 (0.0%)
+ Minkyu Kang 2 (0.0%)
+ Shawn Guo 1 (0.0%)
+ David Müller (ELSOFT AG) 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 296)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 62 (20.9%)
+ Tom Warren 32 (10.8%)
+ Michal Simek 21 (7.1%)
+ Andreas Bießmann 18 (6.1%)
+ Tom Rini 8 (2.7%)
+ Henrik Nordström 6 (2.0%)
+ Oliver Schinagl 6 (2.0%)
+ poonam aggrwal 6 (2.0%)
+ Simon Glass 6 (2.0%)
+ Jens Kuske 5 (1.7%)
+ Murali Karicheri 5 (1.7%)
+ Wolfgang Denk 4 (1.4%)
+ Hans de Goede 4 (1.4%)
+ Stefan Roese 4 (1.4%)
+ Luke Leighton 4 (1.4%)
+ Chen-Yu Tsai 4 (1.4%)
+ Vitaly Andrianov 4 (1.4%)
+ Kim Phillips 3 (1.0%)
+ Peter A. Bigot 3 (1.0%)
+ Alexandru Gagniuc 3 (1.0%)
+ Emilio López 3 (1.0%)
+ Kyungmin Park 3 (1.0%)
+ WingMan Kwok 3 (1.0%)
+ Jaehoon Chung 3 (1.0%)
+ pekon gupta 3 (1.0%)
+ Akshay Saraswat 3 (1.0%)
+ Khoronzhuk, Ivan 2 (0.7%)
+ Rob Herring 2 (0.7%)
+ Arnab Basu 2 (0.7%)
+ Alim Akhtar 2 (0.7%)
+ Hatim Ali 2 (0.7%)
+ Wills Wang 2 (0.7%)
+ Hisashi Nakamura 2 (0.7%)
+ Arkadiusz Wlodarczyk 2 (0.7%)
+ Gaurav Kumar Rana 2 (0.7%)
+ ramneek mehresh 2 (0.7%)
+ Priyanka Jain 2 (0.7%)
+ Valentin Longchamp 2 (0.7%)
+ Marek Vasut 2 (0.7%)
+ Siva Durga Prasad Paladugu 2 (0.7%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ Mike Looijmans 1 (0.3%)
+ Bhupesh Sharma 1 (0.3%)
+ Lijun Pan 1 (0.3%)
+ Shruti Kanetkar 1 (0.3%)
+ Varun Sethi 1 (0.3%)
+ Vadim Bendebury 1 (0.3%)
+ Mårten Wikman 1 (0.3%)
+ Katie Roberts-Hoffman 1 (0.3%)
+ Rong Chang 1 (0.3%)
+ Sean Paul 1 (0.3%)
+ Vincent Palatin 1 (0.3%)
+ Siarhei Siamashka 1 (0.3%)
+ Adam Sampson 1 (0.3%)
+ Aleksei Mamlin 1 (0.3%)
+ Luc Verhaegen 1 (0.3%)
+ Patrick Wood 1 (0.3%)
+ Ma Haijun 1 (0.3%)
+ Javier Martinez Canillas 1 (0.3%)
+ Minghuan Lian 1 (0.3%)
+ Leela Krishna Amudala 1 (0.3%)
+ Rajeshwari Shinde 1 (0.3%)
+ Josh Triplett 1 (0.3%)
+ Michal Marek 1 (0.3%)
+ Yoshiyuki Ito 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Ruchika Gupta 1 (0.3%)
+ Rex Chang 1 (0.3%)
+ Sandeep Nair 1 (0.3%)
+ Igor Grinberg 1 (0.3%)
+ Aaron Durbin 1 (0.3%)
+ Poddar, Sourav 1 (0.3%)
+ Stefan Bigler 1 (0.3%)
+ Lokesh Vutla 1 (0.3%)
+ Chao Fu 1 (0.3%)
+ Sandeep Singh 1 (0.3%)
+ J. German Rivera 1 (0.3%)
+ Darwin Rambo 1 (0.3%)
+ Alison Wang 1 (0.3%)
+ Shaveta Leekha 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ York Sun 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 150)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 85 (56.7%)
+ Tom Rini 12 (8.0%)
+ Stefan Roese 8 (5.3%)
+ Marek Vasut 8 (5.3%)
+ Jagannadha Sutradharudu Teki 6 (4.0%)
+ Lukasz Majewski 6 (4.0%)
+ Simon Glass 5 (3.3%)
+ Stephen Warren 4 (2.7%)
+ Yen Lin 3 (2.0%)
+ Roger Meier 2 (1.3%)
+ Wolfgang Denk 1 (0.7%)
+ Siarhei Siamashka 1 (0.7%)
+ Lokesh Vutla 1 (0.7%)
+ Darwin Rambo 1 (0.7%)
+ Masahiro Yamada 1 (0.7%)
+ Vipin Kumar 1 (0.7%)
+ Michael Trimarchi 1 (0.7%)
+ Their Name 1 (0.7%)
+ Steve Rae 1 (0.7%)
+ Alexey Brodkin 1 (0.7%)
+ Wu, Josh 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 71)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 15 (21.1%)
+ Lukasz Majewski 11 (15.5%)
+ Wu, Josh 4 (5.6%)
+ Michal Simek 4 (5.6%)
+ Bo Shen 4 (5.6%)
+ Ash Charles 4 (5.6%)
+ Masahiro Yamada 3 (4.2%)
+ Piotr Wilczek 3 (4.2%)
+ Mateusz Zalega 3 (4.2%)
+ Stephen Warren 2 (2.8%)
+ Arkadiusz Wlodarczyk 2 (2.8%)
+ Iain Paton 2 (2.8%)
+ Stefan Roese 1 (1.4%)
+ Siarhei Siamashka 1 (1.4%)
+ Their Name 1 (1.4%)
+ Alexey Brodkin 1 (1.4%)
+ Andreas Bießmann 1 (1.4%)
+ Heiko Schocher 1 (1.4%)
+ Hector Palacios 1 (1.4%)
+ Matthias Weißer 1 (1.4%)
+ Yebio Mesfin 1 (1.4%)
+ Eric Nelson 1 (1.4%)
+ Stefano Babic 1 (1.4%)
+ Otavio Salvador 1 (1.4%)
+ Samuel Egli 1 (1.4%)
+ Fabio Estevam 1 (1.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 71)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jaehoon Chung 10 (14.1%)
+ Masahiro Yamada 9 (12.7%)
+ Akshay Saraswat 7 (9.9%)
+ Mateusz Zalega 5 (7.0%)
+ Fabio Estevam 4 (5.6%)
+ Thomas Betker 4 (5.6%)
+ Simon Glass 3 (4.2%)
+ Bo Shen 3 (4.2%)
+ Ash Charles 3 (4.2%)
+ Stephen Warren 3 (4.2%)
+ Andreas Bießmann 3 (4.2%)
+ Beomho Seo 3 (4.2%)
+ Marek Vasut 2 (2.8%)
+ Heiko Schocher 1 (1.4%)
+ Eric Nelson 1 (1.4%)
+ Peter A. Bigot 1 (1.4%)
+ Nobuhiro Iwamatsu 1 (1.4%)
+ Poddar, Sourav 1 (1.4%)
+ Stefan Agner 1 (1.4%)
+ Jeroen Hofstee 1 (1.4%)
+ Ralph Siemsen 1 (1.4%)
+ Kees Cook 1 (1.4%)
+ Michael Pratt 1 (1.4%)
+ Doug Anderson 1 (1.4%)
+ Ian Campbell 1 (1.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 2 (16.7%)
+ Matthias Weißer 1 (8.3%)
+ Tom Rini 1 (8.3%)
+ Daniel Schwierzeck 1 (8.3%)
+ Vasili Galka 1 (8.3%)
+ Tony Lindgren 1 (8.3%)
+ Stefan Herbrechtsmeier 1 (8.3%)
+ Andrey Filippov 1 (8.3%)
+ Tom Taylor 1 (8.3%)
+ Jon Loeliger 1 (8.3%)
+ Dirk Eibach 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 12)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 4 (33.3%)
+ Michal Simek 2 (16.7%)
+ Kees Cook 1 (8.3%)
+ Stefano Babic 1 (8.3%)
+ Lokesh Vutla 1 (8.3%)
+ Christian Riesch 1 (8.3%)
+ Daniel Hellstrom 1 (8.3%)
+ Paul Burton 1 (8.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 215 (20.0%)
+ Freescale 141 (13.1%)
+ Socionext Inc. 123 (11.5%)
+ NVidia 90 (8.4%)
+ Google, Inc. 85 (7.9%)
+ Samsung 69 (6.4%)
+ Texas Instruments 68 (6.3%)
+ Renesas Electronics 51 (4.7%)
+ DENX Software Engineering 44 (4.1%)
+ Konsulko Group 40 (3.7%)
+ AMD 30 (2.8%)
+ Atmel 25 (2.3%)
+ Xilinx 15 (1.4%)
+ Guntermann & Drunck 13 (1.2%)
+ MIPS 11 (1.0%)
+ Broadcom 9 (0.8%)
+ CompuLab 9 (0.8%)
+ Keymile 8 (0.7%)
+ Siemens 7 (0.7%)
+ Boundary Devices 4 (0.4%)
+ Linaro 3 (0.3%)
+ Gaisler Research 2 (0.2%)
+ Red Hat 2 (0.2%)
+ linutronix 2 (0.2%)
+ Oracle 2 (0.2%)
+ O.S. Systems 2 (0.2%)
+ ARM 1 (0.1%)
+ Bluewater Systems 1 (0.1%)
+ Cisco 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 66904 (46.0%)
+ (Unknown) 24960 (17.2%)
+ Freescale 13473 (9.3%)
+ Google, Inc. 8266 (5.7%)
+ NVidia 7623 (5.2%)
+ Texas Instruments 6815 (4.7%)
+ Samsung 4753 (3.3%)
+ DENX Software Engineering 3637 (2.5%)
+ Renesas Electronics 2616 (1.8%)
+ linutronix 1039 (0.7%)
+ Konsulko Group 887 (0.6%)
+ AMD 706 (0.5%)
+ Xilinx 616 (0.4%)
+ CompuLab 598 (0.4%)
+ Broadcom 561 (0.4%)
+ Atmel 509 (0.4%)
+ Guntermann & Drunck 495 (0.3%)
+ Siemens 229 (0.2%)
+ O.S. Systems 155 (0.1%)
+ Keymile 153 (0.1%)
+ MIPS 111 (0.1%)
+ ESD Electronics 101 (0.1%)
+ Gaisler Research 28 (0.0%)
+ Red Hat 24 (0.0%)
+ Oracle 11 (0.0%)
+ Boundary Devices 10 (0.0%)
+ Linaro 6 (0.0%)
+ ARM 1 (0.0%)
+ Bluewater Systems 1 (0.0%)
+ Cisco 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 296)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 79 (26.7%)
+ (Unknown) 68 (23.0%)
+ NVidia 32 (10.8%)
+ Freescale 29 (9.8%)
+ Texas Instruments 29 (9.8%)
+ Xilinx 23 (7.8%)
+ DENX Software Engineering 12 (4.1%)
+ Google, Inc. 9 (3.0%)
+ Red Hat 4 (1.4%)
+ Renesas Electronics 3 (1.0%)
+ Keymile 3 (1.0%)
+ CompuLab 1 (0.3%)
+ Broadcom 1 (0.3%)
+ Collabora Ltd. 1 (0.3%)
+ Novell 1 (0.3%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 148)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 54 (36.5%)
+ Freescale 29 (19.6%)
+ Texas Instruments 12 (8.1%)
+ Samsung 10 (6.8%)
+ DENX Software Engineering 6 (4.1%)
+ Google, Inc. 3 (2.0%)
+ CompuLab 3 (2.0%)
+ Broadcom 3 (2.0%)
+ Linaro 3 (2.0%)
+ Xilinx 2 (1.4%)
+ Renesas Electronics 2 (1.4%)
+ Keymile 2 (1.4%)
+ Atmel 2 (1.4%)
+ NVidia 1 (0.7%)
+ Red Hat 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ linutronix 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ AMD 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Siemens 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ MIPS 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ Gaisler Research 1 (0.7%)
+ Oracle 1 (0.7%)
+ Boundary Devices 1 (0.7%)
+ ARM 1 (0.7%)
+ Bluewater Systems 1 (0.7%)
+ Cisco 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2014.10.rst b/doc/develop/statistics/u-boot-stats-v2014.10.rst
new file mode 100644
index 0000000..ef33126
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2014.10.rst
@@ -0,0 +1,662 @@
+:orphan:
+
+Release Statistics for U-Boot v2014.10
+======================================
+
+* Processed 1111 csets from 145 developers
+
+* 24 employers found
+
+* A total of 146820 lines added, 58801 removed (delta 88019)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 149 (13.4%)
+ Simon Glass 147 (13.2%)
+ Marek Vasut 59 (5.3%)
+ Hans de Goede 43 (3.9%)
+ Jeroen Hofstee 41 (3.7%)
+ Fabio Estevam 36 (3.2%)
+ Eric Nelson 28 (2.5%)
+ Pavel Machek 27 (2.4%)
+ Tom Rini 23 (2.1%)
+ Stephen Warren 23 (2.1%)
+ Heiko Schocher 21 (1.9%)
+ Nikita Kiryanov 20 (1.8%)
+ Nobuhiro Iwamatsu 19 (1.7%)
+ York Sun 17 (1.5%)
+ Tim Harvey 17 (1.5%)
+ Khoronzhuk, Ivan 16 (1.4%)
+ Siarhei Siamashka 16 (1.4%)
+ Bo Shen 14 (1.3%)
+ Przemyslaw Marczak 14 (1.3%)
+ Łukasz Majewski 13 (1.2%)
+ Stefan Roese 12 (1.1%)
+ Marc Zyngier 12 (1.1%)
+ Ian Campbell 11 (1.0%)
+ Wang Huan 11 (1.0%)
+ Ye.Li 10 (0.9%)
+ Steve Rae 10 (0.9%)
+ Hao Zhang 10 (0.9%)
+ Thomas Chou 9 (0.8%)
+ pekon gupta 9 (0.8%)
+ Boschung, Rainer 9 (0.8%)
+ Ajay Kumar 8 (0.7%)
+ Vasili Galka 8 (0.7%)
+ Stefan Agner 7 (0.6%)
+ Hannes Petermaier 6 (0.5%)
+ David Müller (ELSOFT AG) 6 (0.5%)
+ DrEagle 6 (0.5%)
+ Prabhakar Kushwaha 6 (0.5%)
+ Bryan Wu 6 (0.5%)
+ Chin Liang See 5 (0.5%)
+ vijay rai 5 (0.5%)
+ Guillaume GARDET 5 (0.5%)
+ Dmitry Lifshitz 5 (0.5%)
+ Roman Byshko 5 (0.5%)
+ Shengzhou Liu 5 (0.5%)
+ Roger Quadros 4 (0.4%)
+ Troy Kisky 4 (0.4%)
+ Rostislav Lisovy 4 (0.4%)
+ Shaveta Leekha 4 (0.4%)
+ Peng Fan 4 (0.4%)
+ Thierry Reding 4 (0.4%)
+ Michal Simek 4 (0.4%)
+ Scott Branden 4 (0.4%)
+ Daniel Schwierzeck 4 (0.4%)
+ Alexander Holler 4 (0.4%)
+ Andreas Bießmann 3 (0.3%)
+ Murali Karicheri 3 (0.3%)
+ Valentin Longchamp 3 (0.3%)
+ Sonic Zhang 3 (0.3%)
+ Nitin Garg 3 (0.3%)
+ Chris Packham 3 (0.3%)
+ Stefano Babic 3 (0.3%)
+ Wu, Josh 3 (0.3%)
+ Maxin B. John 3 (0.3%)
+ Benoît Thébaudeau 3 (0.3%)
+ Igor Grinberg 3 (0.3%)
+ Shaohui Xie 3 (0.3%)
+ Tang Yuantian 3 (0.3%)
+ Mugunthan V N 3 (0.3%)
+ Lijun Pan 3 (0.3%)
+ Wolfgang Denk 2 (0.2%)
+ Robert Baldyga 2 (0.2%)
+ Kevin Mihelich 2 (0.2%)
+ Marcel Ziswiler 2 (0.2%)
+ Mario Schuknecht 2 (0.2%)
+ Peter Bigot 2 (0.2%)
+ Arnab Basu 2 (0.2%)
+ Priyanka Jain 2 (0.2%)
+ Gabriel Huau 2 (0.2%)
+ Andrew Ruder 2 (0.2%)
+ Vadim Bendebury 2 (0.2%)
+ Claudiu Manoil 2 (0.2%)
+ R Sricharan 2 (0.2%)
+ Holger Brunck 2 (0.2%)
+ Jiandong Zheng 2 (0.2%)
+ Roger Meier 2 (0.2%)
+ Sascha Silbe 2 (0.2%)
+ Markus Niebel 2 (0.2%)
+ Iain Paton 2 (0.2%)
+ Dennis Gilmore 2 (0.2%)
+ Dirk Eibach 2 (0.2%)
+ Alexander Kochetkov 1 (0.1%)
+ Stefan Herbrechtsmeier 1 (0.1%)
+ Minkyu Kang 1 (0.1%)
+ Anthony Felice 1 (0.1%)
+ Daniel Mack 1 (0.1%)
+ Diego Rondini 1 (0.1%)
+ Robert Winkler 1 (0.1%)
+ Charles Manning 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Baruch Siach 1 (0.1%)
+ Wally Yeh 1 (0.1%)
+ Scott Wood 1 (0.1%)
+ Joe Perches 1 (0.1%)
+ Thomas Petazzoni 1 (0.1%)
+ Ebony Zhu 1 (0.1%)
+ Sandeep Singh 1 (0.1%)
+ ramneek mehresh 1 (0.1%)
+ Zhiqiang Hou 1 (0.1%)
+ Luka Perkov 1 (0.1%)
+ Jagan Teki 1 (0.1%)
+ Boris Brezillon 1 (0.1%)
+ Gerhard Sittig 1 (0.1%)
+ Magnus Lilja 1 (0.1%)
+ Nikolay Dimitrov 1 (0.1%)
+ Jingchang Lu 1 (0.1%)
+ Jason Jin 1 (0.1%)
+ FUKAUMI Naoki 1 (0.1%)
+ Lokesh Vutla 1 (0.1%)
+ Enric Balletbo i Serra 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Sergey Kostanbaev 1 (0.1%)
+ Christian Riesch 1 (0.1%)
+ Matwey V. Kornilov 1 (0.1%)
+ Vitaly Andrianov 1 (0.1%)
+ Colin Cross 1 (0.1%)
+ Wang Dongsheng 1 (0.1%)
+ Liu Ying 1 (0.1%)
+ Barnes, Clifton A 1 (0.1%)
+ Michael van der Westhuizen 1 (0.1%)
+ Peter Crosthwaite 1 (0.1%)
+ Scott Jiang 1 (0.1%)
+ Aaron Wu 1 (0.1%)
+ Andy Fleming 1 (0.1%)
+ Holger Freyther 1 (0.1%)
+ Lubomir Rintel 1 (0.1%)
+ Henrik Nordstrom 1 (0.1%)
+ Dinh Nguyen 1 (0.1%)
+ Ma Haijun 1 (0.1%)
+ Rajendra Nayak 1 (0.1%)
+ Zang Roy-R61911 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Rotariu Marian-Cristian 1 (0.1%)
+ Chen-Yu Tsai 1 (0.1%)
+ Jonathan Liu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 92757 (49.5%)
+ Heiko Schocher 29800 (15.9%)
+ Simon Glass 8475 (4.5%)
+ Steve Rae 5503 (2.9%)
+ Nobuhiro Iwamatsu 4413 (2.4%)
+ Wang Huan 4171 (2.2%)
+ Fabio Estevam 3132 (1.7%)
+ Daniel Schwierzeck 2710 (1.4%)
+ Marek Vasut 2428 (1.3%)
+ Thomas Chou 2225 (1.2%)
+ Nikita Kiryanov 1748 (0.9%)
+ Chin Liang See 1720 (0.9%)
+ Jiandong Zheng 1717 (0.9%)
+ Stefan Agner 1497 (0.8%)
+ Markus Niebel 1461 (0.8%)
+ Hao Zhang 1440 (0.8%)
+ Pavel Machek 1416 (0.8%)
+ Przemyslaw Marczak 1369 (0.7%)
+ Hans de Goede 1359 (0.7%)
+ York Sun 1145 (0.6%)
+ Lijun Pan 964 (0.5%)
+ Stephen Warren 813 (0.4%)
+ Khoronzhuk, Ivan 760 (0.4%)
+ Ye.Li 754 (0.4%)
+ Scott Branden 720 (0.4%)
+ DrEagle 710 (0.4%)
+ Christian Gmeiner 682 (0.4%)
+ Marc Zyngier 644 (0.3%)
+ Siarhei Siamashka 563 (0.3%)
+ pekon gupta 550 (0.3%)
+ Tim Harvey 541 (0.3%)
+ Sonic Zhang 533 (0.3%)
+ Łukasz Majewski 481 (0.3%)
+ Jeroen Hofstee 460 (0.2%)
+ Dennis Gilmore 394 (0.2%)
+ Nitin Garg 393 (0.2%)
+ Tom Rini 351 (0.2%)
+ Hannes Petermaier 330 (0.2%)
+ Ian Campbell 322 (0.2%)
+ Ajay Kumar 303 (0.2%)
+ Eric Nelson 295 (0.2%)
+ Charles Manning 265 (0.1%)
+ Stefan Roese 263 (0.1%)
+ Vadim Bendebury 229 (0.1%)
+ Roman Byshko 226 (0.1%)
+ Henrik Nordstrom 215 (0.1%)
+ Bryan Wu 208 (0.1%)
+ Bo Shen 201 (0.1%)
+ Andrew Ruder 185 (0.1%)
+ Enric Balletbo i Serra 178 (0.1%)
+ Vitaly Andrianov 173 (0.1%)
+ R Sricharan 164 (0.1%)
+ Shaohui Xie 161 (0.1%)
+ Wang Dongsheng 160 (0.1%)
+ Michael van der Westhuizen 158 (0.1%)
+ Tang Yuantian 143 (0.1%)
+ Prabhakar Kushwaha 140 (0.1%)
+ Matwey V. Kornilov 136 (0.1%)
+ Anthony Felice 127 (0.1%)
+ Jingchang Lu 118 (0.1%)
+ Jason Jin 117 (0.1%)
+ Gabriel Huau 116 (0.1%)
+ Murali Karicheri 93 (0.0%)
+ Shengzhou Liu 88 (0.0%)
+ Boschung, Rainer 83 (0.0%)
+ Thierry Reding 67 (0.0%)
+ Mario Schuknecht 64 (0.0%)
+ vijay rai 62 (0.0%)
+ Sergey Kostanbaev 58 (0.0%)
+ Robert Baldyga 49 (0.0%)
+ Colin Cross 49 (0.0%)
+ Vasili Galka 47 (0.0%)
+ Guillaume GARDET 47 (0.0%)
+ FUKAUMI Naoki 41 (0.0%)
+ Alexander Holler 39 (0.0%)
+ Andreas Bießmann 39 (0.0%)
+ Claudiu Manoil 39 (0.0%)
+ Dmitry Lifshitz 38 (0.0%)
+ Shaveta Leekha 38 (0.0%)
+ Rostislav Lisovy 36 (0.0%)
+ Lokesh Vutla 36 (0.0%)
+ Stefano Babic 34 (0.0%)
+ Robert Winkler 31 (0.0%)
+ Minkyu Kang 30 (0.0%)
+ Jonathan Liu 30 (0.0%)
+ Michal Simek 24 (0.0%)
+ Mugunthan V N 24 (0.0%)
+ Troy Kisky 19 (0.0%)
+ Liu Ying 19 (0.0%)
+ Andre Przywara 18 (0.0%)
+ Wu, Josh 17 (0.0%)
+ Wolfgang Denk 17 (0.0%)
+ Benoît Thébaudeau 16 (0.0%)
+ David Müller (ELSOFT AG) 15 (0.0%)
+ Peng Fan 15 (0.0%)
+ Kevin Mihelich 14 (0.0%)
+ Arnab Basu 13 (0.0%)
+ Diego Rondini 13 (0.0%)
+ Dirk Eibach 12 (0.0%)
+ Roger Quadros 11 (0.0%)
+ ramneek mehresh 11 (0.0%)
+ Holger Freyther 11 (0.0%)
+ Chen-Yu Tsai 11 (0.0%)
+ Sascha Silbe 10 (0.0%)
+ Ma Haijun 10 (0.0%)
+ Rajendra Nayak 10 (0.0%)
+ Peter Bigot 9 (0.0%)
+ Priyanka Jain 9 (0.0%)
+ Roger Meier 9 (0.0%)
+ Zhao Qiang 9 (0.0%)
+ Valentin Longchamp 8 (0.0%)
+ Thomas Petazzoni 8 (0.0%)
+ Zang Roy-R61911 8 (0.0%)
+ Rotariu Marian-Cristian 8 (0.0%)
+ Holger Brunck 7 (0.0%)
+ Chris Packham 6 (0.0%)
+ Maxin B. John 6 (0.0%)
+ Scott Wood 6 (0.0%)
+ Igor Grinberg 5 (0.0%)
+ Ebony Zhu 5 (0.0%)
+ Andy Fleming 5 (0.0%)
+ Marcel Ziswiler 4 (0.0%)
+ Alexander Kochetkov 4 (0.0%)
+ Jagan Teki 4 (0.0%)
+ Nikolay Dimitrov 4 (0.0%)
+ Barnes, Clifton A 4 (0.0%)
+ Iain Paton 3 (0.0%)
+ Michael Walle 3 (0.0%)
+ Gerhard Sittig 3 (0.0%)
+ Daniel Mack 2 (0.0%)
+ Sandeep Singh 2 (0.0%)
+ Luka Perkov 2 (0.0%)
+ Magnus Lilja 2 (0.0%)
+ Christian Riesch 2 (0.0%)
+ Aaron Wu 2 (0.0%)
+ Stefan Herbrechtsmeier 1 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Wally Yeh 1 (0.0%)
+ Joe Perches 1 (0.0%)
+ Zhiqiang Hou 1 (0.0%)
+ Boris Brezillon 1 (0.0%)
+ Peter Crosthwaite 1 (0.0%)
+ Scott Jiang 1 (0.0%)
+ Lubomir Rintel 1 (0.0%)
+ Dinh Nguyen 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Thomas Chou 1898 (3.2%)
+ Lijun Pan 924 (1.6%)
+ Stefan Roese 170 (0.3%)
+ Andrew Ruder 161 (0.3%)
+ Enric Balletbo i Serra 135 (0.2%)
+ Matwey V. Kornilov 132 (0.2%)
+ Sonic Zhang 127 (0.2%)
+ Sergey Kostanbaev 57 (0.1%)
+ Claudiu Manoil 14 (0.0%)
+ Michal Simek 14 (0.0%)
+ Jeroen Hofstee 11 (0.0%)
+ Peng Fan 10 (0.0%)
+ Ebony Zhu 5 (0.0%)
+ Maxin B. John 4 (0.0%)
+ Kevin Mihelich 2 (0.0%)
+ Roger Quadros 2 (0.0%)
+ ramneek mehresh 2 (0.0%)
+ Daniel Mack 2 (0.0%)
+ Sandeep Singh 2 (0.0%)
+ Roger Meier 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 238)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 41 (17.2%)
+ Hans de Goede 30 (12.6%)
+ Marek Vasut 18 (7.6%)
+ Khoronzhuk, Ivan 14 (5.9%)
+ Andreas Bießmann 13 (5.5%)
+ Alison Wang 11 (4.6%)
+ Stefan Roese 8 (3.4%)
+ Henrik Nordstrom 7 (2.9%)
+ Prafulla Wadaskar 6 (2.5%)
+ Tom Rini 6 (2.5%)
+ Eric Nelson 6 (2.5%)
+ Steve Rae 6 (2.5%)
+ Tom Warren 5 (2.1%)
+ Michal Simek 4 (1.7%)
+ Oliver Schinagl 4 (1.7%)
+ Valentin Longchamp 4 (1.7%)
+ Yuan Yao 3 (1.3%)
+ Priyanka Jain 3 (1.3%)
+ Lokesh Vutla 3 (1.3%)
+ Prabhakar Kushwaha 3 (1.3%)
+ Sandeep Singh 2 (0.8%)
+ Hisashi Nakamura 2 (0.8%)
+ Arnab Basu 2 (0.8%)
+ Jason Jin 2 (0.8%)
+ Stephen Warren 2 (0.8%)
+ Thomas Chou 1 (0.4%)
+ Sonic Zhang 1 (0.4%)
+ Joakim Tjernlund 1 (0.4%)
+ Boris BREZILLON 1 (0.4%)
+ Keegan Garcia 1 (0.4%)
+ Ulf Magnusson 1 (0.4%)
+ Chen Lu 1 (0.4%)
+ Christoffer Dall 1 (0.4%)
+ Scott McNutt 1 (0.4%)
+ Andrew Chew 1 (0.4%)
+ Jimmy Zhang 1 (0.4%)
+ Alexandre Courbot 1 (0.4%)
+ Anatolij Gustschin 1 (0.4%)
+ Andrew Bott 1 (0.4%)
+ Andrew Wishart 1 (0.4%)
+ Neil Piercy 1 (0.4%)
+ Poonam Aggrwal 1 (0.4%)
+ Troy Kisky 1 (0.4%)
+ Igor Grinberg 1 (0.4%)
+ Ma Haijun 1 (0.4%)
+ Holger Brunck 1 (0.4%)
+ Chen-Yu Tsai 1 (0.4%)
+ Wang Dongsheng 1 (0.4%)
+ R Sricharan 1 (0.4%)
+ Jingchang Lu 1 (0.4%)
+ Ajay Kumar 1 (0.4%)
+ Ian Campbell 1 (0.4%)
+ Marc Zyngier 1 (0.4%)
+ York Sun 1 (0.4%)
+ Stefan Agner 1 (0.4%)
+ Chin Liang See 1 (0.4%)
+ Nobuhiro Iwamatsu 1 (0.4%)
+ Masahiro Yamada 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 103)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 43 (41.7%)
+ Jagannadha Sutradharudu Teki 19 (18.4%)
+ Marek Vasut 8 (7.8%)
+ Stephen Warren 6 (5.8%)
+ Tom Rini 5 (4.9%)
+ Masahiro Yamada 5 (4.9%)
+ Simon Glass 4 (3.9%)
+ Andreas Bießmann 3 (2.9%)
+ Stefan Roese 3 (2.9%)
+ Eric Nelson 2 (1.9%)
+ Steve Rae 1 (1.0%)
+ Sonic Zhang 1 (1.0%)
+ Christoffer Dall 1 (1.0%)
+ Doug Anderson 1 (1.0%)
+ Fabio Estevam 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 49)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 12 (24.5%)
+ Ajay Kumar 6 (12.2%)
+ Masahiro Yamada 5 (10.2%)
+ Luka Perkov 5 (10.2%)
+ Stephen Warren 4 (8.2%)
+ Michal Simek 3 (6.1%)
+ Tom Rini 2 (4.1%)
+ Karsten Merker 2 (4.1%)
+ Fabio Estevam 1 (2.0%)
+ Igor Grinberg 1 (2.0%)
+ Jeroen Hofstee 1 (2.0%)
+ Zoltan HERPAI 1 (2.0%)
+ Tony Zhang 1 (2.0%)
+ Samuel Egli 1 (2.0%)
+ Ash Charles 1 (2.0%)
+ Magnus Lilja 1 (2.0%)
+ Thierry Reding 1 (2.0%)
+ Heiko Schocher 1 (2.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 49)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 9 (18.4%)
+ Simon Glass 7 (14.3%)
+ Stefan Roese 7 (14.3%)
+ Ajay Kumar 5 (10.2%)
+ Hans de Goede 4 (8.2%)
+ Michal Simek 2 (4.1%)
+ Thierry Reding 2 (4.1%)
+ Bryan Wu 2 (4.1%)
+ Tom Rini 1 (2.0%)
+ Chin Liang See 1 (2.0%)
+ Roger Meier 1 (2.0%)
+ Lubomir Rintel 1 (2.0%)
+ Peter Crosthwaite 1 (2.0%)
+ Peter Bigot 1 (2.0%)
+ Benoît Thébaudeau 1 (2.0%)
+ Vadim Bendebury 1 (2.0%)
+ Nitin Garg 1 (2.0%)
+ Łukasz Majewski 1 (2.0%)
+ Daniel Schwierzeck 1 (2.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (14.3%)
+ York Sun 3 (14.3%)
+ Masahiro Yamada 2 (9.5%)
+ Karsten Merker 2 (9.5%)
+ Jeroen Hofstee 2 (9.5%)
+ Steve Rae 2 (9.5%)
+ Jonas Karlsson 2 (9.5%)
+ Stephen Warren 1 (4.8%)
+ Otavio Salvador 1 (4.8%)
+ Dirk Zimoch 1 (4.8%)
+ Helmut Raiger 1 (4.8%)
+ Vagrant Cascadian 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 9 (42.9%)
+ Tom Rini 2 (9.5%)
+ Hans de Goede 2 (9.5%)
+ Fabio Estevam 2 (9.5%)
+ Thierry Reding 1 (4.8%)
+ Bryan Wu 1 (4.8%)
+ Benoît Thébaudeau 1 (4.8%)
+ Ian Campbell 1 (4.8%)
+ Christian Riesch 1 (4.8%)
+ Gerhard Sittig 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 223 (20.1%)
+ Google, Inc. 150 (13.5%)
+ Socionext Inc. 149 (13.4%)
+ Freescale 127 (11.4%)
+ DENX Software Engineering 125 (11.3%)
+ Texas Instruments 50 (4.5%)
+ Red Hat 43 (3.9%)
+ Samsung 38 (3.4%)
+ Boundary Devices 33 (3.0%)
+ CompuLab 28 (2.5%)
+ NVidia 28 (2.5%)
+ Konsulko Group 23 (2.1%)
+ Renesas Electronics 19 (1.7%)
+ Atmel 17 (1.5%)
+ Broadcom 16 (1.4%)
+ Keymile 14 (1.3%)
+ ARM 12 (1.1%)
+ AMD 4 (0.4%)
+ Analog Devices 4 (0.4%)
+ ENEA AB 3 (0.3%)
+ Guntermann & Drunck 2 (0.2%)
+ Citrix 1 (0.1%)
+ Free Electrons 1 (0.1%)
+ Linaro 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 92757 (49.5%)
+ DENX Software Engineering 33961 (18.1%)
+ (Unknown) 15908 (8.5%)
+ Freescale 11719 (6.3%)
+ Google, Inc. 8753 (4.7%)
+ Broadcom 7940 (4.2%)
+ Renesas Electronics 4413 (2.4%)
+ Texas Instruments 3261 (1.7%)
+ Samsung 2232 (1.2%)
+ CompuLab 1791 (1.0%)
+ Red Hat 1359 (0.7%)
+ NVidia 977 (0.5%)
+ ARM 644 (0.3%)
+ Analog Devices 535 (0.3%)
+ Konsulko Group 351 (0.2%)
+ Boundary Devices 345 (0.2%)
+ Atmel 218 (0.1%)
+ Keymile 98 (0.1%)
+ AMD 24 (0.0%)
+ Linaro 18 (0.0%)
+ Guntermann & Drunck 12 (0.0%)
+ Citrix 9 (0.0%)
+ Free Electrons 8 (0.0%)
+ ENEA AB 6 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 238)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 42 (17.6%)
+ (Unknown) 34 (14.3%)
+ Freescale 31 (13.0%)
+ Red Hat 30 (12.6%)
+ DENX Software Engineering 27 (11.3%)
+ Texas Instruments 25 (10.5%)
+ NVidia 10 (4.2%)
+ Boundary Devices 7 (2.9%)
+ Broadcom 6 (2.5%)
+ Marvell 6 (2.5%)
+ Keymile 5 (2.1%)
+ Xilinx 4 (1.7%)
+ Renesas Electronics 2 (0.8%)
+ CompuLab 1 (0.4%)
+ ARM 1 (0.4%)
+ Analog Devices 1 (0.4%)
+ Linaro 1 (0.4%)
+ Free Electrons 1 (0.4%)
+ Panasonic 1 (0.4%)
+ Psyent 1 (0.4%)
+ Transmode Systems 1 (0.4%)
+ Nobuhiro Iwamatsu 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 148)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65 (43.9%)
+ Freescale 28 (18.9%)
+ Texas Instruments 10 (6.8%)
+ DENX Software Engineering 7 (4.7%)
+ Samsung 5 (3.4%)
+ NVidia 3 (2.0%)
+ Boundary Devices 3 (2.0%)
+ Broadcom 3 (2.0%)
+ Keymile 3 (2.0%)
+ CompuLab 3 (2.0%)
+ Google, Inc. 3 (2.0%)
+ Analog Devices 2 (1.4%)
+ Atmel 2 (1.4%)
+ Red Hat 1 (0.7%)
+ Renesas Electronics 1 (0.7%)
+ ARM 1 (0.7%)
+ Linaro 1 (0.7%)
+ Free Electrons 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ AMD 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Citrix 1 (0.7%)
+ ENEA AB 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2015.01.rst b/doc/develop/statistics/u-boot-stats-v2015.01.rst
new file mode 100644
index 0000000..d81afd5
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2015.01.rst
@@ -0,0 +1,749 @@
+:orphan:
+
+Release Statistics for U-Boot v2015.01
+======================================
+
+* Processed 1588 csets from 162 developers
+
+* 35 employers found
+
+* A total of 106613 lines added, 159635 removed (delta -53022)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 303 (19.1%)
+ Masahiro Yamada 182 (11.5%)
+ Nobuhiro Iwamatsu 58 (3.7%)
+ Stefan Roese 52 (3.3%)
+ Jeroen Hofstee 52 (3.3%)
+ Hans de Goede 51 (3.2%)
+ Marek Vasut 45 (2.8%)
+ Bin Meng 44 (2.8%)
+ Fabio Estevam 41 (2.6%)
+ Thierry Reding 37 (2.3%)
+ Khoronzhuk, Ivan 31 (2.0%)
+ Tom Rini 22 (1.4%)
+ Ye.Li 22 (1.4%)
+ Daniel Schwierzeck 21 (1.3%)
+ Heiko Schocher 21 (1.3%)
+ Przemyslaw Marczak 20 (1.3%)
+ Peng Fan 18 (1.1%)
+ Igor Grinberg 18 (1.1%)
+ Chen-Yu Tsai 17 (1.1%)
+ Alison Wang 16 (1.0%)
+ Shengzhou Liu 15 (0.9%)
+ Marcel Ziswiler 14 (0.9%)
+ Wolfgang Denk 14 (0.9%)
+ Felipe Balbi 13 (0.8%)
+ Suriyan Ramasami 13 (0.8%)
+ Hao Zhang 13 (0.8%)
+ Guillaume GARDET 12 (0.8%)
+ Ian Campbell 12 (0.8%)
+ Nikita Kiryanov 12 (0.8%)
+ Anatolij Gustschin 12 (0.8%)
+ Bo Shen 11 (0.7%)
+ Christian Gmeiner 11 (0.7%)
+ Markus Niebel 11 (0.7%)
+ Vikas Manocha 10 (0.6%)
+ Dirk Eibach 10 (0.6%)
+ Ruchika Gupta 10 (0.6%)
+ Stephen Warren 9 (0.6%)
+ Shaohui Xie 9 (0.6%)
+ York Sun 8 (0.5%)
+ Nikhil Badola 8 (0.5%)
+ Soeren Moch 8 (0.5%)
+ Gerald Kerma 7 (0.4%)
+ Sjoerd Simons 7 (0.4%)
+ Chunhe Lan 7 (0.4%)
+ Xiubo Li 7 (0.4%)
+ Paul Kocialkowski 7 (0.4%)
+ Stefan Herbrechtsmeier 6 (0.4%)
+ Zhao Qiang 6 (0.4%)
+ Rabin Vincent 6 (0.4%)
+ Andreas Bießmann 5 (0.3%)
+ Dmitry Lifshitz 5 (0.3%)
+ Steve Rae 5 (0.3%)
+ Linus Walleij 5 (0.3%)
+ Tang Yuantian 5 (0.3%)
+ Shaveta Leekha 5 (0.3%)
+ Akshay Saraswat 5 (0.3%)
+ Valentin Longchamp 5 (0.3%)
+ John Tobias 5 (0.3%)
+ Axel Lin 4 (0.3%)
+ Andrew Gabbasov 4 (0.3%)
+ Hector Palacios 4 (0.3%)
+ Albert Aribaud 4 (0.3%)
+ Eric Nelson 4 (0.3%)
+ Oliver Schinagl 4 (0.3%)
+ Georges Savoundararadj 4 (0.3%)
+ Łukasz Majewski 3 (0.2%)
+ Alexey Brodkin 3 (0.2%)
+ Stefan Agner 3 (0.2%)
+ Jagannadha Sutradharudu Teki 3 (0.2%)
+ Maxime Ripard 3 (0.2%)
+ Sonic Zhang 3 (0.2%)
+ Karicheri, Muralidharan 3 (0.2%)
+ Nishanth Menon 3 (0.2%)
+ Rene Griessl 3 (0.2%)
+ Iain Paton 3 (0.2%)
+ Nikolay Dimitrov 3 (0.2%)
+ Hyungwon Hwang 3 (0.2%)
+ Rob Herring 3 (0.2%)
+ Lubomir Popov 3 (0.2%)
+ Prabhakar Kushwaha 3 (0.2%)
+ Dinh Nguyen 3 (0.2%)
+ Ying Zhang 3 (0.2%)
+ Scott Jiang 3 (0.2%)
+ Vitaly Andrianov 3 (0.2%)
+ Kevin Hilman 2 (0.1%)
+ Jeremiah Mahler 2 (0.1%)
+ Luka Perkov 2 (0.1%)
+ Adnan Ali 2 (0.1%)
+ Pavel Machek 2 (0.1%)
+ Tudor Laurentiu 2 (0.1%)
+ Jeffrey Ladouceur 2 (0.1%)
+ Yao Yuan 2 (0.1%)
+ Chenhui Zhao 2 (0.1%)
+ Minghuan Lian 2 (0.1%)
+ Angelo Dureghello 2 (0.1%)
+ Wu, Josh 2 (0.1%)
+ Mark Tomlinson 2 (0.1%)
+ Priyanka Jain 2 (0.1%)
+ Suresh Gupta 2 (0.1%)
+ Luc Verhaegen 2 (0.1%)
+ Ashish Kumar 2 (0.1%)
+ Michal Simek 2 (0.1%)
+ Peter Crosthwaite 2 (0.1%)
+ Robert P. J. Day 2 (0.1%)
+ Gabe Black 2 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Peter Tyser 1 (0.1%)
+ John Schmoller 1 (0.1%)
+ Bill Pringlemeir 1 (0.1%)
+ Guido Martínez 1 (0.1%)
+ David Büchi 1 (0.1%)
+ Peter Howard 1 (0.1%)
+ Hua Yanghao 1 (0.1%)
+ Anthoine Bourgeois 1 (0.1%)
+ Pierre Aubert 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Joonyoung Shim 1 (0.1%)
+ Jan Luebbe 1 (0.1%)
+ gaurav rana 1 (0.1%)
+ harninder rai 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Allen Martin 1 (0.1%)
+ Jaiprakash Singh 1 (0.1%)
+ Ramneek Mehresh 1 (0.1%)
+ Jason Jin 1 (0.1%)
+ Peter Kümmel 1 (0.1%)
+ Xiaobo Xie 1 (0.1%)
+ vijay rai 1 (0.1%)
+ Holger Brunck 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Gregoire Gentil 1 (0.1%)
+ Franklin S Cooper Jr 1 (0.1%)
+ Sanchayan Maity 1 (0.1%)
+ Rostislav Lisovy 1 (0.1%)
+ li pengbo 1 (0.1%)
+ Nitin Garg 1 (0.1%)
+ Alexey Ignatov 1 (0.1%)
+ Andrew Ruder 1 (0.1%)
+ David Müller (ELSOFT AG) 1 (0.1%)
+ Vadim Bendebury 1 (0.1%)
+ Alim Akhtar 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Paul Gortmaker 1 (0.1%)
+ Zoltan HERPAI 1 (0.1%)
+ Tinghui Wang 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Dominik Muth 1 (0.1%)
+ Jorgen Lundman 1 (0.1%)
+ Timo Ketola 1 (0.1%)
+ Dominic Sacré 1 (0.1%)
+ Noam Camus 1 (0.1%)
+ Dileep Katta 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Yehuda Yitschak 1 (0.1%)
+ Matthias Fuchs 1 (0.1%)
+ Ahmad Draidi 1 (0.1%)
+ Olaf Mandel 1 (0.1%)
+ Wills Wang 1 (0.1%)
+ WingMan Kwok 1 (0.1%)
+ Oleksandr Tymoshenko 1 (0.1%)
+ Alexandre Courbot 1 (0.1%)
+ Robert Baldyga 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 77001 (30.6%)
+ Wolfgang Denk 50034 (19.9%)
+ Simon Glass 37488 (14.9%)
+ Marek Vasut 17641 (7.0%)
+ Stefan Roese 7535 (3.0%)
+ Shengzhou Liu 5963 (2.4%)
+ Nobuhiro Iwamatsu 5173 (2.1%)
+ Thierry Reding 4841 (1.9%)
+ Bin Meng 4301 (1.7%)
+ Ruchika Gupta 2560 (1.0%)
+ Dirk Eibach 2407 (1.0%)
+ Hans de Goede 2190 (0.9%)
+ Oleksandr Tymoshenko 1843 (0.7%)
+ Nikita Kiryanov 1812 (0.7%)
+ Khoronzhuk, Ivan 1670 (0.7%)
+ Bo Shen 1478 (0.6%)
+ Suriyan Ramasami 1411 (0.6%)
+ Hao Zhang 1389 (0.6%)
+ Igor Grinberg 1168 (0.5%)
+ Ye.Li 1093 (0.4%)
+ Marcel Ziswiler 1035 (0.4%)
+ Vikas Manocha 1005 (0.4%)
+ Heiko Schocher 964 (0.4%)
+ Oliver Schinagl 852 (0.3%)
+ Daniel Schwierzeck 836 (0.3%)
+ Peng Fan 829 (0.3%)
+ Allen Martin 810 (0.3%)
+ Soeren Moch 728 (0.3%)
+ Rene Griessl 718 (0.3%)
+ Fabio Estevam 683 (0.3%)
+ Luc Verhaegen 678 (0.3%)
+ Felipe Balbi 632 (0.3%)
+ Alison Wang 609 (0.2%)
+ Georges Savoundararadj 559 (0.2%)
+ Ying Zhang 546 (0.2%)
+ Jeroen Hofstee 512 (0.2%)
+ Jagannadha Sutradharudu Teki 485 (0.2%)
+ Xiubo Li 462 (0.2%)
+ Chen-Yu Tsai 460 (0.2%)
+ Shaohui Xie 428 (0.2%)
+ Steve Rae 391 (0.2%)
+ Ian Campbell 387 (0.2%)
+ Vitaly Andrianov 380 (0.2%)
+ WingMan Kwok 379 (0.2%)
+ Tang Yuantian 363 (0.1%)
+ Przemyslaw Marczak 341 (0.1%)
+ Gabe Black 338 (0.1%)
+ Nikhil Badola 328 (0.1%)
+ Guillaume GARDET 294 (0.1%)
+ Chunhe Lan 283 (0.1%)
+ Akshay Saraswat 282 (0.1%)
+ Stephen Warren 278 (0.1%)
+ Jeffrey Ladouceur 275 (0.1%)
+ Scott Jiang 268 (0.1%)
+ John Tobias 252 (0.1%)
+ Zhao Qiang 232 (0.1%)
+ Sjoerd Simons 210 (0.1%)
+ Stefan Herbrechtsmeier 201 (0.1%)
+ Paul Kocialkowski 191 (0.1%)
+ Christian Gmeiner 190 (0.1%)
+ Iain Paton 187 (0.1%)
+ Hyungwon Hwang 173 (0.1%)
+ Stefan Agner 165 (0.1%)
+ Chenhui Zhao 162 (0.1%)
+ Linus Walleij 155 (0.1%)
+ Tom Rini 116 (0.0%)
+ Suresh Gupta 114 (0.0%)
+ York Sun 108 (0.0%)
+ Albert Aribaud 107 (0.0%)
+ Markus Niebel 105 (0.0%)
+ Minghuan Lian 95 (0.0%)
+ Shaveta Leekha 81 (0.0%)
+ Wu, Josh 80 (0.0%)
+ Gerald Kerma 77 (0.0%)
+ Yangbo Lu 75 (0.0%)
+ Anatolij Gustschin 73 (0.0%)
+ Yao Yuan 72 (0.0%)
+ Nikolay Dimitrov 70 (0.0%)
+ Karicheri, Muralidharan 65 (0.0%)
+ Dmitry Lifshitz 61 (0.0%)
+ Ashish Kumar 61 (0.0%)
+ Ahmad Draidi 57 (0.0%)
+ Maxime Ripard 45 (0.0%)
+ Rob Herring 44 (0.0%)
+ Andrew Gabbasov 42 (0.0%)
+ Prabhakar Kushwaha 40 (0.0%)
+ Jeremiah Mahler 40 (0.0%)
+ Pavel Machek 40 (0.0%)
+ Łukasz Majewski 37 (0.0%)
+ Eric Nelson 36 (0.0%)
+ Tudor Laurentiu 35 (0.0%)
+ Nishanth Menon 33 (0.0%)
+ Nitin Garg 31 (0.0%)
+ Tinghui Wang 31 (0.0%)
+ Jan Luebbe 30 (0.0%)
+ Andreas Bießmann 29 (0.0%)
+ Axel Lin 29 (0.0%)
+ Priyanka Jain 29 (0.0%)
+ Peter Crosthwaite 29 (0.0%)
+ Alexey Ignatov 27 (0.0%)
+ Dinh Nguyen 22 (0.0%)
+ Valentin Longchamp 21 (0.0%)
+ Alexey Brodkin 21 (0.0%)
+ Alim Akhtar 20 (0.0%)
+ Jason Jin 18 (0.0%)
+ Sonic Zhang 16 (0.0%)
+ Rabin Vincent 15 (0.0%)
+ Hector Palacios 14 (0.0%)
+ Dileep Katta 14 (0.0%)
+ Jaehoon Chung 12 (0.0%)
+ Robert Baldyga 12 (0.0%)
+ John Schmoller 10 (0.0%)
+ Kevin Hilman 9 (0.0%)
+ Lubomir Popov 8 (0.0%)
+ Andrew Ruder 8 (0.0%)
+ Vadim Bendebury 8 (0.0%)
+ Soren Brinkmann 8 (0.0%)
+ Dominik Muth 8 (0.0%)
+ Jorgen Lundman 8 (0.0%)
+ Dirk Behme 7 (0.0%)
+ Rostislav Lisovy 7 (0.0%)
+ Matthias Fuchs 7 (0.0%)
+ harninder rai 6 (0.0%)
+ Luka Perkov 5 (0.0%)
+ Pali Rohár 5 (0.0%)
+ David Büchi 5 (0.0%)
+ Holger Brunck 5 (0.0%)
+ Gregoire Gentil 5 (0.0%)
+ Timo Ketola 5 (0.0%)
+ Vagrant Cascadian 5 (0.0%)
+ Angelo Dureghello 4 (0.0%)
+ Mark Tomlinson 4 (0.0%)
+ Peter Tyser 4 (0.0%)
+ Peter Howard 4 (0.0%)
+ vijay rai 4 (0.0%)
+ Joakim Tjernlund 4 (0.0%)
+ Michal Simek 3 (0.0%)
+ Robert P. J. Day 3 (0.0%)
+ Pierre Aubert 3 (0.0%)
+ Sanchayan Maity 3 (0.0%)
+ Wills Wang 3 (0.0%)
+ Adnan Ali 2 (0.0%)
+ Bill Pringlemeir 2 (0.0%)
+ Guido Martínez 2 (0.0%)
+ Joonyoung Shim 2 (0.0%)
+ Peter Kümmel 2 (0.0%)
+ David Müller (ELSOFT AG) 2 (0.0%)
+ Paul Gortmaker 2 (0.0%)
+ Noam Camus 2 (0.0%)
+ Hua Yanghao 1 (0.0%)
+ Anthoine Bourgeois 1 (0.0%)
+ gaurav rana 1 (0.0%)
+ Jaiprakash Singh 1 (0.0%)
+ Ramneek Mehresh 1 (0.0%)
+ Xiaobo Xie 1 (0.0%)
+ Franklin S Cooper Jr 1 (0.0%)
+ li pengbo 1 (0.0%)
+ Zoltan HERPAI 1 (0.0%)
+ Dominic Sacré 1 (0.0%)
+ Yehuda Yitschak 1 (0.0%)
+ Olaf Mandel 1 (0.0%)
+ Alexandre Courbot 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 68164 (42.7%)
+ Wolfgang Denk 49893 (31.3%)
+ Marek Vasut 13397 (8.4%)
+ Nikita Kiryanov 1435 (0.9%)
+ Jagannadha Sutradharudu Teki 393 (0.2%)
+ Georges Savoundararadj 238 (0.1%)
+ Sjoerd Simons 102 (0.1%)
+ Scott Jiang 74 (0.0%)
+ Iain Paton 62 (0.0%)
+ Jeroen Hofstee 38 (0.0%)
+ Axel Lin 10 (0.0%)
+ Daniel Schwierzeck 7 (0.0%)
+ Kevin Hilman 5 (0.0%)
+ Holger Brunck 5 (0.0%)
+ Tom Rini 4 (0.0%)
+ Joakim Tjernlund 4 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 290)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 36 (12.4%)
+ Simon Glass 32 (11.0%)
+ Minkyu Kang 31 (10.7%)
+ Hans de Goede 27 (9.3%)
+ Andreas Bießmann 21 (7.2%)
+ Khoronzhuk, Ivan 19 (6.6%)
+ Tom Rini 16 (5.5%)
+ Hisashi Nakamura 13 (4.5%)
+ Stefan Roese 8 (2.8%)
+ Poonam Aggrwal 6 (2.1%)
+ Chen-Yu Tsai 6 (2.1%)
+ Nobuhiro Iwamatsu 5 (1.7%)
+ Michal Simek 4 (1.4%)
+ Michal Marek 4 (1.4%)
+ Shaohui Xie 4 (1.4%)
+ Ye.Li 4 (1.4%)
+ Hao Zhang 4 (1.4%)
+ Marek Vasut 3 (1.0%)
+ Jason Jin 3 (1.0%)
+ Ramneek Mehresh 2 (0.7%)
+ Laurentiu Tudor 2 (0.7%)
+ Doug Anderson 2 (0.7%)
+ Xiaobo Xie 2 (0.7%)
+ Alim Akhtar 2 (0.7%)
+ Nitin Garg 2 (0.7%)
+ Akshay Saraswat 2 (0.7%)
+ Masahiro Yamada 1 (0.3%)
+ Nikita Kiryanov 1 (0.3%)
+ Peter Tyser 1 (0.3%)
+ Mike Rapoport 1 (0.3%)
+ Ben Dooks 1 (0.3%)
+ Cristian Sovaiala 1 (0.3%)
+ Chen Lu 1 (0.3%)
+ Wujie Qiu 1 (0.3%)
+ Sandeep Singh 1 (0.3%)
+ Roy Zang 1 (0.3%)
+ Ryo Kataoka 1 (0.3%)
+ Horia Geanta 1 (0.3%)
+ Randy Dunlap 1 (0.3%)
+ Josh Triplett 1 (0.3%)
+ Brian Norris 1 (0.3%)
+ Borislav Petkov 1 (0.3%)
+ Yoshiyuki Ito 1 (0.3%)
+ Gabor Juhos 1 (0.3%)
+ Nishanth Menon 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Prabhakar Kushwaha 1 (0.3%)
+ Peter Crosthwaite 1 (0.3%)
+ Maxime Ripard 1 (0.3%)
+ Ian Campbell 1 (0.3%)
+ Minghuan Lian 1 (0.3%)
+ Suresh Gupta 1 (0.3%)
+ Zhao Qiang 1 (0.3%)
+ Stephen Warren 1 (0.3%)
+ Felipe Balbi 1 (0.3%)
+ Bo Shen 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 376)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 123 (32.7%)
+ Tom Rini 70 (18.6%)
+ Jagannadha Sutradharudu Teki 63 (16.8%)
+ Bin Meng 32 (8.5%)
+ Simon Glass 14 (3.7%)
+ Andreas Bießmann 11 (2.9%)
+ Masahiro Yamada 10 (2.7%)
+ Bo Shen 10 (2.7%)
+ Hans de Goede 7 (1.9%)
+ Stefan Roese 6 (1.6%)
+ Fabio Estevam 6 (1.6%)
+ Marek Vasut 5 (1.3%)
+ Łukasz Majewski 3 (0.8%)
+ Benoît Thébaudeau 2 (0.5%)
+ Bill Richardson 2 (0.5%)
+ Gabe Black 2 (0.5%)
+ Stephen Warren 1 (0.3%)
+ Felipe Balbi 1 (0.3%)
+ Sjoerd Simons 1 (0.3%)
+ Stefano Babic 1 (0.3%)
+ Sethi Varun-B16395 1 (0.3%)
+ Nikolay Dimitrov 1 (0.3%)
+ Christian Gmeiner 1 (0.3%)
+ Przemyslaw Marczak 1 (0.3%)
+ Steve Rae 1 (0.3%)
+ Suriyan Ramasami 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 96)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 28 (29.2%)
+ Luka Perkov 16 (16.7%)
+ Łukasz Majewski 11 (11.5%)
+ Stephen Warren 9 (9.4%)
+ Bin Meng 4 (4.2%)
+ Kevin Hilman 3 (3.1%)
+ Masahiro Yamada 2 (2.1%)
+ Stefan Roese 2 (2.1%)
+ Gabe Black 2 (2.1%)
+ Nikolay Dimitrov 2 (2.1%)
+ Nikita Kiryanov 2 (2.1%)
+ Philippe Reynes 2 (2.1%)
+ Guillaume GARDET 2 (2.1%)
+ Hans de Goede 1 (1.0%)
+ Sjoerd Simons 1 (1.0%)
+ Stefano Babic 1 (1.0%)
+ Przemyslaw Marczak 1 (1.0%)
+ Robert Nelson 1 (1.0%)
+ Vince Hsu 1 (1.0%)
+ Boris Brezillon 1 (1.0%)
+ Pierre Aubert 1 (1.0%)
+ Dinh Nguyen 1 (1.0%)
+ Alexey Brodkin 1 (1.0%)
+ Eric Nelson 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 96)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 17 (17.7%)
+ Bin Meng 9 (9.4%)
+ Simon Glass 8 (8.3%)
+ Masahiro Yamada 6 (6.2%)
+ Hans de Goede 5 (5.2%)
+ Akshay Saraswat 5 (5.2%)
+ Przemyslaw Marczak 4 (4.2%)
+ Hyungwon Hwang 4 (4.2%)
+ Stephen Warren 3 (3.1%)
+ Sjoerd Simons 3 (3.1%)
+ Marek Vasut 3 (3.1%)
+ Albert Aribaud 3 (3.1%)
+ Gabe Black 2 (2.1%)
+ Jagannadha Sutradharudu Teki 2 (2.1%)
+ Steve Rae 2 (2.1%)
+ Ian Campbell 2 (2.1%)
+ Iain Paton 2 (2.1%)
+ Bill Pringlemeir 2 (2.1%)
+ Rob Herring 2 (2.1%)
+ Guillaume GARDET 1 (1.0%)
+ Tom Rini 1 (1.0%)
+ Bo Shen 1 (1.0%)
+ Alim Akhtar 1 (1.0%)
+ Vadim Bendebury 1 (1.0%)
+ Gerald Kerma 1 (1.0%)
+ Markus Niebel 1 (1.0%)
+ Stefan Agner 1 (1.0%)
+ Soeren Moch 1 (1.0%)
+ Marcel Ziswiler 1 (1.0%)
+ Oleksandr Tymoshenko 1 (1.0%)
+ Thierry Reding 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Wolfgang Denk 4 (20.0%)
+ Albert Aribaud 2 (10.0%)
+ Jeroen Hofstee 2 (10.0%)
+ Przemyslaw Marczak 1 (5.0%)
+ Stephen Warren 1 (5.0%)
+ Bill Pringlemeir 1 (5.0%)
+ Robert Nelson 1 (5.0%)
+ Dinh Nguyen 1 (5.0%)
+ York Sun 1 (5.0%)
+ Siarhei Siamashka 1 (5.0%)
+ Jens Rottmann 1 (5.0%)
+ Martin Dorwig 1 (5.0%)
+ Pantelis Antoniou 1 (5.0%)
+ Tom Everett 1 (5.0%)
+ Andrew Ruder 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 7 (35.0%)
+ Masahiro Yamada 3 (15.0%)
+ Tom Rini 2 (10.0%)
+ Rabin Vincent 2 (10.0%)
+ Heiko Schocher 2 (10.0%)
+ Hans de Goede 1 (5.0%)
+ Guillaume GARDET 1 (5.0%)
+ Nikita Kiryanov 1 (5.0%)
+ Anatolij Gustschin 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 357 (22.5%)
+ Google, Inc. 306 (19.3%)
+ Freescale 199 (12.5%)
+ Socionext Inc. 182 (11.5%)
+ DENX Software Engineering 146 (9.2%)
+ Texas Instruments 68 (4.3%)
+ Renesas Electronics 57 (3.6%)
+ Red Hat 51 (3.2%)
+ NVidia 40 (2.5%)
+ CompuLab 35 (2.2%)
+ Samsung 35 (2.2%)
+ Konsulko Group 22 (1.4%)
+ Atmel 13 (0.8%)
+ Guntermann & Drunck 10 (0.6%)
+ ST Microelectronics 10 (0.6%)
+ Linaro 8 (0.5%)
+ Collabora Ltd. 7 (0.4%)
+ Keymile 6 (0.4%)
+ Broadcom 5 (0.3%)
+ Boundary Devices 4 (0.3%)
+ Citrix 4 (0.3%)
+ Digi International 4 (0.3%)
+ Analog Devices 3 (0.2%)
+ Free Electrons 3 (0.2%)
+ AMD 2 (0.1%)
+ Extreme Engineering Solutions 2 (0.1%)
+ Wind River 1 (0.1%)
+ Debian.org 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ Marvell 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Toradex 1 (0.1%)
+ Transmode Systems 1 (0.1%)
+ Xilinx 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 77001 (30.6%)
+ DENX Software Engineering 76287 (30.3%)
+ Google, Inc. 37834 (15.0%)
+ (Unknown) 20165 (8.0%)
+ Freescale 13030 (5.2%)
+ NVidia 5657 (2.2%)
+ Renesas Electronics 5160 (2.0%)
+ Texas Instruments 4549 (1.8%)
+ CompuLab 3041 (1.2%)
+ Guntermann & Drunck 2407 (1.0%)
+ Red Hat 2190 (0.9%)
+ Atmel 1558 (0.6%)
+ ST Microelectronics 1005 (0.4%)
+ Samsung 879 (0.3%)
+ Broadcom 391 (0.2%)
+ Collabora Ltd. 210 (0.1%)
+ Linaro 178 (0.1%)
+ Konsulko Group 116 (0.0%)
+ Citrix 75 (0.0%)
+ Free Electrons 45 (0.0%)
+ Boundary Devices 36 (0.0%)
+ Pengutronix 30 (0.0%)
+ Keymile 26 (0.0%)
+ Analog Devices 16 (0.0%)
+ Digi International 14 (0.0%)
+ Extreme Engineering Solutions 14 (0.0%)
+ Nobuhiro Iwamatsu 13 (0.0%)
+ Xilinx 8 (0.0%)
+ ESD Electronics 7 (0.0%)
+ Debian.org 5 (0.0%)
+ Transmode Systems 4 (0.0%)
+ AMD 3 (0.0%)
+ Toradex 3 (0.0%)
+ Wind River 2 (0.0%)
+ Marvell 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 290)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Texas Instruments 41 (14.1%)
+ (Unknown) 36 (12.4%)
+ NVidia 36 (12.4%)
+ Samsung 35 (12.1%)
+ Google, Inc. 34 (11.7%)
+ Freescale 34 (11.7%)
+ Red Hat 27 (9.3%)
+ Renesas Electronics 15 (5.2%)
+ DENX Software Engineering 12 (4.1%)
+ Nobuhiro Iwamatsu 5 (1.7%)
+ Novell 5 (1.7%)
+ Xilinx 4 (1.4%)
+ CompuLab 2 (0.7%)
+ Atmel 1 (0.3%)
+ Free Electrons 1 (0.3%)
+ Extreme Engineering Solutions 1 (0.3%)
+ Panasonic 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 165)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 68 (41.2%)
+ Freescale 33 (20.0%)
+ Texas Instruments 8 (4.8%)
+ Samsung 8 (4.8%)
+ DENX Software Engineering 6 (3.6%)
+ NVidia 4 (2.4%)
+ Google, Inc. 3 (1.8%)
+ CompuLab 3 (1.8%)
+ Linaro 3 (1.8%)
+ Atmel 2 (1.2%)
+ Extreme Engineering Solutions 2 (1.2%)
+ Keymile 2 (1.2%)
+ Red Hat 1 (0.6%)
+ Renesas Electronics 1 (0.6%)
+ Nobuhiro Iwamatsu 1 (0.6%)
+ Xilinx 1 (0.6%)
+ Free Electrons 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ Guntermann & Drunck 1 (0.6%)
+ ST Microelectronics 1 (0.6%)
+ Broadcom 1 (0.6%)
+ Collabora Ltd. 1 (0.6%)
+ Konsulko Group 1 (0.6%)
+ Citrix 1 (0.6%)
+ Boundary Devices 1 (0.6%)
+ Pengutronix 1 (0.6%)
+ Analog Devices 1 (0.6%)
+ Digi International 1 (0.6%)
+ ESD Electronics 1 (0.6%)
+ Debian.org 1 (0.6%)
+ Transmode Systems 1 (0.6%)
+ AMD 1 (0.6%)
+ Toradex 1 (0.6%)
+ Wind River 1 (0.6%)
+ Marvell 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2015.04.rst b/doc/develop/statistics/u-boot-stats-v2015.04.rst
new file mode 100644
index 0000000..a16da2e
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2015.04.rst
@@ -0,0 +1,769 @@
+:orphan:
+
+Release Statistics for U-Boot v2015.04
+======================================
+
+* Processed 1585 csets from 169 developers
+
+* 36 employers found
+
+* A total of 99448 lines added, 166603 removed (delta -67155)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 225 (14.2%)
+ Masahiro Yamada 158 (10.0%)
+ Hans de Goede 140 (8.8%)
+ Bin Meng 67 (4.2%)
+ Michal Simek 52 (3.3%)
+ Alexey Brodkin 39 (2.5%)
+ Nikita Kiryanov 39 (2.5%)
+ Fabio Estevam 36 (2.3%)
+ Bo Shen 33 (2.1%)
+ Przemyslaw Marczak 31 (2.0%)
+ Stephen Warren 27 (1.7%)
+ Hannes Petermaier 25 (1.6%)
+ Peng Fan 25 (1.6%)
+ Marcel Ziswiler 23 (1.5%)
+ Matthias Fuchs 23 (1.5%)
+ Stefan Roese 22 (1.4%)
+ Tom Rini 21 (1.3%)
+ Heiko Schocher 20 (1.3%)
+ Siarhei Siamashka 18 (1.1%)
+ Diego Santa Cruz 18 (1.1%)
+ York Sun 16 (1.0%)
+ Akshay Saraswat 16 (1.0%)
+ Albert ARIBAUD (3ADEV) 15 (0.9%)
+ Paul Burton 15 (0.9%)
+ Andreas Bießmann 14 (0.9%)
+ Marek Vasut 14 (0.9%)
+ Nobuhiro Iwamatsu 14 (0.9%)
+ Linus Walleij 13 (0.8%)
+ Wu, Josh 13 (0.8%)
+ Ruchika Gupta 13 (0.8%)
+ Axel Lin 11 (0.7%)
+ Daniel Schwierzeck 11 (0.7%)
+ Codrin Ciubotariu 11 (0.7%)
+ Peter Tyser 10 (0.6%)
+ Nishanth Menon 10 (0.6%)
+ Guilherme Maciel Ferreira 10 (0.6%)
+ Sjoerd Simons 9 (0.6%)
+ gaurav rana 9 (0.6%)
+ Christian Gmeiner 9 (0.6%)
+ Luka Perkov 9 (0.6%)
+ Ajay Kumar 8 (0.5%)
+ Rob Herring 8 (0.5%)
+ Chen-Yu Tsai 8 (0.5%)
+ Alison Wang 8 (0.5%)
+ Vladimir Barinov 8 (0.5%)
+ Tang Yuantian 7 (0.4%)
+ Łukasz Majewski 6 (0.4%)
+ Siva Durga Prasad Paladugu 6 (0.4%)
+ Stefano Babic 6 (0.4%)
+ Minghuan Lian 6 (0.4%)
+ Joonyoung Shim 6 (0.4%)
+ Valentin Longchamp 6 (0.4%)
+ Albert ARIBAUD 5 (0.3%)
+ Ian Campbell 5 (0.3%)
+ Bhupesh Sharma 5 (0.3%)
+ Otavio Salvador 5 (0.3%)
+ Igor Guryanov 5 (0.3%)
+ Felipe Balbi 5 (0.3%)
+ Jan Kiszka 4 (0.3%)
+ Iain Paton 4 (0.3%)
+ Angelo Dureghello 4 (0.3%)
+ Joe Hershberger 4 (0.3%)
+ Paul Kocialkowski 4 (0.3%)
+ Sonic Zhang 4 (0.3%)
+ Dileep Katta 4 (0.3%)
+ Jaehoon Chung 4 (0.3%)
+ Michael Walle 4 (0.3%)
+ Ye.Li 4 (0.3%)
+ DrEagle 4 (0.3%)
+ Pavel Machek 3 (0.2%)
+ Stefan Agner 3 (0.2%)
+ David Feng 3 (0.2%)
+ Boris Brezillon 3 (0.2%)
+ Matt Reimer 3 (0.2%)
+ Sinan Akman 3 (0.2%)
+ Graeme Russ 3 (0.2%)
+ Shengzhou Liu 3 (0.2%)
+ James Doublesin 3 (0.2%)
+ Georgi Botev 3 (0.2%)
+ Anatolij Gustschin 2 (0.1%)
+ Andrej Rosano 2 (0.1%)
+ Chris Kuethe 2 (0.1%)
+ Ulises Cardenas 2 (0.1%)
+ Inha Song 2 (0.1%)
+ Luca Ellero 2 (0.1%)
+ Thierry Reding 2 (0.1%)
+ Maxin B. John 2 (0.1%)
+ Gilles Gameiro 2 (0.1%)
+ Kim Phillips 2 (0.1%)
+ Aleksei Mamlin 2 (0.1%)
+ Marcus Cooper 2 (0.1%)
+ Adam Sampson 2 (0.1%)
+ Ajay Bhargav 2 (0.1%)
+ Soeren Moch 2 (0.1%)
+ Enric Balletbo i Serra 2 (0.1%)
+ Arnab Basu 2 (0.1%)
+ Lubomir Popov 2 (0.1%)
+ Eric Nelson 2 (0.1%)
+ Vitaly Andrianov 2 (0.1%)
+ Lokesh Vutla 2 (0.1%)
+ Anton Habegger 2 (0.1%)
+ Andrew Gabbasov 2 (0.1%)
+ Anthoine Bourgeois 2 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ Mario Schuknecht 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ David Dueck 1 (0.1%)
+ Lucas Stach 1 (0.1%)
+ Ravi Babu 1 (0.1%)
+ Brian McFarland 1 (0.1%)
+ Karsten Merker 1 (0.1%)
+ Michal Marek 1 (0.1%)
+ Sebastian Siewior 1 (0.1%)
+ Roger Meier 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Praveen Rao 1 (0.1%)
+ Angela Stegmaier 1 (0.1%)
+ Volodymyr Riazantsev 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Jens Lucius 1 (0.1%)
+ Gábor Nyers 1 (0.1%)
+ Chen Gang 1 (0.1%)
+ Ash Charles 1 (0.1%)
+ Michal Sojka 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ vijay rai 1 (0.1%)
+ Nikolaos Pasaloukos 1 (0.1%)
+ Ying Zhang 1 (0.1%)
+ Shaveta Leekha 1 (0.1%)
+ Doug Anderson 1 (0.1%)
+ Michael Scott 1 (0.1%)
+ Xiubo Li 1 (0.1%)
+ chenhui zhao 1 (0.1%)
+ J. German Rivera 1 (0.1%)
+ Stuart Yoder 1 (0.1%)
+ Kuldip Giroh 1 (0.1%)
+ Pantelis Antoniou 1 (0.1%)
+ Waldemar Brodkorb 1 (0.1%)
+ Vladimir Zapolskiy 1 (0.1%)
+ Steve Kipisz 1 (0.1%)
+ Egli, Samuel 1 (0.1%)
+ Michal Suchanek 1 (0.1%)
+ Scott Wood 1 (0.1%)
+ Philippe De Muyter 1 (0.1%)
+ Yoshinori Sato 1 (0.1%)
+ Claudiu Manoil 1 (0.1%)
+ Dennis Gilmore 1 (0.1%)
+ Martin Dorwig 1 (0.1%)
+ Pieter Voorthuijsen 1 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Sebastien Ronsse 1 (0.1%)
+ Priit Laes 1 (0.1%)
+ Zoltan HERPAI 1 (0.1%)
+ Thomas Langer 1 (0.1%)
+ Alexandre Coffignal 1 (0.1%)
+ Rene Griessl 1 (0.1%)
+ Alex Sadovsky 1 (0.1%)
+ Shaohui Xie 1 (0.1%)
+ harninder rai 1 (0.1%)
+ Aneesh Bansal 1 (0.1%)
+ Tudor Laurentiu 1 (0.1%)
+ Chunhe Lan 1 (0.1%)
+ Po Liu 1 (0.1%)
+ Evgeni Dobrev 1 (0.1%)
+ Bill Pringlemeir 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Cooper Jr., Franklin 1 (0.1%)
+ Matwey V. Kornilov 1 (0.1%)
+ Daniel Mack 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Matthias Fuchs 89003 (35.4%)
+ Masahiro Yamada 61978 (24.7%)
+ Stefan Roese 19579 (7.8%)
+ Simon Glass 13611 (5.4%)
+ Bin Meng 10014 (4.0%)
+ Hans de Goede 6470 (2.6%)
+ Albert ARIBAUD (3ADEV) 4474 (1.8%)
+ Vladimir Barinov 3047 (1.2%)
+ Nobuhiro Iwamatsu 2794 (1.1%)
+ Alexey Brodkin 2022 (0.8%)
+ gaurav rana 1937 (0.8%)
+ Stephen Warren 1767 (0.7%)
+ Nikita Kiryanov 1651 (0.7%)
+ Bo Shen 1562 (0.6%)
+ Gilles Gameiro 1545 (0.6%)
+ Marek Vasut 1445 (0.6%)
+ Siarhei Siamashka 1395 (0.6%)
+ Michal Simek 1259 (0.5%)
+ Anton Habegger 1246 (0.5%)
+ Codrin Ciubotariu 1191 (0.5%)
+ Angelo Dureghello 1165 (0.5%)
+ Ruchika Gupta 1143 (0.5%)
+ Akshay Saraswat 1115 (0.4%)
+ Hannes Petermaier 905 (0.4%)
+ Guilherme Maciel Ferreira 863 (0.3%)
+ Linus Walleij 829 (0.3%)
+ Boris Brezillon 785 (0.3%)
+ Minghuan Lian 741 (0.3%)
+ Paul Burton 706 (0.3%)
+ Andrej Rosano 692 (0.3%)
+ Peng Fan 648 (0.3%)
+ Daniel Schwierzeck 601 (0.2%)
+ Peter Tyser 594 (0.2%)
+ J. German Rivera 592 (0.2%)
+ Diego Santa Cruz 575 (0.2%)
+ Andreas Bießmann 522 (0.2%)
+ Ulises Cardenas 493 (0.2%)
+ Evgeni Dobrev 469 (0.2%)
+ York Sun 460 (0.2%)
+ Wu, Josh 441 (0.2%)
+ Przemyslaw Marczak 415 (0.2%)
+ Shaveta Leekha 393 (0.2%)
+ Otavio Salvador 381 (0.2%)
+ Dennis Gilmore 341 (0.1%)
+ Heiko Schocher 317 (0.1%)
+ Alison Wang 290 (0.1%)
+ Nishanth Menon 284 (0.1%)
+ Marcel Ziswiler 270 (0.1%)
+ James Doublesin 241 (0.1%)
+ Fabio Estevam 238 (0.1%)
+ Christian Gmeiner 232 (0.1%)
+ Jan Kiszka 223 (0.1%)
+ Tang Yuantian 222 (0.1%)
+ Felipe Balbi 213 (0.1%)
+ Albert ARIBAUD 201 (0.1%)
+ Bhupesh Sharma 190 (0.1%)
+ Michael Walle 164 (0.1%)
+ Martin Dorwig 163 (0.1%)
+ Shaohui Xie 161 (0.1%)
+ Graeme Russ 157 (0.1%)
+ Lubomir Popov 154 (0.1%)
+ Roger Meier 150 (0.1%)
+ Sjoerd Simons 149 (0.1%)
+ Grazvydas Ignotas 141 (0.1%)
+ Anthoine Bourgeois 140 (0.1%)
+ Rob Herring 133 (0.1%)
+ Ajay Kumar 122 (0.0%)
+ Daniel Mack 122 (0.0%)
+ Xiubo Li 119 (0.0%)
+ Valentin Longchamp 113 (0.0%)
+ Dileep Katta 113 (0.0%)
+ Tom Rini 110 (0.0%)
+ Chen-Yu Tsai 110 (0.0%)
+ Thomas Langer 110 (0.0%)
+ Doug Anderson 95 (0.0%)
+ Igor Guryanov 87 (0.0%)
+ Joonyoung Shim 82 (0.0%)
+ Siva Durga Prasad Paladugu 79 (0.0%)
+ DrEagle 74 (0.0%)
+ David Feng 71 (0.0%)
+ Łukasz Majewski 70 (0.0%)
+ Shengzhou Liu 69 (0.0%)
+ Anatolij Gustschin 69 (0.0%)
+ Kim Phillips 64 (0.0%)
+ Axel Lin 59 (0.0%)
+ Philippe De Muyter 58 (0.0%)
+ Jaehoon Chung 57 (0.0%)
+ Karsten Merker 47 (0.0%)
+ Paul Kocialkowski 45 (0.0%)
+ vijay rai 45 (0.0%)
+ Lokesh Vutla 44 (0.0%)
+ Zoltan HERPAI 44 (0.0%)
+ Pantelis Antoniou 43 (0.0%)
+ Vitaly Andrianov 38 (0.0%)
+ Luka Perkov 37 (0.0%)
+ Joe Hershberger 37 (0.0%)
+ Ye.Li 32 (0.0%)
+ Marcus Cooper 32 (0.0%)
+ Iain Paton 31 (0.0%)
+ Enric Balletbo i Serra 31 (0.0%)
+ Yoshinori Sato 30 (0.0%)
+ Soeren Moch 29 (0.0%)
+ chenhui zhao 28 (0.0%)
+ Arnab Basu 27 (0.0%)
+ Pavel Machek 24 (0.0%)
+ Stefano Babic 23 (0.0%)
+ Brian McFarland 22 (0.0%)
+ Ian Campbell 21 (0.0%)
+ Chen Gang 21 (0.0%)
+ Ash Charles 21 (0.0%)
+ Stefan Agner 20 (0.0%)
+ Aleksei Mamlin 20 (0.0%)
+ Inha Song 19 (0.0%)
+ Priit Laes 19 (0.0%)
+ Dirk Behme 18 (0.0%)
+ Matwey V. Kornilov 18 (0.0%)
+ Andrew Gabbasov 17 (0.0%)
+ Wolfgang Denk 17 (0.0%)
+ Jens Lucius 16 (0.0%)
+ Sonic Zhang 15 (0.0%)
+ Gábor Nyers 15 (0.0%)
+ Michael Scott 15 (0.0%)
+ Michal Suchanek 15 (0.0%)
+ Michal Sojka 14 (0.0%)
+ Rene Griessl 14 (0.0%)
+ Cooper Jr., Franklin 14 (0.0%)
+ Praveen Rao 13 (0.0%)
+ Eric Nelson 12 (0.0%)
+ Po Liu 12 (0.0%)
+ Adam Sampson 11 (0.0%)
+ Sinan Akman 10 (0.0%)
+ Ajay Bhargav 10 (0.0%)
+ Maxin B. John 9 (0.0%)
+ Michal Marek 9 (0.0%)
+ Volodymyr Riazantsev 9 (0.0%)
+ Ravi Babu 8 (0.0%)
+ Angela Stegmaier 8 (0.0%)
+ Thierry Reding 7 (0.0%)
+ Georgi Botev 6 (0.0%)
+ David Dueck 6 (0.0%)
+ Alexandre Coffignal 6 (0.0%)
+ Steve Kipisz 5 (0.0%)
+ Matt Reimer 4 (0.0%)
+ Mario Schuknecht 4 (0.0%)
+ Egli, Samuel 4 (0.0%)
+ Kuldip Giroh 3 (0.0%)
+ Waldemar Brodkorb 3 (0.0%)
+ Vladimir Zapolskiy 3 (0.0%)
+ Scott Wood 3 (0.0%)
+ Chunhe Lan 3 (0.0%)
+ Bill Pringlemeir 3 (0.0%)
+ Chris Kuethe 2 (0.0%)
+ Luca Ellero 2 (0.0%)
+ Guillaume GARDET 2 (0.0%)
+ Lucas Stach 2 (0.0%)
+ Sebastian Siewior 2 (0.0%)
+ Ying Zhang 2 (0.0%)
+ Claudiu Manoil 2 (0.0%)
+ Pieter Voorthuijsen 2 (0.0%)
+ Alex Sadovsky 2 (0.0%)
+ harninder rai 2 (0.0%)
+ Aneesh Bansal 2 (0.0%)
+ Sekhar Nori 1 (0.0%)
+ Chris Packham 1 (0.0%)
+ Nikolaos Pasaloukos 1 (0.0%)
+ Stuart Yoder 1 (0.0%)
+ Pali Rohár 1 (0.0%)
+ Sebastien Ronsse 1 (0.0%)
+ Tudor Laurentiu 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Matthias Fuchs 88963 (53.4%)
+ Masahiro Yamada 54187 (32.5%)
+ Peter Tyser 339 (0.2%)
+ Paul Burton 231 (0.1%)
+ Daniel Schwierzeck 193 (0.1%)
+ Grazvydas Ignotas 105 (0.1%)
+ Thomas Langer 102 (0.1%)
+ Anthoine Bourgeois 88 (0.1%)
+ Wu, Josh 81 (0.0%)
+ James Doublesin 62 (0.0%)
+ vijay rai 45 (0.0%)
+ Rob Herring 37 (0.0%)
+ Vitaly Andrianov 19 (0.0%)
+ Tom Rini 18 (0.0%)
+ Doug Anderson 18 (0.0%)
+ Joe Hershberger 18 (0.0%)
+ Ye.Li 17 (0.0%)
+ Stefano Babic 9 (0.0%)
+ Axel Lin 7 (0.0%)
+ Enric Balletbo i Serra 3 (0.0%)
+ Bill Pringlemeir 3 (0.0%)
+ Sebastian Siewior 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 222)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Hans de Goede 49 (22.1%)
+ Minkyu Kang 41 (18.5%)
+ Tom Warren 33 (14.9%)
+ Nobuhiro Iwamatsu 11 (5.0%)
+ Simon Glass 7 (3.2%)
+ Andreas Bießmann 6 (2.7%)
+ Michal Simek 6 (2.7%)
+ Alexey Brodkin 6 (2.7%)
+ Tom Rini 4 (1.8%)
+ Joe Hershberger 4 (1.8%)
+ Kimoon Kim 4 (1.8%)
+ Ruchika Gupta 4 (1.8%)
+ Boris BREZILLON 3 (1.4%)
+ Ian Campbell 3 (1.4%)
+ Igor Guryanov 3 (1.4%)
+ Felipe Balbi 3 (1.4%)
+ Igor Grinberg 2 (0.9%)
+ Pantelis Antoniou 2 (0.9%)
+ York Sun 2 (0.9%)
+ Masahiro Yamada 1 (0.5%)
+ Paul Burton 1 (0.5%)
+ Rob Herring 1 (0.5%)
+ Michal Marek 1 (0.5%)
+ Angela Stegmaier 1 (0.5%)
+ Andy Shevchenko 1 (0.5%)
+ Nikhil Badola 1 (0.5%)
+ Nitin Garg 1 (0.5%)
+ Abhilash Kesavan 1 (0.5%)
+ Valentine Barshak 1 (0.5%)
+ Lijun Pan 1 (0.5%)
+ Ranjani Vaidyanathan 1 (0.5%)
+ Damien Gotfroi 1 (0.5%)
+ Poonam Aggrwal 1 (0.5%)
+ Varun Sethi 1 (0.5%)
+ Laurentiu Tudor 1 (0.5%)
+ Mingkai.Hu 1 (0.5%)
+ Antonios Vamporakis 1 (0.5%)
+ Lokesh Vutla 1 (0.5%)
+ Marcel Ziswiler 1 (0.5%)
+ Siva Durga Prasad Paladugu 1 (0.5%)
+ Xiubo Li 1 (0.5%)
+ Nishanth Menon 1 (0.5%)
+ Bhupesh Sharma 1 (0.5%)
+ Linus Walleij 1 (0.5%)
+ Alison Wang 1 (0.5%)
+ Shaveta Leekha 1 (0.5%)
+ Akshay Saraswat 1 (0.5%)
+ Stephen Warren 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 293)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 93 (31.7%)
+ York Sun 58 (19.8%)
+ Bin Meng 32 (10.9%)
+ Tom Rini 26 (8.9%)
+ Masahiro Yamada 19 (6.5%)
+ Luka Perkov 14 (4.8%)
+ Stefan Roese 9 (3.1%)
+ Jagannadha Sutradharudu Teki 8 (2.7%)
+ Łukasz Majewski 7 (2.4%)
+ Stephen Warren 6 (2.0%)
+ Steve Rae 3 (1.0%)
+ Hans de Goede 2 (0.7%)
+ Alexey Brodkin 2 (0.7%)
+ Roger Meier 2 (0.7%)
+ Marek Vasut 2 (0.7%)
+ Joe Hershberger 1 (0.3%)
+ Ruchika Gupta 1 (0.3%)
+ Boris BREZILLON 1 (0.3%)
+ Linus Walleij 1 (0.3%)
+ Peter Crosthwaite 1 (0.3%)
+ Nathan Rossi 1 (0.3%)
+ Guido Martínez 1 (0.3%)
+ Volodymyr Riazantsev 1 (0.3%)
+ Fabio Estevam 1 (0.3%)
+ Przemyslaw Marczak 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 31 (26.5%)
+ Bo Shen 14 (12.0%)
+ Wu, Josh 13 (11.1%)
+ Matt Porter 11 (9.4%)
+ Bin Meng 8 (6.8%)
+ Heiko Schocher 6 (5.1%)
+ Stephen Warren 4 (3.4%)
+ Tom Rini 2 (1.7%)
+ Łukasz Majewski 2 (1.7%)
+ Alexey Brodkin 2 (1.7%)
+ Michal Simek 2 (1.7%)
+ Nishanth Menon 2 (1.7%)
+ Chris Kuethe 2 (1.7%)
+ Stefan Roese 1 (0.9%)
+ Steve Rae 1 (0.9%)
+ Hans de Goede 1 (0.9%)
+ Guido Martínez 1 (0.9%)
+ Fabio Estevam 1 (0.9%)
+ Felipe Balbi 1 (0.9%)
+ Marcel Ziswiler 1 (0.9%)
+ Daniel Schwierzeck 1 (0.9%)
+ Stefano Babic 1 (0.9%)
+ Vagrant Cascadian 1 (0.9%)
+ Michal Vokáč 1 (0.9%)
+ Mugunthan V N 1 (0.9%)
+ Thierry Reding 1 (0.9%)
+ Jaehoon Chung 1 (0.9%)
+ Zoltan HERPAI 1 (0.9%)
+ Chen-Yu Tsai 1 (0.9%)
+ Jan Kiszka 1 (0.9%)
+ Nikita Kiryanov 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nikita Kiryanov 32 (27.4%)
+ Simon Glass 15 (12.8%)
+ Akshay Saraswat 11 (9.4%)
+ Nishanth Menon 8 (6.8%)
+ Ajay Kumar 8 (6.8%)
+ Peter Tyser 5 (4.3%)
+ Masahiro Yamada 4 (3.4%)
+ Przemyslaw Marczak 4 (3.4%)
+ Hans de Goede 3 (2.6%)
+ James Doublesin 3 (2.6%)
+ Andrej Rosano 3 (2.6%)
+ Tom Rini 2 (1.7%)
+ Fabio Estevam 2 (1.7%)
+ Pantelis Antoniou 2 (1.7%)
+ Vitaly Andrianov 2 (1.7%)
+ Andrew Gabbasov 2 (1.7%)
+ Bo Shen 1 (0.9%)
+ Andreas Bießmann 1 (0.9%)
+ Guillaume GARDET 1 (0.9%)
+ Lucas Stach 1 (0.9%)
+ Inha Song 1 (0.9%)
+ Michal Sojka 1 (0.9%)
+ Praveen Rao 1 (0.9%)
+ Michael Scott 1 (0.9%)
+ Daniel Mack 1 (0.9%)
+ Sjoerd Simons 1 (0.9%)
+ Peng Fan 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 4 (16.7%)
+ York Sun 3 (12.5%)
+ Albert ARIBAUD 3 (12.5%)
+ Masahiro Yamada 2 (8.3%)
+ Tom Rini 2 (8.3%)
+ Stefan Roese 1 (4.2%)
+ Jan Kiszka 1 (4.2%)
+ Chee-Yang Chau 1 (4.2%)
+ Matthew Gerlach 1 (4.2%)
+ Matt Ranostay 1 (4.2%)
+ Valdis Kletnieks 1 (4.2%)
+ Vivek Chengalvala 1 (4.2%)
+ Scott Wood 1 (4.2%)
+ Graeme Russ 1 (4.2%)
+ Siarhei Siamashka 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 7 (29.2%)
+ Masahiro Yamada 6 (25.0%)
+ Tom Rini 2 (8.3%)
+ Stephen Warren 1 (4.2%)
+ Nishanth Menon 1 (4.2%)
+ Hans de Goede 1 (4.2%)
+ Fabio Estevam 1 (4.2%)
+ Pantelis Antoniou 1 (4.2%)
+ Michal Simek 1 (4.2%)
+ Michal Marek 1 (4.2%)
+ Enric Balletbo i Serra 1 (4.2%)
+ Kim Phillips 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 422 (26.6%)
+ Google, Inc. 226 (14.3%)
+ Socionext Inc. 158 (10.0%)
+ Freescale 152 (9.6%)
+ Red Hat 140 (8.8%)
+ Samsung 73 (4.6%)
+ DENX Software Engineering 68 (4.3%)
+ AMD 52 (3.3%)
+ Atmel 46 (2.9%)
+ CompuLab 39 (2.5%)
+ Texas Instruments 28 (1.8%)
+ NVidia 24 (1.5%)
+ ESD Electronics 23 (1.5%)
+ Konsulko Group 22 (1.4%)
+ Linaro 18 (1.1%)
+ MIPS 15 (0.9%)
+ Renesas Electronics 13 (0.8%)
+ Collabora Ltd. 10 (0.6%)
+ Extreme Engineering Solutions 10 (0.6%)
+ Keymile 6 (0.4%)
+ Siemens 6 (0.4%)
+ Xilinx 6 (0.4%)
+ O.S. Systems 5 (0.3%)
+ Analog Devices 4 (0.3%)
+ National Instruments 4 (0.3%)
+ Ronetix 3 (0.2%)
+ Boundary Devices 2 (0.1%)
+ ENEA AB 2 (0.1%)
+ Citrix 1 (0.1%)
+ Bosch 1 (0.1%)
+ Debian.org 1 (0.1%)
+ linutronix 1 (0.1%)
+ Macq Electronique 1 (0.1%)
+ Novell 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ ESD Electronics 89003 (35.4%)
+ Socionext Inc. 61978 (24.7%)
+ (Unknown) 35047 (13.9%)
+ DENX Software Engineering 21474 (8.5%)
+ Google, Inc. 13706 (5.5%)
+ Freescale 7971 (3.2%)
+ Red Hat 6470 (2.6%)
+ Renesas Electronics 2782 (1.1%)
+ Atmel 2003 (0.8%)
+ Samsung 1880 (0.7%)
+ CompuLab 1651 (0.7%)
+ NVidia 1369 (0.5%)
+ AMD 1259 (0.5%)
+ Linaro 957 (0.4%)
+ Texas Instruments 869 (0.3%)
+ MIPS 706 (0.3%)
+ Extreme Engineering Solutions 594 (0.2%)
+ O.S. Systems 381 (0.2%)
+ Siemens 377 (0.1%)
+ Collabora Ltd. 174 (0.1%)
+ Konsulko Group 153 (0.1%)
+ Grazvydas Ignotas 141 (0.1%)
+ Keymile 113 (0.0%)
+ Xilinx 79 (0.0%)
+ Macq Electronique 58 (0.0%)
+ Debian.org 47 (0.0%)
+ National Instruments 37 (0.0%)
+ Bosch 18 (0.0%)
+ Analog Devices 15 (0.0%)
+ Boundary Devices 12 (0.0%)
+ Nobuhiro Iwamatsu 12 (0.0%)
+ ENEA AB 9 (0.0%)
+ Novell 9 (0.0%)
+ Ronetix 6 (0.0%)
+ linutronix 2 (0.0%)
+ Citrix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 222)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Red Hat 49 (22.1%)
+ Samsung 47 (21.2%)
+ NVidia 34 (15.3%)
+ (Unknown) 24 (10.8%)
+ Freescale 18 (8.1%)
+ Nobuhiro Iwamatsu 11 (5.0%)
+ Google, Inc. 7 (3.2%)
+ Texas Instruments 7 (3.2%)
+ Xilinx 7 (3.2%)
+ Konsulko Group 5 (2.3%)
+ National Instruments 4 (1.8%)
+ Free Electrons 3 (1.4%)
+ CompuLab 2 (0.9%)
+ Socionext Inc. 1 (0.5%)
+ Linaro 1 (0.5%)
+ Novell 1 (0.5%)
+ Intel 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 173)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 78 (45.1%)
+ Freescale 30 (17.3%)
+ Texas Instruments 11 (6.4%)
+ Samsung 7 (4.0%)
+ DENX Software Engineering 7 (4.0%)
+ Linaro 3 (1.7%)
+ Siemens 3 (1.7%)
+ NVidia 2 (1.2%)
+ Google, Inc. 2 (1.2%)
+ Konsulko Group 2 (1.2%)
+ Atmel 2 (1.2%)
+ Collabora Ltd. 2 (1.2%)
+ Red Hat 1 (0.6%)
+ Nobuhiro Iwamatsu 1 (0.6%)
+ Xilinx 1 (0.6%)
+ National Instruments 1 (0.6%)
+ CompuLab 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ Novell 1 (0.6%)
+ ESD Electronics 1 (0.6%)
+ Renesas Electronics 1 (0.6%)
+ AMD 1 (0.6%)
+ MIPS 1 (0.6%)
+ Extreme Engineering Solutions 1 (0.6%)
+ O.S. Systems 1 (0.6%)
+ Grazvydas Ignotas 1 (0.6%)
+ Keymile 1 (0.6%)
+ Macq Electronique 1 (0.6%)
+ Debian.org 1 (0.6%)
+ Bosch 1 (0.6%)
+ Analog Devices 1 (0.6%)
+ Boundary Devices 1 (0.6%)
+ ENEA AB 1 (0.6%)
+ Ronetix 1 (0.6%)
+ linutronix 1 (0.6%)
+ Citrix 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2015.07.rst b/doc/develop/statistics/u-boot-stats-v2015.07.rst
new file mode 100644
index 0000000..7999b27
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2015.07.rst
@@ -0,0 +1,747 @@
+:orphan:
+
+Release Statistics for U-Boot v2015.07
+======================================
+
+* Processed 1563 csets from 156 developers
+
+* 28 employers found
+
+* A total of 176355 lines added, 44130 removed (delta 132225)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 311 (19.9%)
+ Joe Hershberger 111 (7.1%)
+ Hans de Goede 106 (6.8%)
+ Tim Harvey 77 (4.9%)
+ Masahiro Yamada 68 (4.4%)
+ Bin Meng 56 (3.6%)
+ Jagannadh Teki 44 (2.8%)
+ Przemyslaw Marczak 43 (2.8%)
+ Paul Kocialkowski 42 (2.7%)
+ Kishon Vijay Abraham I 41 (2.6%)
+ Stefan Roese 38 (2.4%)
+ Fabio Estevam 32 (2.0%)
+ Lokesh Vutla 23 (1.5%)
+ Stephen Warren 20 (1.3%)
+ Hannes Petermaier 16 (1.0%)
+ Dinh Nguyen 16 (1.0%)
+ Tom Rini 15 (1.0%)
+ Heiko Schocher 15 (1.0%)
+ Scott Wood 15 (1.0%)
+ York Sun 15 (1.0%)
+ Haikun Wang 14 (0.9%)
+ Peter Robinson 13 (0.8%)
+ Jan Kiszka 13 (0.8%)
+ Marek Vasut 12 (0.8%)
+ Siva Durga Prasad Paladugu 12 (0.8%)
+ Michal Simek 11 (0.7%)
+ Chen-Yu Tsai 11 (0.7%)
+ Prabhakar Kushwaha 10 (0.6%)
+ Peng Fan 10 (0.6%)
+ Łukasz Majewski 10 (0.6%)
+ Stefan Agner 10 (0.6%)
+ Shengzhou Liu 10 (0.6%)
+ Sjoerd Simons 10 (0.6%)
+ Bhuvanchandra DV 9 (0.6%)
+ Sanchayan Maity 8 (0.5%)
+ Yegor Yefremov 7 (0.4%)
+ Markus Niebel 7 (0.4%)
+ Andreas Bießmann 7 (0.4%)
+ Axel Lin 6 (0.4%)
+ Soeren Moch 6 (0.4%)
+ Linus Walleij 6 (0.4%)
+ Yangbo Lu 6 (0.4%)
+ Andrew Gabbasov 6 (0.4%)
+ Roger Quadros 5 (0.3%)
+ Pavel Machek 5 (0.3%)
+ Mark Langsdorf 5 (0.3%)
+ Nikhil Badola 5 (0.3%)
+ Gabriel Huau 5 (0.3%)
+ Nikolay Dimitrov 5 (0.3%)
+ Thierry Reding 5 (0.3%)
+ Minghuan Lian 5 (0.3%)
+ Sergey Temerkhanov 5 (0.3%)
+ Tang Yuantian 4 (0.3%)
+ Alexey Brodkin 4 (0.3%)
+ Kevin Smith 4 (0.3%)
+ Ian Campbell 4 (0.3%)
+ Rob Herring 4 (0.3%)
+ Ash Charles 4 (0.3%)
+ Inha Song 4 (0.3%)
+ Nobuhiro Iwamatsu 4 (0.3%)
+ Matt Porter 4 (0.3%)
+ Karl Apsite 4 (0.3%)
+ Jörg Krause 4 (0.3%)
+ Kamil Lulko 4 (0.3%)
+ Marek Szyprowski 4 (0.3%)
+ Antonio Borneo 3 (0.2%)
+ Mugunthan V N 3 (0.2%)
+ Daniel Schwierzeck 3 (0.2%)
+ Jeroen Hofstee 3 (0.2%)
+ Stefano Babic 3 (0.2%)
+ Andrew Bradford 3 (0.2%)
+ Alison Wang 3 (0.2%)
+ Eric Nelson 3 (0.2%)
+ Wu, Josh 3 (0.2%)
+ Vikas Manocha 3 (0.2%)
+ Arun Bharadwaj 3 (0.2%)
+ Zhao Qiang 3 (0.2%)
+ Vishnu Patekar 3 (0.2%)
+ Dileep Katta 3 (0.2%)
+ Bhupesh Sharma 3 (0.2%)
+ Pushpal Sidhu 3 (0.2%)
+ Minkyu Kang 2 (0.1%)
+ Shaohui Xie 2 (0.1%)
+ Nishanth Menon 2 (0.1%)
+ Angelo Dureghello 2 (0.1%)
+ Chris Packham 2 (0.1%)
+ Guillaume GARDET 2 (0.1%)
+ Vitaly Andrianov 2 (0.1%)
+ Cooper Jr., Franklin 2 (0.1%)
+ Joonyoung Shim 2 (0.1%)
+ Christian Gmeiner 2 (0.1%)
+ Lars Poeschel 2 (0.1%)
+ Daniel Kochmański 2 (0.1%)
+ Roy Spliet 2 (0.1%)
+ Ricardo Ribalda 2 (0.1%)
+ Tuomas Tynkkynen 2 (0.1%)
+ Ulises Cardenas 2 (0.1%)
+ Peter Howard 2 (0.1%)
+ kunhuahuang 2 (0.1%)
+ Jagannadha Sutradharudu Teki 2 (0.1%)
+ Oleksandr G Zhadan 2 (0.1%)
+ Chunhe Lan 2 (0.1%)
+ Nathan Rossi 2 (0.1%)
+ pankaj chauhan 2 (0.1%)
+ gaurav rana 2 (0.1%)
+ Alexander Merkle 2 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Michael Scherban 1 (0.1%)
+ Egli, Samuel 1 (0.1%)
+ Albert ARIBAUD (3ADEV) 1 (0.1%)
+ Maxime Ripard 1 (0.1%)
+ Tony Wu 1 (0.1%)
+ Bernhard Nortmann 1 (0.1%)
+ Maxin B. John 1 (0.1%)
+ Karsten Merker 1 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Chris Kuethe 1 (0.1%)
+ Adam YH Lee 1 (0.1%)
+ Stefan Wahren 1 (0.1%)
+ Mitsuhiro Kimura 1 (0.1%)
+ Peter Griffin 1 (0.1%)
+ Hannes Schmelzer 1 (0.1%)
+ Thomas Petazzoni 1 (0.1%)
+ Evgeniy Dushistov 1 (0.1%)
+ Ryan Harkin 1 (0.1%)
+ Raghav Dogra 1 (0.1%)
+ Laurent Itti 1 (0.1%)
+ Brecht Neyrinck 1 (0.1%)
+ Vincent Palatin 1 (0.1%)
+ Du Huanpeng 1 (0.1%)
+ Max Krummenacher 1 (0.1%)
+ Alexander Stein 1 (0.1%)
+ Kevin Liu 1 (0.1%)
+ Valentin Longchamp 1 (0.1%)
+ Andrea Scian 1 (0.1%)
+ David Dueck 1 (0.1%)
+ Jaiprakash Singh 1 (0.1%)
+ Bryan De Faria 1 (0.1%)
+ Zhou Zhu 1 (0.1%)
+ Xiang Wang 1 (0.1%)
+ J. German Rivera 1 (0.1%)
+ Yao Yuan 1 (0.1%)
+ Andrey Skvortsov 1 (0.1%)
+ Luca Ellero 1 (0.1%)
+ Tim James 1 (0.1%)
+ Codrin Ciubotariu 1 (0.1%)
+ Ying Zhang 1 (0.1%)
+ Alexander Graf 1 (0.1%)
+ Curt Brune 1 (0.1%)
+ Bryan Brinsko 1 (0.1%)
+ Valentine Barshak 1 (0.1%)
+ David Feng 1 (0.1%)
+ Han Pengfei 1 (0.1%)
+ Alexey Firago 1 (0.1%)
+ Michael Scott 1 (0.1%)
+ Franck Jullien 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 56181 (28.7%)
+ Simon Glass 22872 (11.7%)
+ Hans de Goede 19807 (10.1%)
+ Kishon Vijay Abraham I 15720 (8.0%)
+ Joe Hershberger 13351 (6.8%)
+ Prabhakar Kushwaha 6857 (3.5%)
+ Przemyslaw Marczak 6471 (3.3%)
+ Stefan Roese 3275 (1.7%)
+ Bin Meng 3114 (1.6%)
+ Haikun Wang 3058 (1.6%)
+ York Sun 3015 (1.5%)
+ Heiko Schocher 2735 (1.4%)
+ Tim Harvey 2358 (1.2%)
+ Oleksandr G Zhadan 2304 (1.2%)
+ Jagannadh Teki 2287 (1.2%)
+ Fabio Estevam 2262 (1.2%)
+ Andreas Bießmann 2029 (1.0%)
+ Kamil Lulko 1944 (1.0%)
+ Angelo Dureghello 1782 (0.9%)
+ Sanchayan Maity 1404 (0.7%)
+ Yegor Yefremov 1305 (0.7%)
+ Paul Kocialkowski 1204 (0.6%)
+ Lokesh Vutla 1199 (0.6%)
+ Peter Robinson 1199 (0.6%)
+ Matt Porter 938 (0.5%)
+ Peter Howard 770 (0.4%)
+ Scott Wood 735 (0.4%)
+ Hannes Petermaier 685 (0.3%)
+ Vishnu Patekar 600 (0.3%)
+ Bhuvanchandra DV 580 (0.3%)
+ Shengzhou Liu 524 (0.3%)
+ Peng Fan 513 (0.3%)
+ Chen-Yu Tsai 493 (0.3%)
+ Ian Campbell 476 (0.2%)
+ Michal Simek 446 (0.2%)
+ Arun Bharadwaj 440 (0.2%)
+ Stephen Warren 431 (0.2%)
+ Daniel Kochmański 426 (0.2%)
+ Jan Kiszka 395 (0.2%)
+ J. German Rivera 395 (0.2%)
+ Siva Durga Prasad Paladugu 382 (0.2%)
+ Minghuan Lian 380 (0.2%)
+ Bhupesh Sharma 377 (0.2%)
+ Gabriel Huau 372 (0.2%)
+ Alexey Brodkin 345 (0.2%)
+ Karl Apsite 341 (0.2%)
+ Mark Langsdorf 330 (0.2%)
+ Nishanth Menon 330 (0.2%)
+ Nobuhiro Iwamatsu 301 (0.2%)
+ Andrea Scian 287 (0.1%)
+ Yangbo Lu 284 (0.1%)
+ Eric Nelson 283 (0.1%)
+ Stefan Agner 281 (0.1%)
+ Sjoerd Simons 257 (0.1%)
+ Chunhe Lan 187 (0.1%)
+ Tom Rini 185 (0.1%)
+ Valentin Longchamp 164 (0.1%)
+ Marek Vasut 163 (0.1%)
+ Dinh Nguyen 161 (0.1%)
+ Sergey Temerkhanov 160 (0.1%)
+ gaurav rana 152 (0.1%)
+ Łukasz Majewski 149 (0.1%)
+ Daniel Schwierzeck 142 (0.1%)
+ Zhao Qiang 130 (0.1%)
+ Jeroen Hofstee 128 (0.1%)
+ Jaiprakash Singh 126 (0.1%)
+ Adam YH Lee 124 (0.1%)
+ Nikhil Badola 121 (0.1%)
+ kunhuahuang 111 (0.1%)
+ Roy Spliet 94 (0.0%)
+ Markus Niebel 90 (0.0%)
+ Rob Herring 90 (0.0%)
+ Pushpal Sidhu 88 (0.0%)
+ Alison Wang 78 (0.0%)
+ Yao Yuan 78 (0.0%)
+ Vikas Manocha 66 (0.0%)
+ Pavel Machek 62 (0.0%)
+ Nathan Rossi 62 (0.0%)
+ Thierry Reding 61 (0.0%)
+ Andrew Gabbasov 59 (0.0%)
+ Shaohui Xie 58 (0.0%)
+ Axel Lin 57 (0.0%)
+ Jörg Krause 56 (0.0%)
+ Bryan De Faria 56 (0.0%)
+ Marek Szyprowski 55 (0.0%)
+ Mugunthan V N 55 (0.0%)
+ Dileep Katta 55 (0.0%)
+ Xiang Wang 55 (0.0%)
+ Tang Yuantian 54 (0.0%)
+ Lars Poeschel 52 (0.0%)
+ Bryan Brinsko 51 (0.0%)
+ Nikolay Dimitrov 50 (0.0%)
+ Joonyoung Shim 50 (0.0%)
+ Jagannadha Sutradharudu Teki 50 (0.0%)
+ Linus Walleij 46 (0.0%)
+ Vitaly Andrianov 46 (0.0%)
+ Minkyu Kang 38 (0.0%)
+ Tim James 38 (0.0%)
+ Christian Gmeiner 37 (0.0%)
+ Soeren Moch 35 (0.0%)
+ Inha Song 33 (0.0%)
+ Michael Scott 33 (0.0%)
+ Ash Charles 30 (0.0%)
+ Wu, Josh 30 (0.0%)
+ Cooper Jr., Franklin 30 (0.0%)
+ Vincent Palatin 29 (0.0%)
+ Franck Jullien 28 (0.0%)
+ Kevin Smith 26 (0.0%)
+ Han Pengfei 26 (0.0%)
+ Maxime Ripard 25 (0.0%)
+ Mitsuhiro Kimura 25 (0.0%)
+ Ying Zhang 18 (0.0%)
+ Egli, Samuel 17 (0.0%)
+ Codrin Ciubotariu 17 (0.0%)
+ Valentine Barshak 17 (0.0%)
+ Chris Packham 16 (0.0%)
+ Hannes Schmelzer 16 (0.0%)
+ pankaj chauhan 13 (0.0%)
+ Alexey Firago 13 (0.0%)
+ David Dueck 12 (0.0%)
+ Roger Quadros 11 (0.0%)
+ Luca Ellero 11 (0.0%)
+ Ulises Cardenas 10 (0.0%)
+ Curt Brune 9 (0.0%)
+ Guillaume GARDET 8 (0.0%)
+ Ricardo Ribalda 7 (0.0%)
+ Laurent Itti 7 (0.0%)
+ Alexander Graf 7 (0.0%)
+ Stefano Babic 6 (0.0%)
+ Albert ARIBAUD (3ADEV) 6 (0.0%)
+ Stefan Wahren 5 (0.0%)
+ Zhou Zhu 5 (0.0%)
+ Andrey Skvortsov 5 (0.0%)
+ Andrew Bradford 4 (0.0%)
+ Tuomas Tynkkynen 4 (0.0%)
+ Karsten Merker 4 (0.0%)
+ Pali Rohár 4 (0.0%)
+ Antonio Borneo 3 (0.0%)
+ Alexander Merkle 3 (0.0%)
+ Michael Scherban 3 (0.0%)
+ Peter Griffin 3 (0.0%)
+ David Feng 3 (0.0%)
+ Andre Przywara 2 (0.0%)
+ Chris Kuethe 2 (0.0%)
+ Thomas Petazzoni 2 (0.0%)
+ Alexander Stein 2 (0.0%)
+ Kevin Liu 2 (0.0%)
+ Tony Wu 1 (0.0%)
+ Bernhard Nortmann 1 (0.0%)
+ Maxin B. John 1 (0.0%)
+ Evgeniy Dushistov 1 (0.0%)
+ Ryan Harkin 1 (0.0%)
+ Raghav Dogra 1 (0.0%)
+ Brecht Neyrinck 1 (0.0%)
+ Du Huanpeng 1 (0.0%)
+ Max Krummenacher 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andreas Bießmann 2018 (4.6%)
+ Angelo Dureghello 1628 (3.7%)
+ Stefan Roese 1117 (2.5%)
+ Peter Robinson 1105 (2.5%)
+ Jagannadh Teki 1001 (2.3%)
+ Ian Campbell 354 (0.8%)
+ Valentin Longchamp 116 (0.3%)
+ Lars Poeschel 52 (0.1%)
+ Jagannadha Sutradharudu Teki 41 (0.1%)
+ Stephen Warren 15 (0.0%)
+ Andrey Skvortsov 5 (0.0%)
+ Rob Herring 4 (0.0%)
+ Zhou Zhu 4 (0.0%)
+ Pali Rohár 4 (0.0%)
+ Axel Lin 1 (0.0%)
+ Jörg Krause 1 (0.0%)
+ Nikolay Dimitrov 1 (0.0%)
+ Egli, Samuel 1 (0.0%)
+ Alexander Merkle 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 304)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 60 (19.7%)
+ Hans de Goede 55 (18.1%)
+ Michal Simek 19 (6.2%)
+ York Sun 19 (6.2%)
+ Tom Rini 10 (3.3%)
+ Nishanth Menon 9 (3.0%)
+ Rabeeh Khoury 8 (2.6%)
+ Andre Przywara 6 (2.0%)
+ Rob Herring 5 (1.6%)
+ Radha Mohan Chintakuntla 5 (1.6%)
+ Kouei Abe 4 (1.3%)
+ Minkyu Kang 4 (1.3%)
+ Scott Wood 4 (1.3%)
+ Jan Kiszka 4 (1.3%)
+ Simon Glass 4 (1.3%)
+ Egli, Samuel 3 (1.0%)
+ Ye.Li 3 (1.0%)
+ Angela Stegmaier 3 (1.0%)
+ Łukasz Majewski 3 (1.0%)
+ Bhupesh Sharma 3 (1.0%)
+ Tim Harvey 3 (1.0%)
+ Joe Hershberger 3 (1.0%)
+ Prabhakar Kushwaha 3 (1.0%)
+ Roger Quadros 2 (0.7%)
+ Tomi Valkeinen 2 (0.7%)
+ Ricardo Ribalda Delgado 2 (0.7%)
+ Jon Nettleton 2 (0.7%)
+ Michael Durrant 2 (0.7%)
+ Roy Zang 2 (0.7%)
+ pankaj chauhan 2 (0.7%)
+ Shaohui Xie 2 (0.7%)
+ Ash Charles 2 (0.7%)
+ Inha Song 2 (0.7%)
+ Stefan Agner 2 (0.7%)
+ Roy Spliet 2 (0.7%)
+ Nobuhiro Iwamatsu 2 (0.7%)
+ Lokesh Vutla 2 (0.7%)
+ Sanchayan Maity 2 (0.7%)
+ Jagannadh Teki 1 (0.3%)
+ Jörg Krause 1 (0.3%)
+ Rohit Dharmakan 1 (0.3%)
+ Felipe Balbi 1 (0.3%)
+ Peter Ujfalusi 1 (0.3%)
+ Vishal Mahaveer 1 (0.3%)
+ Ulf Magnusson 1 (0.3%)
+ Philip Craig 1 (0.3%)
+ Jakub Sitnicki 1 (0.3%)
+ Vadim Bendebury 1 (0.3%)
+ Richard Hu 1 (0.3%)
+ Ruchika Gupta 1 (0.3%)
+ Marcel Ziswiler 1 (0.3%)
+ Pantelis Antoniou 1 (0.3%)
+ Ed Swarthout 1 (0.3%)
+ Jian Luo 1 (0.3%)
+ Roy Pledge 1 (0.3%)
+ Lijun Pan 1 (0.3%)
+ Stuart Yoder 1 (0.3%)
+ Geoff Thorpe 1 (0.3%)
+ Haiying Wang 1 (0.3%)
+ Cristian Sovaiala 1 (0.3%)
+ Ramneek Mehresh 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Vladimir Barinov 1 (0.3%)
+ Mugunthan V N 1 (0.3%)
+ Arun Bharadwaj 1 (0.3%)
+ Joonyoung Shim 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ J. German Rivera 1 (0.3%)
+ Minghuan Lian 1 (0.3%)
+ Hannes Petermaier 1 (0.3%)
+ Siva Durga Prasad Paladugu 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 486)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 101 (20.8%)
+ Marek Vasut 88 (18.1%)
+ Tom Rini 80 (16.5%)
+ York Sun 50 (10.3%)
+ Łukasz Majewski 41 (8.4%)
+ Bin Meng 38 (7.8%)
+ Hans de Goede 15 (3.1%)
+ Joe Hershberger 14 (2.9%)
+ Jagannadha Sutradharudu Teki 13 (2.7%)
+ Jagannadh Teki 12 (2.5%)
+ Thierry Reding 11 (2.3%)
+ Stefan Roese 6 (1.2%)
+ Stefano Babic 3 (0.6%)
+ Fabio Estevam 3 (0.6%)
+ Nishanth Menon 1 (0.2%)
+ Scott Wood 1 (0.2%)
+ Prabhakar Kushwaha 1 (0.2%)
+ Nobuhiro Iwamatsu 1 (0.2%)
+ Ruchika Gupta 1 (0.2%)
+ Linus Walleij 1 (0.2%)
+ Chakra Divi 1 (0.2%)
+ Stefan Reinauer 1 (0.2%)
+ Paul Walmsley 1 (0.2%)
+ Eric Nelson 1 (0.2%)
+ Przemyslaw Marczak 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 127)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 17 (13.4%)
+ Kevin Smith 14 (11.0%)
+ Dirk Eibach 13 (10.2%)
+ Thierry Reding 11 (8.7%)
+ Ian Campbell 11 (8.7%)
+ Vagrant Cascadian 9 (7.1%)
+ Jagannadh Teki 8 (6.3%)
+ Haikun Wang 6 (4.7%)
+ Bin Meng 4 (3.1%)
+ Joe Hershberger 3 (2.4%)
+ Tom Rini 2 (1.6%)
+ Eric Nelson 2 (1.6%)
+ Peng Fan 2 (1.6%)
+ Nikolay Dimitrov 2 (1.6%)
+ Marek Vasut 1 (0.8%)
+ Łukasz Majewski 1 (0.8%)
+ Hans de Goede 1 (0.8%)
+ Stefan Roese 1 (0.8%)
+ Stefan Reinauer 1 (0.8%)
+ Michal Simek 1 (0.8%)
+ Tim Harvey 1 (0.8%)
+ Shaohui Xie 1 (0.8%)
+ Lokesh Vutla 1 (0.8%)
+ Maxin B. John 1 (0.8%)
+ Review Code-CDREVIEW 1 (0.8%)
+ Jakub Kicinski 1 (0.8%)
+ Keerthy 1 (0.8%)
+ Yan Liu 1 (0.8%)
+ Andrei Gherzan 1 (0.8%)
+ Georg Schardt 1 (0.8%)
+ Steve Rae 1 (0.8%)
+ Bernhard Nortmann 1 (0.8%)
+ David Dueck 1 (0.8%)
+ Albert ARIBAUD (3ADEV) 1 (0.8%)
+ Maxime Ripard 1 (0.8%)
+ Pavel Machek 1 (0.8%)
+ Alison Wang 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 127)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 27 (21.3%)
+ Jan Kiszka 18 (14.2%)
+ Fabio Estevam 11 (8.7%)
+ Przemyslaw Marczak 11 (8.7%)
+ Simon Glass 8 (6.3%)
+ Haikun Wang 8 (6.3%)
+ Ian Campbell 6 (4.7%)
+ Jagannadh Teki 5 (3.9%)
+ Heiko Schocher 4 (3.1%)
+ Bin Meng 3 (2.4%)
+ Joe Hershberger 2 (1.6%)
+ Tom Rini 2 (1.6%)
+ Tim Harvey 2 (1.6%)
+ Kevin Smith 1 (0.8%)
+ Thierry Reding 1 (0.8%)
+ Marek Vasut 1 (0.8%)
+ Michal Simek 1 (0.8%)
+ David Dueck 1 (0.8%)
+ Pavel Machek 1 (0.8%)
+ Jagannadha Sutradharudu Teki 1 (0.8%)
+ Nishanth Menon 1 (0.8%)
+ Scott Wood 1 (0.8%)
+ Andre Przywara 1 (0.8%)
+ Mugunthan V N 1 (0.8%)
+ Axel Lin 1 (0.8%)
+ Cooper Jr., Franklin 1 (0.8%)
+ Ricardo Ribalda 1 (0.8%)
+ Alexey Firago 1 (0.8%)
+ Wu, Josh 1 (0.8%)
+ Vincent Palatin 1 (0.8%)
+ Daniel Schwierzeck 1 (0.8%)
+ Chen-Yu Tsai 1 (0.8%)
+ Paul Kocialkowski 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 5 (23.8%)
+ Joe Hershberger 2 (9.5%)
+ Ingrid Viitanen 2 (9.5%)
+ Haikun Wang 1 (4.8%)
+ Bin Meng 1 (4.8%)
+ Tim Harvey 1 (4.8%)
+ Michal Simek 1 (4.8%)
+ Pavel Machek 1 (4.8%)
+ Vagrant Cascadian 1 (4.8%)
+ Maxin B. John 1 (4.8%)
+ Andrei Gherzan 1 (4.8%)
+ Roger Quadros 1 (4.8%)
+ Albert ARIBAUD 1 (4.8%)
+ Andy Kennedy 1 (4.8%)
+ Shivasharan Nagalikar 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 7 (33.3%)
+ Joe Hershberger 5 (23.8%)
+ Lokesh Vutla 3 (14.3%)
+ Fabio Estevam 2 (9.5%)
+ Tom Rini 1 (4.8%)
+ Jagannadha Sutradharudu Teki 1 (4.8%)
+ Daniel Schwierzeck 1 (4.8%)
+ Hans de Goede 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 425 (27.2%)
+ Google, Inc. 312 (20.0%)
+ Freescale 151 (9.7%)
+ National Instruments 111 (7.1%)
+ Red Hat 106 (6.8%)
+ Texas Instruments 79 (5.1%)
+ DENX Software Engineering 73 (4.7%)
+ Socionext Inc. 68 (4.4%)
+ Samsung 65 (4.2%)
+ Openedev 44 (2.8%)
+ Konsulko Group 19 (1.2%)
+ Toradex 18 (1.2%)
+ Siemens 14 (0.9%)
+ Xilinx 14 (0.9%)
+ Linaro 12 (0.8%)
+ AMD 11 (0.7%)
+ Collabora Ltd. 10 (0.6%)
+ NVidia 8 (0.5%)
+ Renesas Electronics 5 (0.3%)
+ Atmel 3 (0.2%)
+ Boundary Devices 3 (0.2%)
+ Marvell 3 (0.2%)
+ ST Microelectronics 3 (0.2%)
+ Free Electrons 2 (0.1%)
+ Dave S.r.l. 1 (0.1%)
+ Debian.org 1 (0.1%)
+ ENEA AB 1 (0.1%)
+ Keymile 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Socionext Inc. 56181 (28.7%)
+ (Unknown) 25214 (12.9%)
+ Google, Inc. 22901 (11.7%)
+ Red Hat 19807 (10.1%)
+ Freescale 19443 (9.9%)
+ Texas Instruments 17394 (8.9%)
+ National Instruments 13351 (6.8%)
+ Samsung 6796 (3.5%)
+ DENX Software Engineering 6241 (3.2%)
+ Openedev 2287 (1.2%)
+ Toradex 1985 (1.0%)
+ Konsulko Group 1123 (0.6%)
+ AMD 446 (0.2%)
+ Xilinx 444 (0.2%)
+ Siemens 412 (0.2%)
+ Renesas Electronics 326 (0.2%)
+ Dave S.r.l. 287 (0.1%)
+ Boundary Devices 283 (0.1%)
+ Collabora Ltd. 257 (0.1%)
+ Keymile 164 (0.1%)
+ Linaro 138 (0.1%)
+ NVidia 86 (0.0%)
+ ST Microelectronics 66 (0.0%)
+ Marvell 62 (0.0%)
+ Atmel 30 (0.0%)
+ Free Electrons 27 (0.0%)
+ Debian.org 4 (0.0%)
+ ENEA AB 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 304)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NVidia 60 (19.7%)
+ Red Hat 55 (18.1%)
+ Freescale 51 (16.8%)
+ (Unknown) 48 (15.8%)
+ Texas Instruments 22 (7.2%)
+ Xilinx 20 (6.6%)
+ Konsulko Group 11 (3.6%)
+ Samsung 10 (3.3%)
+ Siemens 7 (2.3%)
+ Google, Inc. 5 (1.6%)
+ Renesas Electronics 5 (1.6%)
+ National Instruments 3 (1.0%)
+ Toradex 3 (1.0%)
+ DENX Software Engineering 2 (0.7%)
+ Openedev 1 (0.3%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 157)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 75 (47.8%)
+ Freescale 25 (15.9%)
+ Texas Instruments 8 (5.1%)
+ Samsung 6 (3.8%)
+ DENX Software Engineering 5 (3.2%)
+ Linaro 5 (3.2%)
+ Toradex 3 (1.9%)
+ Marvell 3 (1.9%)
+ NVidia 2 (1.3%)
+ Xilinx 2 (1.3%)
+ Konsulko Group 2 (1.3%)
+ Siemens 2 (1.3%)
+ Google, Inc. 2 (1.3%)
+ Renesas Electronics 2 (1.3%)
+ Free Electrons 2 (1.3%)
+ Red Hat 1 (0.6%)
+ National Instruments 1 (0.6%)
+ Openedev 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ AMD 1 (0.6%)
+ Dave S.r.l. 1 (0.6%)
+ Boundary Devices 1 (0.6%)
+ Collabora Ltd. 1 (0.6%)
+ Keymile 1 (0.6%)
+ ST Microelectronics 1 (0.6%)
+ Atmel 1 (0.6%)
+ Debian.org 1 (0.6%)
+ ENEA AB 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2015.10.rst b/doc/develop/statistics/u-boot-stats-v2015.10.rst
new file mode 100644
index 0000000..1e9c98d
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2015.10.rst
@@ -0,0 +1,861 @@
+:orphan:
+
+Release Statistics for U-Boot v2015.10
+======================================
+
+* Processed 2069 csets from 182 developers
+
+* 32 employers found
+
+* A total of 180893 lines added, 90724 removed (delta 90169)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 376 (18.2%)
+ Marek Vasut 263 (12.7%)
+ Bin Meng 157 (7.6%)
+ Masahiro Yamada 117 (5.7%)
+ Hans de Goede 92 (4.4%)
+ Peng Fan 81 (3.9%)
+ Stefan Roese 60 (2.9%)
+ Paul Kocialkowski 42 (2.0%)
+ Stephen Warren 39 (1.9%)
+ Fabio Estevam 38 (1.8%)
+ Michal Simek 37 (1.8%)
+ Tom Rini 30 (1.4%)
+ Marcel Ziswiler 30 (1.4%)
+ Prabhakar Kushwaha 29 (1.4%)
+ Nikita Kiryanov 25 (1.2%)
+ Thierry Reding 24 (1.2%)
+ Adrian Alonso 22 (1.1%)
+ Lokesh Vutla 19 (0.9%)
+ Kishon Vijay Abraham I 18 (0.9%)
+ Codrin Ciubotariu 17 (0.8%)
+ Otavio Salvador 17 (0.8%)
+ Heiko Schocher 16 (0.8%)
+ Peter Griffin 16 (0.8%)
+ Nishanth Menon 16 (0.8%)
+ Vladimir Zapolskiy 14 (0.7%)
+ Tom Warren 13 (0.6%)
+ Lukasz Majewski 13 (0.6%)
+ Sylvain Lemieux 13 (0.6%)
+ Siva Durga Prasad Paladugu 13 (0.6%)
+ Dinh Nguyen 12 (0.6%)
+ York Sun 12 (0.6%)
+ Josh Wu 11 (0.5%)
+ Haikun Wang 11 (0.5%)
+ Ryan Harkin 10 (0.5%)
+ Nikhil Badola 10 (0.5%)
+ Vikas Manocha 10 (0.5%)
+ Sjoerd Simons 9 (0.4%)
+ Bernhard Nortmann 9 (0.4%)
+ Anatolij Gustschin 9 (0.4%)
+ Mark Tomlinson 8 (0.4%)
+ Ramneek Mehresh 8 (0.4%)
+ Albert ARIBAUD (3ADEV) 7 (0.3%)
+ Alexander Stein 7 (0.3%)
+ Paul Gortmaker 6 (0.3%)
+ Alison Wang 6 (0.3%)
+ Priyanka Jain 6 (0.3%)
+ Ben Stoltz 6 (0.3%)
+ Vitaly Andrianov 5 (0.2%)
+ Benoît Thébaudeau 5 (0.2%)
+ Tim Harvey 5 (0.2%)
+ Jiandong Zheng 5 (0.2%)
+ Stefano Babic 5 (0.2%)
+ Bhupesh Sharma 5 (0.2%)
+ Shengzhou Liu 5 (0.2%)
+ Vignesh R 5 (0.2%)
+ Tobias Jakobi 4 (0.2%)
+ Przemyslaw Marczak 4 (0.2%)
+ Rob Herring 4 (0.2%)
+ Siarhei Siamashka 4 (0.2%)
+ Soeren Moch 4 (0.2%)
+ Dmitry Lifshitz 4 (0.2%)
+ Andreas Bießmann 4 (0.2%)
+ Aneesh Bansal 4 (0.2%)
+ Vladimir Barinov 4 (0.2%)
+ Erik van Luijk 4 (0.2%)
+ Max Krummenacher 4 (0.2%)
+ Daniel Kochmański 4 (0.2%)
+ Stuart Yoder 4 (0.2%)
+ Stefan Agner 3 (0.1%)
+ Guillaume GARDET 3 (0.1%)
+ Igor Grinberg 3 (0.1%)
+ Yao Yuan 3 (0.1%)
+ Jian Luo 3 (0.1%)
+ Enric Balletbò i Serra 3 (0.1%)
+ Jörg Krause 3 (0.1%)
+ Chris Packham 3 (0.1%)
+ Saket Sinha 3 (0.1%)
+ Anton Schubert 3 (0.1%)
+ Dennis Gilmore 3 (0.1%)
+ Horia Geantă 3 (0.1%)
+ Alex Porosanu 3 (0.1%)
+ Wang Dongsheng 3 (0.1%)
+ Antonio Borneo 3 (0.1%)
+ Liviu Dudau 2 (0.1%)
+ Jagan Teki 2 (0.1%)
+ Mirza Krak 2 (0.1%)
+ Alexey Brodkin 2 (0.1%)
+ Troy Kisky 2 (0.1%)
+ Simon Guinot 2 (0.1%)
+ Łukasz Majewski 2 (0.1%)
+ Hannes Petermaier 2 (0.1%)
+ Stefan Brüns 2 (0.1%)
+ Clemens Gruber 2 (0.1%)
+ vpeter4 2 (0.1%)
+ Zhuoyu Zhang 2 (0.1%)
+ Yangbo Lu 2 (0.1%)
+ Boris Brezillon 2 (0.1%)
+ Ravi Babu 2 (0.1%)
+ Kun-Hua Huang 2 (0.1%)
+ Scott Wood 2 (0.1%)
+ Andrew Ruder 2 (0.1%)
+ Thomas Abraham 2 (0.1%)
+ Gong Qianyu 2 (0.1%)
+ Piotr Zierhoffer 2 (0.1%)
+ Alexandre Courbot 2 (0.1%)
+ Minghuan Lian 2 (0.1%)
+ gaurav rana 2 (0.1%)
+ Zhao Qiang 2 (0.1%)
+ Shaohui Xie 2 (0.1%)
+ Jaiprakash Singh 2 (0.1%)
+ Zhichun Hua 2 (0.1%)
+ J. German Rivera 2 (0.1%)
+ Andrej Rosano 1 (0.0%)
+ Ladislav Michl 1 (0.0%)
+ Linus Walleij 1 (0.0%)
+ Lubomir Rintel 1 (0.0%)
+ Eric Cooper 1 (0.0%)
+ Anthony Felice 1 (0.0%)
+ Ludger Dreier 1 (0.0%)
+ Ezequiel García 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Ian Campbell 1 (0.0%)
+ Julius Werner 1 (0.0%)
+ Bo Shen 1 (0.0%)
+ Mugunthan V N 1 (0.0%)
+ Philipp Rosenberger 1 (0.0%)
+ Sekhar Nori 1 (0.0%)
+ Axel Lin 1 (0.0%)
+ Andreas Färber 1 (0.0%)
+ Imran Zaman 1 (0.0%)
+ Sergey Kostanbaev 1 (0.0%)
+ Michael Heimpold 1 (0.0%)
+ Ye.Li 1 (0.0%)
+ Gary Bisson 1 (0.0%)
+ Daniel Gorsulowski 1 (0.0%)
+ Jelle van der Waa 1 (0.0%)
+ Steve Rae 1 (0.0%)
+ Adam Ford 1 (0.0%)
+ Olaf Mandel 1 (0.0%)
+ Chris Smith 1 (0.0%)
+ Damien Riegel 1 (0.0%)
+ Lucile Quirion 1 (0.0%)
+ Eric Nelson 1 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Varun Sethi 1 (0.0%)
+ Claudiu Manoil 1 (0.0%)
+ Igal Liberman 1 (0.0%)
+ Misha Komarovskiy 1 (0.0%)
+ Yousong Zhou 1 (0.0%)
+ Chen-Yu Tsai 1 (0.0%)
+ Marcus Cooper 1 (0.0%)
+ Ulf Magnusson 1 (0.0%)
+ Suriyan Ramasami 1 (0.0%)
+ Jonathan Liu 1 (0.0%)
+ Andrew Bradford 1 (0.0%)
+ Ezequiel Garcia 1 (0.0%)
+ Mingkai Hu 1 (0.0%)
+ Pavel Machek 1 (0.0%)
+ Govindraj Raja 1 (0.0%)
+ Sergey Temerkhanov 1 (0.0%)
+ Vishal Mahaveer 1 (0.0%)
+ Stoppa, Igor 1 (0.0%)
+ Yoshinori Sato 1 (0.0%)
+ Måns Rullgård 1 (0.0%)
+ Ruchika Gupta 1 (0.0%)
+ Andre Przywara 1 (0.0%)
+ Daniel Inderbitzin 1 (0.0%)
+ Jeroen Hofstee 1 (0.0%)
+ Karol Gugala 1 (0.0%)
+ Aleksei Mamlin 1 (0.0%)
+ Maxime Ripard 1 (0.0%)
+ Miao Yan 1 (0.0%)
+ chenhui zhao 1 (0.0%)
+ Tang Yuantian 1 (0.0%)
+ Raghav Dogra 1 (0.0%)
+ Ying Zhang 1 (0.0%)
+ Yegor Yefremov 1 (0.0%)
+ Adam YH Lee 1 (0.0%)
+ Kamil Lulko 1 (0.0%)
+ Sudeep Holla 1 (0.0%)
+ Ulises Cardenas 1 (0.0%)
+ Peter Robinson 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 68254 (27.8%)
+ Stefan Roese 30346 (12.4%)
+ Masahiro Yamada 23310 (9.5%)
+ Marek Vasut 19480 (7.9%)
+ Bin Meng 14028 (5.7%)
+ Adrian Alonso 10199 (4.2%)
+ Dinh Nguyen 7920 (3.2%)
+ Tom Rini 7247 (3.0%)
+ Peng Fan 5138 (2.1%)
+ Tom Warren 4975 (2.0%)
+ Hans de Goede 4918 (2.0%)
+ Heiko Schocher 3985 (1.6%)
+ Codrin Ciubotariu 3567 (1.5%)
+ Vladimir Barinov 3239 (1.3%)
+ Peter Griffin 2488 (1.0%)
+ Ulf Magnusson 2286 (0.9%)
+ Kun-Hua Huang 2158 (0.9%)
+ Stephen Warren 2124 (0.9%)
+ Paul Kocialkowski 2103 (0.9%)
+ Prabhakar Kushwaha 1953 (0.8%)
+ Saket Sinha 1744 (0.7%)
+ Michal Simek 1391 (0.6%)
+ Albert ARIBAUD (3ADEV) 1317 (0.5%)
+ Nikita Kiryanov 1238 (0.5%)
+ Scott Wood 1119 (0.5%)
+ Sylvain Lemieux 1045 (0.4%)
+ Lokesh Vutla 887 (0.4%)
+ Enric Balletbò i Serra 839 (0.3%)
+ Otavio Salvador 802 (0.3%)
+ Erik van Luijk 707 (0.3%)
+ Kishon Vijay Abraham I 677 (0.3%)
+ Alison Wang 600 (0.2%)
+ Ramneek Mehresh 572 (0.2%)
+ Vladimir Zapolskiy 542 (0.2%)
+ Anton Schubert 507 (0.2%)
+ Julius Werner 471 (0.2%)
+ Ben Stoltz 467 (0.2%)
+ Fabio Estevam 449 (0.2%)
+ Marcel Ziswiler 421 (0.2%)
+ Piotr Zierhoffer 404 (0.2%)
+ Andrew Bradford 388 (0.2%)
+ Lukasz Majewski 387 (0.2%)
+ Lucile Quirion 376 (0.2%)
+ vpeter4 352 (0.1%)
+ Haikun Wang 351 (0.1%)
+ Priyanka Jain 307 (0.1%)
+ Josh Wu 306 (0.1%)
+ Nishanth Menon 305 (0.1%)
+ Stuart Yoder 285 (0.1%)
+ Marcus Cooper 266 (0.1%)
+ Jelle van der Waa 252 (0.1%)
+ Ulises Cardenas 245 (0.1%)
+ Minghuan Lian 229 (0.1%)
+ Bhupesh Sharma 226 (0.1%)
+ Mark Tomlinson 223 (0.1%)
+ Siva Durga Prasad Paladugu 221 (0.1%)
+ Liviu Dudau 217 (0.1%)
+ Jiandong Zheng 211 (0.1%)
+ Vignesh R 200 (0.1%)
+ Wang Dongsheng 196 (0.1%)
+ Thierry Reding 167 (0.1%)
+ Vikas Manocha 164 (0.1%)
+ Shengzhou Liu 164 (0.1%)
+ Benoît Thébaudeau 161 (0.1%)
+ Stefan Agner 159 (0.1%)
+ Bernhard Nortmann 145 (0.1%)
+ Igal Liberman 135 (0.1%)
+ Aneesh Bansal 134 (0.1%)
+ Damien Riegel 130 (0.1%)
+ Ryan Harkin 128 (0.1%)
+ York Sun 126 (0.1%)
+ Zhuoyu Zhang 118 (0.0%)
+ Alexandre Courbot 114 (0.0%)
+ Alexander Stein 103 (0.0%)
+ Andrew Ruder 93 (0.0%)
+ Sjoerd Simons 89 (0.0%)
+ Ludger Dreier 89 (0.0%)
+ Mirza Krak 78 (0.0%)
+ Daniel Kochmański 76 (0.0%)
+ Tang Yuantian 75 (0.0%)
+ Nikhil Badola 73 (0.0%)
+ Peter Robinson 68 (0.0%)
+ Troy Kisky 64 (0.0%)
+ Shaohui Xie 62 (0.0%)
+ Antonio Borneo 56 (0.0%)
+ Ezequiel Garcia 56 (0.0%)
+ Clemens Gruber 53 (0.0%)
+ Chris Packham 51 (0.0%)
+ Yangbo Lu 49 (0.0%)
+ Adam Ford 48 (0.0%)
+ J. German Rivera 47 (0.0%)
+ Chen-Yu Tsai 47 (0.0%)
+ Tim Harvey 42 (0.0%)
+ chenhui zhao 34 (0.0%)
+ Jian Luo 33 (0.0%)
+ Tobias Jakobi 32 (0.0%)
+ Paul Gortmaker 31 (0.0%)
+ Karol Gugala 30 (0.0%)
+ Andre Przywara 29 (0.0%)
+ Rob Herring 28 (0.0%)
+ Linus Walleij 28 (0.0%)
+ Dennis Gilmore 26 (0.0%)
+ Alex Porosanu 24 (0.0%)
+ Jörg Krause 23 (0.0%)
+ Vitaly Andrianov 22 (0.0%)
+ Przemyslaw Marczak 22 (0.0%)
+ Yao Yuan 22 (0.0%)
+ Stefano Babic 21 (0.0%)
+ Hannes Petermaier 21 (0.0%)
+ Ian Campbell 21 (0.0%)
+ Stoppa, Igor 21 (0.0%)
+ Olaf Mandel 20 (0.0%)
+ Horia Geantă 19 (0.0%)
+ Łukasz Majewski 19 (0.0%)
+ Anatolij Gustschin 18 (0.0%)
+ Andreas Bießmann 18 (0.0%)
+ Max Krummenacher 17 (0.0%)
+ Zhichun Hua 17 (0.0%)
+ Guillaume GARDET 16 (0.0%)
+ gaurav rana 16 (0.0%)
+ Igor Grinberg 14 (0.0%)
+ Sergey Temerkhanov 14 (0.0%)
+ Ladislav Michl 13 (0.0%)
+ Dmitry Lifshitz 12 (0.0%)
+ Soeren Moch 11 (0.0%)
+ Bo Shen 11 (0.0%)
+ Ying Zhang 11 (0.0%)
+ Simon Guinot 10 (0.0%)
+ Michael Heimpold 10 (0.0%)
+ Jagan Teki 9 (0.0%)
+ Boris Brezillon 9 (0.0%)
+ Ravi Babu 9 (0.0%)
+ Axel Lin 9 (0.0%)
+ Varun Sethi 9 (0.0%)
+ Claudiu Manoil 9 (0.0%)
+ Suriyan Ramasami 9 (0.0%)
+ Stefan Brüns 8 (0.0%)
+ Thomas Abraham 8 (0.0%)
+ Miao Yan 8 (0.0%)
+ Jaiprakash Singh 7 (0.0%)
+ Ruchika Gupta 7 (0.0%)
+ Lubomir Rintel 6 (0.0%)
+ Siarhei Siamashka 5 (0.0%)
+ Alexey Brodkin 5 (0.0%)
+ Vagrant Cascadian 5 (0.0%)
+ Andreas Färber 5 (0.0%)
+ Baruch Siach 5 (0.0%)
+ Pavel Machek 5 (0.0%)
+ Yoshinori Sato 5 (0.0%)
+ Aleksei Mamlin 5 (0.0%)
+ Gong Qianyu 4 (0.0%)
+ Zhao Qiang 4 (0.0%)
+ Misha Komarovskiy 4 (0.0%)
+ Yousong Zhou 4 (0.0%)
+ Mingkai Hu 4 (0.0%)
+ Andrej Rosano 3 (0.0%)
+ Ezequiel García 3 (0.0%)
+ Daniel Inderbitzin 3 (0.0%)
+ Maxime Ripard 3 (0.0%)
+ Yegor Yefremov 3 (0.0%)
+ Eric Cooper 2 (0.0%)
+ Sergey Kostanbaev 2 (0.0%)
+ Ye.Li 2 (0.0%)
+ Daniel Gorsulowski 2 (0.0%)
+ Jonathan Liu 2 (0.0%)
+ Govindraj Raja 2 (0.0%)
+ Jeroen Hofstee 2 (0.0%)
+ Adam YH Lee 2 (0.0%)
+ Anthony Felice 1 (0.0%)
+ Mugunthan V N 1 (0.0%)
+ Philipp Rosenberger 1 (0.0%)
+ Sekhar Nori 1 (0.0%)
+ Imran Zaman 1 (0.0%)
+ Gary Bisson 1 (0.0%)
+ Steve Rae 1 (0.0%)
+ Chris Smith 1 (0.0%)
+ Eric Nelson 1 (0.0%)
+ Vishal Mahaveer 1 (0.0%)
+ Måns Rullgård 1 (0.0%)
+ Raghav Dogra 1 (0.0%)
+ Kamil Lulko 1 (0.0%)
+ Sudeep Holla 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 8811 (9.7%)
+ Simon Glass 8130 (9.0%)
+ Kun-Hua Huang 2054 (2.3%)
+ Ulf Magnusson 346 (0.4%)
+ Josh Wu 70 (0.1%)
+ Peter Robinson 64 (0.1%)
+ Alexander Stein 26 (0.0%)
+ Adam Ford 20 (0.0%)
+ Andrew Ruder 15 (0.0%)
+ Shaohui Xie 13 (0.0%)
+ Ludger Dreier 12 (0.0%)
+ Igor Grinberg 12 (0.0%)
+ Jörg Krause 11 (0.0%)
+ Bo Shen 11 (0.0%)
+ Hannes Petermaier 9 (0.0%)
+ Axel Lin 9 (0.0%)
+ Suriyan Ramasami 8 (0.0%)
+ Zhichun Hua 7 (0.0%)
+ Claudiu Manoil 4 (0.0%)
+ Vagrant Cascadian 4 (0.0%)
+ Thomas Abraham 2 (0.0%)
+ Rob Herring 1 (0.0%)
+ Alexey Brodkin 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 328)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 65 (19.8%)
+ Hans de Goede 24 (7.3%)
+ Simon Glass 22 (6.7%)
+ Ye.Li 17 (5.2%)
+ Prabhakar Kushwaha 16 (4.9%)
+ Michal Simek 14 (4.3%)
+ Tom Rini 13 (4.0%)
+ Peng Fan 11 (3.4%)
+ Stephen Warren 10 (3.0%)
+ Minkyu Kang 8 (2.4%)
+ Johnson Leung 7 (2.1%)
+ Marcel Ziswiler 7 (2.1%)
+ Bin Meng 6 (1.8%)
+ Steve Rae 5 (1.5%)
+ Vignesh R 5 (1.5%)
+ Michal Marek 4 (1.2%)
+ Nobuhiro Iwamatsu 4 (1.2%)
+ Soren Brinkmann 4 (1.2%)
+ Andreas Bießmann 4 (1.2%)
+ York Sun 4 (1.2%)
+ Fugang Duan 3 (0.9%)
+ Enric Balletbo i Serra 3 (0.9%)
+ King Chung Lo@freescale.com 3 (0.9%)
+ Saksham Jain 3 (0.9%)
+ Ruchika Gupta 3 (0.9%)
+ Peter Gielda 2 (0.6%)
+ Tomasz Gorochowik 2 (0.6%)
+ Mateusz Holenko 2 (0.6%)
+ Olof Johansson 2 (0.6%)
+ Dai Haruki 2 (0.6%)
+ Karol Gugala 2 (0.6%)
+ Bhupesh Sharma 2 (0.6%)
+ Minghuan Lian 2 (0.6%)
+ Marek Vasut 2 (0.6%)
+ Josh Wu 1 (0.3%)
+ Igor Grinberg 1 (0.3%)
+ Bhuvanchandra DV 1 (0.3%)
+ Matthias Michel 1 (0.3%)
+ Han Xu 1 (0.3%)
+ Brian Norris 1 (0.3%)
+ Radha Mohan Chintakuntla 1 (0.3%)
+ Pantelis Antoniou 1 (0.3%)
+ Itai Katz 1 (0.3%)
+ Robin Gong 1 (0.3%)
+ Brown Oliver 1 (0.3%)
+ Ezra Savard 1 (0.3%)
+ Alex Wilson 1 (0.3%)
+ Nathan Sullivan 1 (0.3%)
+ Robert Richter 1 (0.3%)
+ Heiko Carstens 1 (0.3%)
+ Martin Schwidefsky 1 (0.3%)
+ Andrey Ryabinin 1 (0.3%)
+ Nathan Rossi 1 (0.3%)
+ Bjørn Forsman 1 (0.3%)
+ Andrey Utkin 1 (0.3%)
+ Jiri Kosina 1 (0.3%)
+ Arjun Sreedharan 1 (0.3%)
+ Arnaldo Carvalho de Melo 1 (0.3%)
+ Colin Ian King 1 (0.3%)
+ Nitin Garg 1 (0.3%)
+ Jason Liu 1 (0.3%)
+ pankaj chauhan 1 (0.3%)
+ Scott Wood 1 (0.3%)
+ Ravi Babu 1 (0.3%)
+ Przemyslaw Marczak 1 (0.3%)
+ Jian Luo 1 (0.3%)
+ J. German Rivera 1 (0.3%)
+ Andre Przywara 1 (0.3%)
+ Stefan Agner 1 (0.3%)
+ Lokesh Vutla 1 (0.3%)
+ Thierry Reding 1 (0.3%)
+ Damien Riegel 1 (0.3%)
+ Wang Dongsheng 1 (0.3%)
+ Stuart Yoder 1 (0.3%)
+ Piotr Zierhoffer 1 (0.3%)
+ Ben Stoltz 1 (0.3%)
+ Anton Schubert 1 (0.3%)
+ Codrin Ciubotariu 1 (0.3%)
+ Stefan Roese 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 557)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 120 (21.5%)
+ Bin Meng 105 (18.9%)
+ Tom Rini 84 (15.1%)
+ Simon Glass 82 (14.7%)
+ Jagan Teki 34 (6.1%)
+ Heiko Schocher 32 (5.7%)
+ Stefano Babic 17 (3.1%)
+ Linus Walleij 11 (2.0%)
+ Marek Vasut 10 (1.8%)
+ Joe Hershberger 9 (1.6%)
+ Hans de Goede 6 (1.1%)
+ Łukasz Majewski 6 (1.1%)
+ Fabio Estevam 5 (0.9%)
+ Peng Fan 4 (0.7%)
+ Murali Karicheri 4 (0.7%)
+ Vitaly Andrianov 4 (0.7%)
+ Stefan Roese 3 (0.5%)
+ Masahiro Yamada 3 (0.5%)
+ Brad Griffis 3 (0.5%)
+ Nishanth Menon 3 (0.5%)
+ Andreas Bießmann 2 (0.4%)
+ Mingkai Hu 2 (0.4%)
+ Bhupesh Sharma 1 (0.2%)
+ Przemyslaw Marczak 1 (0.2%)
+ Bo Shen 1 (0.2%)
+ Wolfgang Denk 1 (0.2%)
+ Benoît Thébaudeau 1 (0.2%)
+ Chris Packham 1 (0.2%)
+ Ryan Harkin 1 (0.2%)
+ Aneesh Bansal 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 136)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 21 (15.4%)
+ Simon Glass 20 (14.7%)
+ Przemyslaw Marczak 13 (9.6%)
+ Łukasz Majewski 11 (8.1%)
+ Stephen Warren 8 (5.9%)
+ Marcel Ziswiler 7 (5.1%)
+ Sylvain Lemieux 6 (4.4%)
+ Fabio Estevam 5 (3.7%)
+ Stefan Roese 4 (2.9%)
+ Andrew Bradford 4 (2.9%)
+ Vladimir Zapolskiy 3 (2.2%)
+ Jagan Teki 2 (1.5%)
+ Marek Vasut 2 (1.5%)
+ Vitaly Andrianov 2 (1.5%)
+ Ryan Harkin 2 (1.5%)
+ Jian Luo 2 (1.5%)
+ Tim Harvey 2 (1.5%)
+ Paul Kocialkowski 2 (1.5%)
+ Andreas Bießmann 1 (0.7%)
+ Wolfgang Denk 1 (0.7%)
+ Michal Simek 1 (0.7%)
+ Stefan Agner 1 (0.7%)
+ Hannes Petermaier 1 (0.7%)
+ Joakim Tjernlund 1 (0.7%)
+ Sinan Akman 1 (0.7%)
+ Uwe Scheffler 1 (0.7%)
+ Kevin Smith 1 (0.7%)
+ Andy Pont 1 (0.7%)
+ Thomas Chou 1 (0.7%)
+ Xing Lei 1 (0.7%)
+ Pekon Gupta 1 (0.7%)
+ Simon Guinot 1 (0.7%)
+ Clemens Gruber 1 (0.7%)
+ Alison Wang 1 (0.7%)
+ Lukasz Majewski 1 (0.7%)
+ Erik van Luijk 1 (0.7%)
+ Otavio Salvador 1 (0.7%)
+ Albert ARIBAUD (3ADEV) 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 136)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 24 (17.6%)
+ Bin Meng 16 (11.8%)
+ Stephen Warren 7 (5.1%)
+ Vladimir Zapolskiy 6 (4.4%)
+ Tim Harvey 6 (4.4%)
+ Peng Fan 6 (4.4%)
+ Alexander Stein 6 (4.4%)
+ Paul Kocialkowski 5 (3.7%)
+ Tom Rini 4 (2.9%)
+ Chris Packham 4 (2.9%)
+ Przemyslaw Marczak 3 (2.2%)
+ Sylvain Lemieux 3 (2.2%)
+ Stefan Roese 3 (2.2%)
+ Vikas Manocha 3 (2.2%)
+ Fabio Estevam 2 (1.5%)
+ Stefan Agner 2 (1.5%)
+ Ravi Babu 2 (1.5%)
+ Lokesh Vutla 2 (1.5%)
+ Ben Stoltz 2 (1.5%)
+ Thomas Abraham 2 (1.5%)
+ Guillaume GARDET 2 (1.5%)
+ Liviu Dudau 2 (1.5%)
+ Łukasz Majewski 1 (0.7%)
+ Marcel Ziswiler 1 (0.7%)
+ Andrew Bradford 1 (0.7%)
+ Marek Vasut 1 (0.7%)
+ Jian Luo 1 (0.7%)
+ Michal Simek 1 (0.7%)
+ Simon Guinot 1 (0.7%)
+ Lukasz Majewski 1 (0.7%)
+ Erik van Luijk 1 (0.7%)
+ Masahiro Yamada 1 (0.7%)
+ Tom Warren 1 (0.7%)
+ Steve Rae 1 (0.7%)
+ Josh Wu 1 (0.7%)
+ Thierry Reding 1 (0.7%)
+ Anton Schubert 1 (0.7%)
+ Claudiu Manoil 1 (0.7%)
+ Vagrant Cascadian 1 (0.7%)
+ Måns Rullgård 1 (0.7%)
+ Soeren Moch 1 (0.7%)
+ Miao Yan 1 (0.7%)
+ Troy Kisky 1 (0.7%)
+ Ezequiel Garcia 1 (0.7%)
+ Igal Liberman 1 (0.7%)
+ Saket Sinha 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 28)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Yan Liu 3 (10.7%)
+ Thierry Reding 2 (7.1%)
+ Nishanth Menon 2 (7.1%)
+ Simon Glass 1 (3.6%)
+ Stephen Warren 1 (3.6%)
+ Tim Harvey 1 (3.6%)
+ Paul Kocialkowski 1 (3.6%)
+ Przemyslaw Marczak 1 (3.6%)
+ Stefan Agner 1 (3.6%)
+ Andrew Bradford 1 (3.6%)
+ Simon Guinot 1 (3.6%)
+ Vitaly Andrianov 1 (3.6%)
+ Sinan Akman 1 (3.6%)
+ Uwe Scheffler 1 (3.6%)
+ Kevin Smith 1 (3.6%)
+ Otavio Salvador 1 (3.6%)
+ Murali Karicheri 1 (3.6%)
+ Franklin S Cooper Jr 1 (3.6%)
+ Nicolas Chauvet 1 (3.6%)
+ Mark Mckeown 1 (3.6%)
+ Jeffery Zhu 1 (3.6%)
+ Sachin Surendran 1 (3.6%)
+ Fei Wang 1 (3.6%)
+ Siva Durga Prasad Paladugu 1 (3.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 28)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 7 (25.0%)
+ Simon Glass 3 (10.7%)
+ Stephen Warren 3 (10.7%)
+ Fabio Estevam 3 (10.7%)
+ Stefan Roese 2 (7.1%)
+ Thierry Reding 1 (3.6%)
+ Nishanth Menon 1 (3.6%)
+ Bin Meng 1 (3.6%)
+ Tom Rini 1 (3.6%)
+ Chris Packham 1 (3.6%)
+ Michal Simek 1 (3.6%)
+ Måns Rullgård 1 (3.6%)
+ Soeren Moch 1 (3.6%)
+ York Sun 1 (3.6%)
+ Mugunthan V N 1 (3.6%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 427 (20.6%)
+ Google, Inc. 382 (18.5%)
+ DENX Software Engineering 354 (17.1%)
+ Freescale 302 (14.6%)
+ Socionext Inc. 117 (5.7%)
+ Red Hat 92 (4.4%)
+ NVidia 75 (3.6%)
+ Texas Instruments 68 (3.3%)
+ AMD 37 (1.8%)
+ CompuLab 32 (1.5%)
+ Konsulko Group 30 (1.4%)
+ Linaro 27 (1.3%)
+ Toradex 26 (1.3%)
+ O.S. Systems 17 (0.8%)
+ Xilinx 13 (0.6%)
+ Atmel 12 (0.6%)
+ ST Microelectronics 10 (0.5%)
+ Collabora Ltd. 9 (0.4%)
+ Samsung 8 (0.4%)
+ Broadcom 6 (0.3%)
+ Wind River 6 (0.3%)
+ Boundary Devices 4 (0.2%)
+ ARM 3 (0.1%)
+ Free Electrons 2 (0.1%)
+ Intel 2 (0.1%)
+ Openedev 2 (0.1%)
+ Citrix 1 (0.0%)
+ Debian.org 1 (0.0%)
+ ESD Electronics 1 (0.0%)
+ Keymile 1 (0.0%)
+ linutronix 1 (0.0%)
+ Novell 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Google, Inc. 68721 (28.0%)
+ DENX Software Engineering 53855 (21.9%)
+ (Unknown) 43396 (17.7%)
+ Freescale 26602 (10.8%)
+ Socionext Inc. 23310 (9.5%)
+ NVidia 7344 (3.0%)
+ Konsulko Group 7247 (3.0%)
+ Red Hat 4918 (2.0%)
+ Linaro 2644 (1.1%)
+ Texas Instruments 2103 (0.9%)
+ AMD 1391 (0.6%)
+ CompuLab 1264 (0.5%)
+ O.S. Systems 802 (0.3%)
+ Toradex 393 (0.2%)
+ Atmel 317 (0.1%)
+ Xilinx 221 (0.1%)
+ ARM 218 (0.1%)
+ Broadcom 212 (0.1%)
+ ST Microelectronics 164 (0.1%)
+ Collabora Ltd. 89 (0.0%)
+ Keymile 89 (0.0%)
+ Boundary Devices 66 (0.0%)
+ Free Electrons 59 (0.0%)
+ Samsung 49 (0.0%)
+ Wind River 31 (0.0%)
+ Intel 22 (0.0%)
+ Citrix 21 (0.0%)
+ Openedev 9 (0.0%)
+ Debian.org 5 (0.0%)
+ Novell 5 (0.0%)
+ ESD Electronics 2 (0.0%)
+ linutronix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 328)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Freescale 85 (25.9%)
+ NVidia 76 (23.2%)
+ (Unknown) 31 (9.5%)
+ Red Hat 25 (7.6%)
+ Google, Inc. 23 (7.0%)
+ Xilinx 20 (6.1%)
+ Konsulko Group 14 (4.3%)
+ Samsung 10 (3.0%)
+ Toradex 9 (2.7%)
+ Texas Instruments 7 (2.1%)
+ Broadcom 5 (1.5%)
+ Novell 5 (1.5%)
+ IBM 4 (1.2%)
+ Nobuhiro Iwamatsu 4 (1.2%)
+ DENX Software Engineering 3 (0.9%)
+ Collabora Ltd. 3 (0.9%)
+ CompuLab 1 (0.3%)
+ Atmel 1 (0.3%)
+ National Instruments 1 (0.3%)
+ Siemens 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 185)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 83 (44.9%)
+ Freescale 40 (21.6%)
+ Texas Instruments 9 (4.9%)
+ DENX Software Engineering 6 (3.2%)
+ NVidia 4 (2.2%)
+ Samsung 3 (1.6%)
+ Toradex 3 (1.6%)
+ CompuLab 3 (1.6%)
+ Linaro 3 (1.6%)
+ Boundary Devices 3 (1.6%)
+ Google, Inc. 2 (1.1%)
+ Broadcom 2 (1.1%)
+ Atmel 2 (1.1%)
+ ARM 2 (1.1%)
+ Free Electrons 2 (1.1%)
+ Intel 2 (1.1%)
+ Red Hat 1 (0.5%)
+ Xilinx 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ Novell 1 (0.5%)
+ Collabora Ltd. 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ AMD 1 (0.5%)
+ O.S. Systems 1 (0.5%)
+ ST Microelectronics 1 (0.5%)
+ Keymile 1 (0.5%)
+ Wind River 1 (0.5%)
+ Citrix 1 (0.5%)
+ Openedev 1 (0.5%)
+ Debian.org 1 (0.5%)
+ ESD Electronics 1 (0.5%)
+ linutronix 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.01.rst b/doc/develop/statistics/u-boot-stats-v2016.01.rst
new file mode 100644
index 0000000..8a7bcb7
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.01.rst
@@ -0,0 +1,735 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.01
+======================================
+
+* Processed 1513 csets from 149 developers
+
+* 33 employers found
+
+* A total of 94614 lines added, 32531 removed (delta 62083)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 137 (9.1%)
+ Thomas Chou 128 (8.5%)
+ Bin Meng 103 (6.8%)
+ Marek Vasut 94 (6.2%)
+ Michal Simek 75 (5.0%)
+ Jagan Teki 71 (4.7%)
+ Peng Fan 42 (2.8%)
+ Fabio Estevam 41 (2.7%)
+ Stephen Warren 34 (2.2%)
+ Chin Liang See 33 (2.2%)
+ Tom Rini 31 (2.0%)
+ Hans de Goede 31 (2.0%)
+ Mugunthan V N 27 (1.8%)
+ Masahiro Yamada 26 (1.7%)
+ Stefan Roese 26 (1.7%)
+ huang lin 23 (1.5%)
+ Francois Retief 23 (1.5%)
+ Prabhakar Kushwaha 21 (1.4%)
+ Maxime Ripard 21 (1.4%)
+ Dirk Eibach 19 (1.3%)
+ Przemyslaw Marczak 18 (1.2%)
+ Nikita Kiryanov 18 (1.2%)
+ York Sun 17 (1.1%)
+ Stefan Brüns 14 (0.9%)
+ Lokesh Vutla 14 (0.9%)
+ Sjoerd Simons 13 (0.9%)
+ Gong Qianyu 12 (0.8%)
+ Shaohui Xie 12 (0.8%)
+ Wenyou Yang 11 (0.7%)
+ Vitaly Andrianov 11 (0.7%)
+ Heiko Schocher 10 (0.7%)
+ Aneesh Bansal 10 (0.7%)
+ Mingkai Hu 10 (0.7%)
+ Daniel Hellstrom 10 (0.7%)
+ Alison Wang 10 (0.7%)
+ Valentin Longchamp 10 (0.7%)
+ Adrian Alonso 10 (0.7%)
+ Holger Brunck 9 (0.6%)
+ Otavio Salvador 8 (0.5%)
+ Alexey Brodkin 8 (0.5%)
+ Dinh Nguyen 8 (0.5%)
+ Nathan Rossi 8 (0.5%)
+ vishnupatekar 8 (0.5%)
+ Quentin Armitage 7 (0.5%)
+ Paul Kocialkowski 7 (0.5%)
+ Lukasz Majewski 6 (0.4%)
+ Yao Yuan 6 (0.4%)
+ Nishanth Menon 6 (0.4%)
+ Siva Durga Prasad Paladugu 6 (0.4%)
+ Minkyu Kang 6 (0.4%)
+ Luka Perkov 6 (0.4%)
+ Vignesh R 6 (0.4%)
+ Ryan Harkin 5 (0.3%)
+ Vagrant Cascadian 5 (0.3%)
+ Jeffy Chen 5 (0.3%)
+ Albert Aribaud 5 (0.3%)
+ Yangbo Lu 5 (0.3%)
+ Andy Fleming 4 (0.3%)
+ Robert P. J. Day 4 (0.3%)
+ Måns Rullgård 4 (0.3%)
+ Shengzhou Liu 4 (0.3%)
+ Siarhei Siamashka 4 (0.3%)
+ Hou Zhiqiang 4 (0.3%)
+ Patrick Delaunay 4 (0.3%)
+ Daniel Schwierzeck 4 (0.3%)
+ Kevin Smith 4 (0.3%)
+ Vadzim Dambrouski 4 (0.3%)
+ Christophe Ricard 4 (0.3%)
+ Stefano Babic 3 (0.2%)
+ Andre Przywara 3 (0.2%)
+ Miao Yan 3 (0.2%)
+ Eric Nelson 3 (0.2%)
+ Michael Heimpold 3 (0.2%)
+ shengjiangwu 3 (0.2%)
+ Tang Yuantian 3 (0.2%)
+ Jens Kuske 3 (0.2%)
+ Rajesh Bhagat 3 (0.2%)
+ Reinhard Pfau 3 (0.2%)
+ Alexandre Courbot 3 (0.2%)
+ Josh Wu 3 (0.2%)
+ George McCollister 3 (0.2%)
+ Robert Nelson 2 (0.1%)
+ Ye.Li 2 (0.1%)
+ Karsten Merker 2 (0.1%)
+ Egli, Samuel 2 (0.1%)
+ Kamil Lulko 2 (0.1%)
+ Olliver Schinagl 2 (0.1%)
+ Felipe Balbi 2 (0.1%)
+ Wolfgang Denk 2 (0.1%)
+ Ariel D'Alessandro 2 (0.1%)
+ Cooper Jr., Franklin 2 (0.1%)
+ Edgar E. Iglesias 2 (0.1%)
+ Tobias Müller 2 (0.1%)
+ Hannes Petermaier 2 (0.1%)
+ Zhao Qiang 2 (0.1%)
+ Scott Wood 2 (0.1%)
+ Bernhard Nortmann 2 (0.1%)
+ David Müller (ELSOFT AG) 1 (0.1%)
+ Rasmus Villemoes 1 (0.1%)
+ Joe Hershberger 1 (0.1%)
+ Andrey Skvortsov 1 (0.1%)
+ Ladislav Michl 1 (0.1%)
+ Michael Schanz 1 (0.1%)
+ Maximilian Schwerin 1 (0.1%)
+ Aleksei Mamlin 1 (0.1%)
+ Stuart Yoder 1 (0.1%)
+ Alexander Stein 1 (0.1%)
+ Pratiyush Mohan Srivastava 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Jeroen Hofstee 1 (0.1%)
+ Philippe De Swert 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Andreas Bießmann 1 (0.1%)
+ Philipp Rosenberger 1 (0.1%)
+ Gerald Kerma 1 (0.1%)
+ Sanchayan Maity 1 (0.1%)
+ Thomas Fitzsimmons 1 (0.1%)
+ Marcel Ziswiler 1 (0.1%)
+ Jelle de Jong 1 (0.1%)
+ Stephane Ayotte 1 (0.1%)
+ Christoph Dietrich 1 (0.1%)
+ Bagavathiannan Palanisamy 1 (0.1%)
+ Dmitry Lifshitz 1 (0.1%)
+ Kipisz, Steven 1 (0.1%)
+ Vincent Stehlé 1 (0.1%)
+ Guillaume REMBERT 1 (0.1%)
+ Vincent BENOIT 1 (0.1%)
+ Matwey V. Kornilov 1 (0.1%)
+ Cheng Gu 1 (0.1%)
+ Tom Warren 1 (0.1%)
+ Tzu-Jung Lee 1 (0.1%)
+ Zhenhua Luo 1 (0.1%)
+ Daniel Gorsulowski 1 (0.1%)
+ Codrin Ciubotariu 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Damien Riegel 1 (0.1%)
+ Sylvain Rochet 1 (0.1%)
+ Jacob Stiffler 1 (0.1%)
+ Sylvain Lemieux 1 (0.1%)
+ Horia Geantă 1 (0.1%)
+ Albert ARIBAUD (3ADEV) 1 (0.1%)
+ Roy Spliet 1 (0.1%)
+ Pierre Aubert 1 (0.1%)
+ Thomas Huth 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ David Batzle 1 (0.1%)
+ Anthony Felice 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nathan Rossi 12429 (11.3%)
+ Thomas Chou 7155 (6.5%)
+ Simon Glass 5678 (5.2%)
+ Stefan Roese 5459 (5.0%)
+ Mugunthan V N 5433 (4.9%)
+ Tom Rini 5187 (4.7%)
+ huang lin 4015 (3.7%)
+ Bin Meng 3746 (3.4%)
+ Marek Vasut 3693 (3.4%)
+ Mingkai Hu 3316 (3.0%)
+ Lokesh Vutla 3249 (3.0%)
+ Daniel Hellstrom 3133 (2.8%)
+ Hans de Goede 2853 (2.6%)
+ Prabhakar Kushwaha 2791 (2.5%)
+ Dirk Eibach 2590 (2.4%)
+ Heiko Schocher 2582 (2.3%)
+ Shaohui Xie 2048 (1.9%)
+ Przemyslaw Marczak 1947 (1.8%)
+ Jagan Teki 1931 (1.8%)
+ Andy Fleming 1847 (1.7%)
+ Michal Simek 1817 (1.7%)
+ Francois Retief 1740 (1.6%)
+ vishnupatekar 1692 (1.5%)
+ Masahiro Yamada 1616 (1.5%)
+ Stephen Warren 1599 (1.5%)
+ Nishanth Menon 1508 (1.4%)
+ Kevin Smith 1455 (1.3%)
+ Wenyou Yang 1415 (1.3%)
+ Maxime Ripard 1151 (1.0%)
+ Peng Fan 1087 (1.0%)
+ Fabio Estevam 938 (0.9%)
+ Gong Qianyu 779 (0.7%)
+ Vitaly Andrianov 778 (0.7%)
+ York Sun 708 (0.6%)
+ Albert Aribaud 705 (0.6%)
+ Nikita Kiryanov 690 (0.6%)
+ Jens Kuske 685 (0.6%)
+ Otavio Salvador 655 (0.6%)
+ Tom Warren 425 (0.4%)
+ Gerald Kerma 376 (0.3%)
+ Jelle de Jong 319 (0.3%)
+ Sjoerd Simons 312 (0.3%)
+ Wolfgang Denk 310 (0.3%)
+ Tang Yuantian 265 (0.2%)
+ Alexey Brodkin 253 (0.2%)
+ Stefan Brüns 248 (0.2%)
+ Lukasz Majewski 248 (0.2%)
+ Aneesh Bansal 244 (0.2%)
+ Edgar E. Iglesias 231 (0.2%)
+ Jeffy Chen 221 (0.2%)
+ Patrick Delaunay 221 (0.2%)
+ Quentin Armitage 199 (0.2%)
+ Angelo Dureghello 176 (0.2%)
+ Siva Durga Prasad Paladugu 174 (0.2%)
+ Chin Liang See 172 (0.2%)
+ Christophe Ricard 171 (0.2%)
+ Paul Kocialkowski 167 (0.2%)
+ Måns Rullgård 165 (0.2%)
+ Kamil Lulko 160 (0.1%)
+ Vagrant Cascadian 159 (0.1%)
+ Yao Yuan 158 (0.1%)
+ Hou Zhiqiang 157 (0.1%)
+ Alison Wang 140 (0.1%)
+ Robert P. J. Day 113 (0.1%)
+ Daniel Schwierzeck 111 (0.1%)
+ Valentin Longchamp 109 (0.1%)
+ Ryan Harkin 90 (0.1%)
+ Vincent BENOIT 90 (0.1%)
+ George McCollister 87 (0.1%)
+ Adrian Alonso 81 (0.1%)
+ Dinh Nguyen 81 (0.1%)
+ Michael Heimpold 76 (0.1%)
+ Holger Brunck 73 (0.1%)
+ Shengzhou Liu 69 (0.1%)
+ Bernhard Nortmann 67 (0.1%)
+ Stefano Babic 64 (0.1%)
+ Tobias Müller 58 (0.1%)
+ Yangbo Lu 53 (0.0%)
+ Siarhei Siamashka 49 (0.0%)
+ Alexandre Courbot 49 (0.0%)
+ Vignesh R 43 (0.0%)
+ Roger Quadros 43 (0.0%)
+ Christoph Dietrich 41 (0.0%)
+ Reinhard Pfau 37 (0.0%)
+ Daniel Gorsulowski 36 (0.0%)
+ Albert ARIBAUD (3ADEV) 36 (0.0%)
+ Zhao Qiang 35 (0.0%)
+ Luka Perkov 34 (0.0%)
+ shengjiangwu 34 (0.0%)
+ Sanchayan Maity 32 (0.0%)
+ Minkyu Kang 31 (0.0%)
+ Sylvain Rochet 29 (0.0%)
+ Eric Nelson 27 (0.0%)
+ Andreas Bießmann 27 (0.0%)
+ Tzu-Jung Lee 27 (0.0%)
+ Hannes Petermaier 24 (0.0%)
+ Rajesh Bhagat 20 (0.0%)
+ Roy Spliet 19 (0.0%)
+ Philippe De Swert 18 (0.0%)
+ Robert Nelson 17 (0.0%)
+ Egli, Samuel 15 (0.0%)
+ Ye.Li 14 (0.0%)
+ Matwey V. Kornilov 14 (0.0%)
+ Guillaume GARDET 14 (0.0%)
+ Stuart Yoder 13 (0.0%)
+ Anatolij Gustschin 13 (0.0%)
+ Stephane Ayotte 13 (0.0%)
+ Kipisz, Steven 13 (0.0%)
+ Josh Wu 11 (0.0%)
+ Scott Wood 11 (0.0%)
+ Sylvain Lemieux 11 (0.0%)
+ Karsten Merker 10 (0.0%)
+ Ariel D'Alessandro 10 (0.0%)
+ Vadzim Dambrouski 9 (0.0%)
+ Olliver Schinagl 9 (0.0%)
+ Dmitry Lifshitz 9 (0.0%)
+ Maximilian Schwerin 8 (0.0%)
+ Cooper Jr., Franklin 6 (0.0%)
+ Andre Przywara 5 (0.0%)
+ Miao Yan 5 (0.0%)
+ Joe Hershberger 5 (0.0%)
+ Alexander Stein 5 (0.0%)
+ Thomas Fitzsimmons 5 (0.0%)
+ Thomas Huth 5 (0.0%)
+ Zhenhua Luo 4 (0.0%)
+ Horia Geantă 4 (0.0%)
+ Felipe Balbi 3 (0.0%)
+ Vincent Stehlé 3 (0.0%)
+ Codrin Ciubotariu 3 (0.0%)
+ Joakim Tjernlund 3 (0.0%)
+ Rasmus Villemoes 2 (0.0%)
+ Andrey Skvortsov 2 (0.0%)
+ Pratiyush Mohan Srivastava 2 (0.0%)
+ Jeroen Hofstee 2 (0.0%)
+ Bagavathiannan Palanisamy 2 (0.0%)
+ Guillaume REMBERT 2 (0.0%)
+ Cheng Gu 2 (0.0%)
+ Damien Riegel 2 (0.0%)
+ Jacob Stiffler 2 (0.0%)
+ Pierre Aubert 2 (0.0%)
+ David Batzle 2 (0.0%)
+ David Müller (ELSOFT AG) 1 (0.0%)
+ Ladislav Michl 1 (0.0%)
+ Michael Schanz 1 (0.0%)
+ Aleksei Mamlin 1 (0.0%)
+ Peter Robinson 1 (0.0%)
+ Philipp Rosenberger 1 (0.0%)
+ Marcel Ziswiler 1 (0.0%)
+ Anthony Felice 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 4784 (14.7%)
+ Kevin Smith 1380 (4.2%)
+ Francois Retief 482 (1.5%)
+ Masahiro Yamada 374 (1.1%)
+ Wolfgang Denk 302 (0.9%)
+ Vagrant Cascadian 63 (0.2%)
+ Christophe Ricard 53 (0.2%)
+ Robert P. J. Day 44 (0.1%)
+ Quentin Armitage 30 (0.1%)
+ Luka Perkov 21 (0.1%)
+ Alexandre Courbot 18 (0.1%)
+ Andreas Bießmann 18 (0.1%)
+ Rajesh Bhagat 14 (0.0%)
+ Stuart Yoder 13 (0.0%)
+ Anatolij Gustschin 13 (0.0%)
+ Matwey V. Kornilov 12 (0.0%)
+ Paul Kocialkowski 9 (0.0%)
+ Daniel Schwierzeck 7 (0.0%)
+ Olliver Schinagl 6 (0.0%)
+ Josh Wu 5 (0.0%)
+ Minkyu Kang 4 (0.0%)
+ Zhenhua Luo 4 (0.0%)
+ Holger Brunck 3 (0.0%)
+ Ariel D'Alessandro 3 (0.0%)
+ Hannes Petermaier 2 (0.0%)
+ Andre Przywara 2 (0.0%)
+ Joe Hershberger 1 (0.0%)
+ Ladislav Michl 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 226)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Hans de Goede 29 (12.8%)
+ Michal Simek 26 (11.5%)
+ Tom Warren 19 (8.4%)
+ Minkyu Kang 17 (7.5%)
+ Gong Qianyu 16 (7.1%)
+ Lokesh Vutla 14 (6.2%)
+ Valentin Longchamp 13 (5.8%)
+ Simon Glass 8 (3.5%)
+ Mingkai Hu 8 (3.5%)
+ Tom Rini 7 (3.1%)
+ Hou Zhiqiang 7 (3.1%)
+ Stefan Roese 7 (3.1%)
+ Mugunthan V N 6 (2.7%)
+ Thomas Chou 5 (2.2%)
+ Marek Vasut 4 (1.8%)
+ Andreas Bießmann 3 (1.3%)
+ Jagan Teki 3 (1.3%)
+ Pratiyush Mohan Srivastava 2 (0.9%)
+ Sriram Dash 2 (0.9%)
+ Chris Kilgour 2 (0.9%)
+ Frank Li 2 (0.9%)
+ Li Yang 2 (0.9%)
+ York Sun 2 (0.9%)
+ Shaohui Xie 2 (0.9%)
+ Luka Perkov 1 (0.4%)
+ Ruchika Gupta 1 (0.4%)
+ Ramneek Mehresh 1 (0.4%)
+ Bogdan Hamciuc 1 (0.4%)
+ Tony Dinh 1 (0.4%)
+ Liviu Dudau 1 (0.4%)
+ Ezequiel Garcia 1 (0.4%)
+ Andreas Huber 1 (0.4%)
+ Schuyler Patton 1 (0.4%)
+ Yen Lin 1 (0.4%)
+ Sonic Zhang 1 (0.4%)
+ Lawish Deshmukh 1 (0.4%)
+ Christoph Dietrich 1 (0.4%)
+ Tobias Müller 1 (0.4%)
+ Stephen Warren 1 (0.4%)
+ Peng Fan 1 (0.4%)
+ Vitaly Andrianov 1 (0.4%)
+ Bin Meng 1 (0.4%)
+ Dirk Eibach 1 (0.4%)
+ Prabhakar Kushwaha 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 700)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 119 (17.0%)
+ Tom Rini 117 (16.7%)
+ York Sun 101 (14.4%)
+ Bin Meng 98 (14.0%)
+ Jagan Teki 49 (7.0%)
+ Heiko Schocher 43 (6.1%)
+ Marek Vasut 41 (5.9%)
+ Hans de Goede 28 (4.0%)
+ Andreas Bießmann 16 (2.3%)
+ Stefano Babic 13 (1.9%)
+ Chin Liang See 12 (1.7%)
+ Fabio Estevam 12 (1.7%)
+ Stefan Roese 7 (1.0%)
+ Lokesh Vutla 4 (0.6%)
+ Mugunthan V N 4 (0.6%)
+ Joe Hershberger 4 (0.6%)
+ Linus Walleij 4 (0.6%)
+ Eric Nelson 3 (0.4%)
+ Przemyslaw Marczak 3 (0.4%)
+ Stephen Warren 2 (0.3%)
+ Peng Fan 2 (0.3%)
+ Thomas Chou 1 (0.1%)
+ Masahiro Yamada 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Alexander Graf 1 (0.1%)
+ Hector Palacios 1 (0.1%)
+ James Doublesin 1 (0.1%)
+ Roger Meier 1 (0.1%)
+ Igor Grinberg 1 (0.1%)
+ Zhengxiong Jin 1 (0.1%)
+ Thierry Reding 1 (0.1%)
+ Ley Foon Tan 1 (0.1%)
+ Stefan Brüns 1 (0.1%)
+ Ryan Harkin 1 (0.1%)
+ Vignesh R 1 (0.1%)
+ Sjoerd Simons 1 (0.1%)
+ Alexey Brodkin 1 (0.1%)
+ Albert Aribaud 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 98)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 17 (17.3%)
+ Bin Meng 16 (16.3%)
+ Simon Glass 10 (10.2%)
+ Stephen Warren 9 (9.2%)
+ Anand Moon 7 (7.1%)
+ Michal Simek 5 (5.1%)
+ Masahiro Yamada 3 (3.1%)
+ Lukasz Majewski 3 (3.1%)
+ Hans de Goede 2 (2.0%)
+ Fabio Estevam 2 (2.0%)
+ Ryan Harkin 2 (2.0%)
+ Vagrant Cascadian 2 (2.0%)
+ Jian Luo 2 (2.0%)
+ Tom Rini 1 (1.0%)
+ York Sun 1 (1.0%)
+ Marek Vasut 1 (1.0%)
+ Stefano Babic 1 (1.0%)
+ Lokesh Vutla 1 (1.0%)
+ Mugunthan V N 1 (1.0%)
+ Eric Nelson 1 (1.0%)
+ Thomas Chou 1 (1.0%)
+ Hector Palacios 1 (1.0%)
+ Ezequiel Garcia 1 (1.0%)
+ Kevin Smith 1 (1.0%)
+ Ariel D'Alessandro 1 (1.0%)
+ Hannes Petermaier 1 (1.0%)
+ Jaehoon Chung 1 (1.0%)
+ Pavel Machek 1 (1.0%)
+ Chen-Yu Tsai 1 (1.0%)
+ Moritz Fischer 1 (1.0%)
+ Siarhei Siamashka 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 98)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 25 (25.5%)
+ Simon Glass 25 (25.5%)
+ Przemyslaw Marczak 11 (11.2%)
+ Bin Meng 10 (10.2%)
+ Thomas Chou 4 (4.1%)
+ Stephen Warren 2 (2.0%)
+ Marek Vasut 2 (2.0%)
+ Eric Nelson 2 (2.0%)
+ Stefan Brüns 2 (2.0%)
+ Siva Durga Prasad Paladugu 2 (2.0%)
+ Michal Simek 1 (1.0%)
+ Hans de Goede 1 (1.0%)
+ Fabio Estevam 1 (1.0%)
+ Ryan Harkin 1 (1.0%)
+ Vagrant Cascadian 1 (1.0%)
+ Tom Rini 1 (1.0%)
+ Stefano Babic 1 (1.0%)
+ Heiko Schocher 1 (1.0%)
+ Stefan Roese 1 (1.0%)
+ Andre Przywara 1 (1.0%)
+ Roger Quadros 1 (1.0%)
+ Jens Kuske 1 (1.0%)
+ Nishanth Menon 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 4 (14.8%)
+ Tom Rini 3 (11.1%)
+ Albert Aribaud 3 (11.1%)
+ Thomas Chou 1 (3.7%)
+ Fabio Estevam 1 (3.7%)
+ Vagrant Cascadian 1 (3.7%)
+ Jian Luo 1 (3.7%)
+ Ezequiel Garcia 1 (3.7%)
+ Ariel D'Alessandro 1 (3.7%)
+ Pavel Machek 1 (3.7%)
+ Felipe Balbi 1 (3.7%)
+ Jon Nettleton 1 (3.7%)
+ Francisco Aguerre 1 (3.7%)
+ Jason Kridner 1 (3.7%)
+ Kevin Hilman 1 (3.7%)
+ Zhichun Hua 1 (3.7%)
+ Ivan Mercier 1 (3.7%)
+ Matthijs van Duin 1 (3.7%)
+ Robert Nelson 1 (3.7%)
+ Shengzhou Liu 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 7 (25.9%)
+ Simon Glass 4 (14.8%)
+ Thomas Chou 3 (11.1%)
+ Fabio Estevam 3 (11.1%)
+ Bin Meng 2 (7.4%)
+ Michal Simek 2 (7.4%)
+ Robert Nelson 1 (3.7%)
+ Nishanth Menon 1 (3.7%)
+ York Sun 1 (3.7%)
+ Alexandre Courbot 1 (3.7%)
+ Marcel Ziswiler 1 (3.7%)
+ Alison Wang 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 469 (31.0%)
+ NXP 220 (14.5%)
+ Google, Inc. 137 (9.1%)
+ DENX Software Engineering 136 (9.0%)
+ AMD 75 (5.0%)
+ Openedev 71 (4.7%)
+ Texas Instruments 71 (4.7%)
+ Red Hat 31 (2.0%)
+ Konsulko Group 31 (2.0%)
+ NVidia 31 (2.0%)
+ Rockchip 28 (1.9%)
+ Socionext Inc. 26 (1.7%)
+ Samsung 25 (1.7%)
+ Keymile 23 (1.5%)
+ Guntermann & Drunck 22 (1.5%)
+ Free Electrons 21 (1.4%)
+ CompuLab 19 (1.3%)
+ Atmel 14 (0.9%)
+ Collabora Ltd. 13 (0.9%)
+ Gaisler Research 10 (0.7%)
+ O.S. Systems 8 (0.5%)
+ Xilinx 8 (0.5%)
+ Debian.org 6 (0.4%)
+ Linaro 5 (0.3%)
+ ARM 3 (0.2%)
+ Siemens 2 (0.1%)
+ Toradex 2 (0.1%)
+ Cisco 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ linutronix 1 (0.1%)
+ Marvell 1 (0.1%)
+ National Instruments 1 (0.1%)
+ Transmode Systems 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 35693 (32.5%)
+ NXP 12926 (11.8%)
+ DENX Software Engineering 12121 (11.0%)
+ Texas Instruments 11078 (10.1%)
+ Google, Inc. 5678 (5.2%)
+ Konsulko Group 5187 (4.7%)
+ Rockchip 4236 (3.9%)
+ Gaisler Research 3133 (2.8%)
+ Red Hat 2853 (2.6%)
+ Guntermann & Drunck 2627 (2.4%)
+ Samsung 1980 (1.8%)
+ Openedev 1931 (1.8%)
+ NVidia 1835 (1.7%)
+ AMD 1817 (1.7%)
+ Socionext Inc. 1616 (1.5%)
+ Atmel 1426 (1.3%)
+ Free Electrons 1151 (1.0%)
+ CompuLab 699 (0.6%)
+ O.S. Systems 655 (0.6%)
+ Xilinx 405 (0.4%)
+ Collabora Ltd. 312 (0.3%)
+ Keymile 283 (0.3%)
+ Debian.org 147 (0.1%)
+ Linaro 90 (0.1%)
+ ESD Electronics 36 (0.0%)
+ Toradex 33 (0.0%)
+ Siemens 15 (0.0%)
+ ARM 5 (0.0%)
+ Cisco 5 (0.0%)
+ National Instruments 5 (0.0%)
+ Transmode Systems 3 (0.0%)
+ Marvell 2 (0.0%)
+ linutronix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 226)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NXP 49 (21.7%)
+ Red Hat 29 (12.8%)
+ Xilinx 26 (11.5%)
+ Texas Instruments 22 (9.7%)
+ NVidia 20 (8.8%)
+ Samsung 17 (7.5%)
+ Keymile 16 (7.1%)
+ (Unknown) 15 (6.6%)
+ DENX Software Engineering 11 (4.9%)
+ Google, Inc. 8 (3.5%)
+ Konsulko Group 7 (3.1%)
+ Openedev 3 (1.3%)
+ Guntermann & Drunck 1 (0.4%)
+ ARM 1 (0.4%)
+ Analog Devices 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 153)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 68 (44.4%)
+ NXP 25 (16.3%)
+ Texas Instruments 10 (6.5%)
+ DENX Software Engineering 6 (3.9%)
+ Keymile 5 (3.3%)
+ NVidia 3 (2.0%)
+ Samsung 3 (2.0%)
+ Xilinx 2 (1.3%)
+ Guntermann & Drunck 2 (1.3%)
+ Rockchip 2 (1.3%)
+ Atmel 2 (1.3%)
+ CompuLab 2 (1.3%)
+ Debian.org 2 (1.3%)
+ Toradex 2 (1.3%)
+ Red Hat 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Openedev 1 (0.7%)
+ ARM 1 (0.7%)
+ Gaisler Research 1 (0.7%)
+ AMD 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ Free Electrons 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ Collabora Ltd. 1 (0.7%)
+ Linaro 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ Siemens 1 (0.7%)
+ Cisco 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Transmode Systems 1 (0.7%)
+ Marvell 1 (0.7%)
+ linutronix 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.03.rst b/doc/develop/statistics/u-boot-stats-v2016.03.rst
new file mode 100644
index 0000000..6fe2219
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.03.rst
@@ -0,0 +1,623 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.03
+======================================
+
+* Processed 1375 csets from 126 developers
+
+* 26 employers found
+
+* A total of 83087 lines added, 24746 removed (delta 58341)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 309 (22.5%)
+ Masahiro Yamada 113 (8.2%)
+ Bin Meng 95 (6.9%)
+ Michal Simek 95 (6.9%)
+ Stephen Warren 81 (5.9%)
+ Mugunthan V N 50 (3.6%)
+ Stefan Roese 45 (3.3%)
+ Peng Fan 33 (2.4%)
+ Tom Rini 29 (2.1%)
+ Jagan Teki 25 (1.8%)
+ Marek Vasut 24 (1.7%)
+ Ricardo Ribalda 23 (1.7%)
+ Wenyou Yang 19 (1.4%)
+ Daniel Schwierzeck 18 (1.3%)
+ Purna Chandra Mandal 14 (1.0%)
+ Prabhakar Kushwaha 14 (1.0%)
+ Siva Durga Prasad Paladugu 13 (0.9%)
+ Fabio Estevam 12 (0.9%)
+ Aneesh Bansal 12 (0.9%)
+ Miao Yan 12 (0.9%)
+ Nikita Kiryanov 11 (0.8%)
+ Adam Ford 11 (0.8%)
+ Bhuvanchandra DV 10 (0.7%)
+ Sergey Temerkhanov 10 (0.7%)
+ Phil Sutter 10 (0.7%)
+ David Müller (ELSOFT AG) 9 (0.7%)
+ Gong Qianyu 9 (0.7%)
+ Chen-Yu Tsai 9 (0.7%)
+ Qianyu Gong 7 (0.5%)
+ Christophe Ricard 7 (0.5%)
+ Ye.Li 7 (0.5%)
+ Andreas Fenkart 7 (0.5%)
+ Ladislav Michl 7 (0.5%)
+ Stefan Brüns 7 (0.5%)
+ Lubomir Rintel 6 (0.4%)
+ Vikas Manocha 6 (0.4%)
+ Hans de Goede 6 (0.4%)
+ Alexey Brodkin 6 (0.4%)
+ Mateusz Kulikowski 6 (0.4%)
+ Jeffy Chen 5 (0.4%)
+ Dinh Nguyen 5 (0.4%)
+ Alexandre Messier 5 (0.4%)
+ Hannes Schmelzer 5 (0.4%)
+ Andreas Bießmann 5 (0.4%)
+ Nathan Rossi 5 (0.4%)
+ Josh Wu 5 (0.4%)
+ Shaohui Xie 5 (0.4%)
+ Codrin Ciubotariu 5 (0.4%)
+ Vladimir Zapolskiy 5 (0.4%)
+ Paul Kocialkowski 4 (0.3%)
+ Alison Wang 4 (0.3%)
+ Albert ARIBAUD 4 (0.3%)
+ Zhao Qiang 4 (0.3%)
+ Shengzhou Liu 4 (0.3%)
+ Thomas Chou 4 (0.3%)
+ Paul Burton 4 (0.3%)
+ Vishnu Patekar 4 (0.3%)
+ Pratiyush Mohan Srivastava 4 (0.3%)
+ Derald D. Woods 3 (0.2%)
+ Soeren Moch 3 (0.2%)
+ Yangbo Lu 3 (0.2%)
+ Heiko Schocher 3 (0.2%)
+ Jelle van der Waa 3 (0.2%)
+ Julien CORJON 3 (0.2%)
+ Gregory CLEMENT 3 (0.2%)
+ Vignesh R 3 (0.2%)
+ Kevin Smith 3 (0.2%)
+ Ashish kumar 3 (0.2%)
+ Lin Huang 2 (0.1%)
+ Stanislav Galabov 2 (0.1%)
+ Sam Protsenko 2 (0.1%)
+ York Sun 2 (0.1%)
+ Steve Rae 2 (0.1%)
+ Łukasz Majewski 2 (0.1%)
+ Vishwas Srivastava 2 (0.1%)
+ Clemens Gruber 2 (0.1%)
+ Florian Fainelli 2 (0.1%)
+ Wenbin Song 2 (0.1%)
+ Michael van Slingerland 2 (0.1%)
+ Ying Zhang 2 (0.1%)
+ Sanchayan Maity 2 (0.1%)
+ Robert P. J. Day 2 (0.1%)
+ Lokesh Vutla 1 (0.1%)
+ Anand Moon 1 (0.1%)
+ Chris Zhong 1 (0.1%)
+ FUKAUMI Naoki 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Matthias Schiffer 1 (0.1%)
+ Alexander Graf 1 (0.1%)
+ Yuichiro Goto 1 (0.1%)
+ Karsten Merker 1 (0.1%)
+ William Cohen 1 (0.1%)
+ Mingkai Hu 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Ashish Kumar 1 (0.1%)
+ Jason Wu 1 (0.1%)
+ Ulises Cardenas 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Samuel Mescoff 1 (0.1%)
+ Matthias Michel 1 (0.1%)
+ Roger Meier 1 (0.1%)
+ Eddy Petrișor 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Frank Wang 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Andrei Pistirica 1 (0.1%)
+ Paul Thacker 1 (0.1%)
+ Wang Dongsheng 1 (0.1%)
+ Sascha Hauer 1 (0.1%)
+ Stefan Agner 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Punnaiah Choudary Kalluri 1 (0.1%)
+ Ed Swarthout 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Andreas Neubacher 1 (0.1%)
+ Ted Chen 1 (0.1%)
+ rick 1 (0.1%)
+ Oscar Curero 1 (0.1%)
+ Robert Nelson 1 (0.1%)
+ Enric Balletbò i Serra 1 (0.1%)
+ Erik Tideman 1 (0.1%)
+ Dalon Westergreen 1 (0.1%)
+ Ben Whitten 1 (0.1%)
+ Tor Krill 1 (0.1%)
+ Marco Schuster 1 (0.1%)
+ Stefan Monnier 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 28854 (31.8%)
+ Masahiro Yamada 6517 (7.2%)
+ Bin Meng 6203 (6.8%)
+ Stephen Warren 5173 (5.7%)
+ Stefan Roese 3598 (4.0%)
+ Purna Chandra Mandal 3361 (3.7%)
+ Ted Chen 3081 (3.4%)
+ Daniel Schwierzeck 2441 (2.7%)
+ Tom Rini 2418 (2.7%)
+ Peng Fan 1743 (1.9%)
+ Mugunthan V N 1638 (1.8%)
+ Sergey Temerkhanov 1618 (1.8%)
+ Marek Vasut 1576 (1.7%)
+ Michal Simek 1438 (1.6%)
+ Christophe Ricard 1269 (1.4%)
+ Aneesh Bansal 1228 (1.4%)
+ Siva Durga Prasad Paladugu 1219 (1.3%)
+ Wenyou Yang 1166 (1.3%)
+ Vikas Manocha 1095 (1.2%)
+ Phil Sutter 1070 (1.2%)
+ Tor Krill 1046 (1.2%)
+ Ye.Li 1026 (1.1%)
+ Miao Yan 996 (1.1%)
+ Prabhakar Kushwaha 831 (0.9%)
+ Heiko Schocher 750 (0.8%)
+ Ricardo Ribalda 686 (0.8%)
+ Adam Ford 604 (0.7%)
+ Codrin Ciubotariu 480 (0.5%)
+ Gregory CLEMENT 442 (0.5%)
+ Paul Kocialkowski 397 (0.4%)
+ David Müller (ELSOFT AG) 341 (0.4%)
+ Andreas Fenkart 317 (0.3%)
+ Bhuvanchandra DV 287 (0.3%)
+ Nikita Kiryanov 278 (0.3%)
+ Qianyu Gong 271 (0.3%)
+ Jagan Teki 261 (0.3%)
+ Chen-Yu Tsai 243 (0.3%)
+ Stefan Brüns 225 (0.2%)
+ Paul Thacker 219 (0.2%)
+ Albert ARIBAUD 216 (0.2%)
+ Derald D. Woods 211 (0.2%)
+ Jelle van der Waa 208 (0.2%)
+ Mateusz Kulikowski 195 (0.2%)
+ Alexey Brodkin 190 (0.2%)
+ Thomas Chou 188 (0.2%)
+ Vladimir Zapolskiy 181 (0.2%)
+ Gong Qianyu 179 (0.2%)
+ Vishnu Patekar 175 (0.2%)
+ Dinh Nguyen 173 (0.2%)
+ Alison Wang 139 (0.2%)
+ Hannes Schmelzer 138 (0.2%)
+ Roger Meier 129 (0.1%)
+ Wenbin Song 108 (0.1%)
+ Shaohui Xie 99 (0.1%)
+ Jeffy Chen 95 (0.1%)
+ Paul Burton 86 (0.1%)
+ Josh Wu 81 (0.1%)
+ Zhao Qiang 81 (0.1%)
+ Ben Whitten 75 (0.1%)
+ Hans de Goede 73 (0.1%)
+ Andrei Pistirica 72 (0.1%)
+ Fabio Estevam 64 (0.1%)
+ Stanislav Galabov 61 (0.1%)
+ Lubomir Rintel 60 (0.1%)
+ Ulises Cardenas 59 (0.1%)
+ York Sun 57 (0.1%)
+ Łukasz Majewski 49 (0.1%)
+ Soeren Moch 47 (0.1%)
+ Dalon Westergreen 45 (0.0%)
+ Florian Fainelli 44 (0.0%)
+ Alexandre Messier 42 (0.0%)
+ Shengzhou Liu 41 (0.0%)
+ Ying Zhang 39 (0.0%)
+ Ladislav Michl 34 (0.0%)
+ Ashish kumar 30 (0.0%)
+ Nathan Rossi 29 (0.0%)
+ Vignesh R 29 (0.0%)
+ Sam Protsenko 26 (0.0%)
+ Robert P. J. Day 26 (0.0%)
+ Eddy Petrișor 26 (0.0%)
+ Steve Rae 25 (0.0%)
+ Michael van Slingerland 25 (0.0%)
+ Julien CORJON 24 (0.0%)
+ Andreas Neubacher 24 (0.0%)
+ Stefan Monnier 21 (0.0%)
+ Mingkai Hu 20 (0.0%)
+ Andreas Bießmann 18 (0.0%)
+ Ruchika Gupta 18 (0.0%)
+ Anatolij Gustschin 16 (0.0%)
+ rick 16 (0.0%)
+ Sanchayan Maity 15 (0.0%)
+ Matthias Michel 14 (0.0%)
+ Wang Dongsheng 14 (0.0%)
+ Yangbo Lu 13 (0.0%)
+ Clemens Gruber 13 (0.0%)
+ Samuel Mescoff 13 (0.0%)
+ Kevin Smith 12 (0.0%)
+ Robert Nelson 12 (0.0%)
+ Pratiyush Mohan Srivastava 11 (0.0%)
+ Erik Tideman 10 (0.0%)
+ Stefan Agner 9 (0.0%)
+ Lokesh Vutla 7 (0.0%)
+ Chris Zhong 7 (0.0%)
+ Yuichiro Goto 7 (0.0%)
+ Karsten Merker 7 (0.0%)
+ Vishwas Srivastava 5 (0.0%)
+ Sascha Hauer 5 (0.0%)
+ Tang Yuantian 5 (0.0%)
+ Lin Huang 3 (0.0%)
+ Oscar Curero 3 (0.0%)
+ Enric Balletbò i Serra 3 (0.0%)
+ Alexander Graf 2 (0.0%)
+ William Cohen 2 (0.0%)
+ Ashish Kumar 2 (0.0%)
+ Jason Wu 2 (0.0%)
+ Frank Wang 2 (0.0%)
+ Soren Brinkmann 2 (0.0%)
+ Marco Schuster 2 (0.0%)
+ Anand Moon 1 (0.0%)
+ FUKAUMI Naoki 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Matthias Schiffer 1 (0.0%)
+ Guillaume GARDET 1 (0.0%)
+ Peter Robinson 1 (0.0%)
+ Punnaiah Choudary Kalluri 1 (0.0%)
+ Ed Swarthout 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 1516 (6.1%)
+ Ricardo Ribalda 410 (1.7%)
+ David Müller (ELSOFT AG) 315 (1.3%)
+ Roger Meier 41 (0.2%)
+ Bhuvanchandra DV 40 (0.2%)
+ Paul Burton 36 (0.1%)
+ Steve Rae 20 (0.1%)
+ Mateusz Kulikowski 13 (0.1%)
+ Fabio Estevam 13 (0.1%)
+ Kevin Smith 7 (0.0%)
+ Stefan Agner 7 (0.0%)
+ Paul Kocialkowski 6 (0.0%)
+ Ladislav Michl 5 (0.0%)
+ Eddy Petrișor 5 (0.0%)
+ Alexander Graf 2 (0.0%)
+ Marco Schuster 2 (0.0%)
+ Pratiyush Mohan Srivastava 1 (0.0%)
+ Jason Wu 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 194)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 41 (21.1%)
+ Tom Warren 27 (13.9%)
+ Ricardo Ribalda Delgado 23 (11.9%)
+ Hans de Goede 18 (9.3%)
+ Radha Mohan Chintakuntla 10 (5.2%)
+ Anatolij Gustschin 10 (5.2%)
+ Ye.Li 10 (5.2%)
+ Andreas Bießmann 7 (3.6%)
+ Saksham Jain 5 (2.6%)
+ Tom Rini 3 (1.5%)
+ Derald D. Woods 3 (1.5%)
+ Alexey Brodkin 3 (1.5%)
+ Wenyou Yang 3 (1.5%)
+ Purna Chandra Mandal 3 (1.5%)
+ Scott Wood 2 (1.0%)
+ Itai Katz 2 (1.0%)
+ Emil Lenchak 2 (1.0%)
+ Jagan Teki 2 (1.0%)
+ Heiko Schocher 2 (1.0%)
+ Peng Fan 2 (1.0%)
+ Minkyu Kang 1 (0.5%)
+ Sandeep Sheriker Mallikarjun 1 (0.5%)
+ Michal Marek 1 (0.5%)
+ Enric Balletbo i Serra 1 (0.5%)
+ Ravi Babu 1 (0.5%)
+ Corey Minyard 1 (0.5%)
+ Wills Wang 1 (0.5%)
+ Ruchika Gupta 1 (0.5%)
+ Mingkai Hu 1 (0.5%)
+ Jeffy Chen 1 (0.5%)
+ Paul Thacker 1 (0.5%)
+ Daniel Schwierzeck 1 (0.5%)
+ Stefan Roese 1 (0.5%)
+ Stephen Warren 1 (0.5%)
+ Bin Meng 1 (0.5%)
+ Simon Glass 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 707)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 181 (25.6%)
+ Tom Rini 156 (22.1%)
+ Simon Glass 132 (18.7%)
+ York Sun 74 (10.5%)
+ Jagan Teki 36 (5.1%)
+ Andreas Bießmann 27 (3.8%)
+ Michal Simek 22 (3.1%)
+ Heiko Schocher 15 (2.1%)
+ Daniel Schwierzeck 11 (1.6%)
+ Stephen Warren 7 (1.0%)
+ Thomas Chou 6 (0.8%)
+ Stefan Roese 5 (0.7%)
+ Moritz Fischer 5 (0.7%)
+ Stefano Babic 5 (0.7%)
+ Alison Wang 3 (0.4%)
+ Marek Vasut 3 (0.4%)
+ Peng Fan 2 (0.3%)
+ Joe Hershberger 2 (0.3%)
+ Masahiro Yamada 2 (0.3%)
+ Wenyou Yang 1 (0.1%)
+ Purna Chandra Mandal 1 (0.1%)
+ Minkyu Kang 1 (0.1%)
+ Roger Meier 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Samuel Egli 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Edgar E. Iglesias 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Chin Liang See 1 (0.1%)
+ Anand Moon 1 (0.1%)
+ Łukasz Majewski 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 153)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 41 (26.8%)
+ Bin Meng 34 (22.2%)
+ Jagan Teki 19 (12.4%)
+ Heiko Schocher 16 (10.5%)
+ Stephen Warren 13 (8.5%)
+ Mugunthan V N 10 (6.5%)
+ Tom Rini 2 (1.3%)
+ Hannes Schmelzer 2 (1.3%)
+ Andreas Bießmann 1 (0.7%)
+ Michal Simek 1 (0.7%)
+ Daniel Schwierzeck 1 (0.7%)
+ Alison Wang 1 (0.7%)
+ Marek Vasut 1 (0.7%)
+ Anand Moon 1 (0.7%)
+ Bhuvanchandra DV 1 (0.7%)
+ Steve Rae 1 (0.7%)
+ Mateusz Kulikowski 1 (0.7%)
+ Vagrant Cascadian 1 (0.7%)
+ Siarhei Siamashka 1 (0.7%)
+ Matthias Weisser 1 (0.7%)
+ Sylvain Lemieux 1 (0.7%)
+ Alexandre Messier 1 (0.7%)
+ Soeren Moch 1 (0.7%)
+ Miao Yan 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 153)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 41 (26.8%)
+ Jagan Teki 35 (22.9%)
+ Simon Glass 29 (19.0%)
+ Wenyou Yang 15 (9.8%)
+ Miao Yan 8 (5.2%)
+ Stephen Warren 5 (3.3%)
+ Masahiro Yamada 2 (1.3%)
+ Łukasz Majewski 2 (1.3%)
+ Lubomir Rintel 2 (1.3%)
+ Gregory CLEMENT 2 (1.3%)
+ Heiko Schocher 1 (0.7%)
+ Mateusz Kulikowski 1 (0.7%)
+ Stefan Roese 1 (0.7%)
+ Roger Meier 1 (0.7%)
+ Anatolij Gustschin 1 (0.7%)
+ Frank Wang 1 (0.7%)
+ FUKAUMI Naoki 1 (0.7%)
+ Lin Huang 1 (0.7%)
+ Vladimir Zapolskiy 1 (0.7%)
+ Albert ARIBAUD 1 (0.7%)
+ Jelle van der Waa 1 (0.7%)
+ Sergey Temerkhanov 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 1 (9.1%)
+ Tom Rini 1 (9.1%)
+ Alexandre Messier 1 (9.1%)
+ Soeren Moch 1 (9.1%)
+ Alex Gdalevich 1 (9.1%)
+ David Glessner 1 (9.1%)
+ Chris Kohn 1 (9.1%)
+ Sai Pavan Boddu 1 (9.1%)
+ Behan Webster 1 (9.1%)
+ Anton Blanchard 1 (9.1%)
+ Santhosh Kumar Janardhanam 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 3 (27.3%)
+ Tom Rini 2 (18.2%)
+ Jagan Teki 1 (9.1%)
+ Simon Glass 1 (9.1%)
+ Łukasz Majewski 1 (9.1%)
+ Anatolij Gustschin 1 (9.1%)
+ Vladimir Zapolskiy 1 (9.1%)
+ Sanchayan Maity 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 378 (27.5%)
+ Google, Inc. 309 (22.5%)
+ NXP 130 (9.5%)
+ Socionext Inc. 113 (8.2%)
+ AMD 84 (6.1%)
+ DENX Software Engineering 73 (5.3%)
+ NVidia 67 (4.9%)
+ Texas Instruments 54 (3.9%)
+ Konsulko Group 29 (2.1%)
+ Xilinx 26 (1.9%)
+ Openedev 25 (1.8%)
+ Atmel 24 (1.7%)
+ Toradex 12 (0.9%)
+ CompuLab 11 (0.8%)
+ Rockchip 9 (0.7%)
+ Red Hat 7 (0.5%)
+ ST Microelectronics 6 (0.4%)
+ MIPS 4 (0.3%)
+ Free Electrons 3 (0.2%)
+ Broadcom 2 (0.1%)
+ Debian.org 2 (0.1%)
+ Linaro 2 (0.1%)
+ Samsung 2 (0.1%)
+ Excito Elektronik 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Siemens 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Google, Inc. 28854 (31.8%)
+ (Unknown) 28744 (31.7%)
+ Socionext Inc. 6517 (7.2%)
+ NXP 6086 (6.7%)
+ DENX Software Engineering 5940 (6.5%)
+ NVidia 2764 (3.0%)
+ Konsulko Group 2418 (2.7%)
+ Texas Instruments 1674 (1.8%)
+ AMD 1380 (1.5%)
+ Xilinx 1280 (1.4%)
+ Atmel 1247 (1.4%)
+ ST Microelectronics 1095 (1.2%)
+ Excito Elektronik 1046 (1.2%)
+ Free Electrons 442 (0.5%)
+ Toradex 302 (0.3%)
+ CompuLab 278 (0.3%)
+ Openedev 261 (0.3%)
+ Rockchip 107 (0.1%)
+ MIPS 86 (0.1%)
+ Red Hat 75 (0.1%)
+ Samsung 49 (0.1%)
+ Linaro 26 (0.0%)
+ Broadcom 25 (0.0%)
+ Siemens 14 (0.0%)
+ Debian.org 8 (0.0%)
+ Pengutronix 5 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 194)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 56 (28.9%)
+ Xilinx 43 (22.2%)
+ NVidia 28 (14.4%)
+ NXP 21 (10.8%)
+ Red Hat 18 (9.3%)
+ DENX Software Engineering 13 (6.7%)
+ Konsulko Group 3 (1.5%)
+ Atmel 3 (1.5%)
+ Openedev 2 (1.0%)
+ Google, Inc. 1 (0.5%)
+ Texas Instruments 1 (0.5%)
+ Rockchip 1 (0.5%)
+ Samsung 1 (0.5%)
+ Collabora Ltd. 1 (0.5%)
+ MontaVista 1 (0.5%)
+ Novell 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 129)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65 (50.4%)
+ NXP 25 (19.4%)
+ Xilinx 4 (3.1%)
+ DENX Software Engineering 4 (3.1%)
+ Rockchip 4 (3.1%)
+ Texas Instruments 3 (2.3%)
+ Red Hat 2 (1.6%)
+ Atmel 2 (1.6%)
+ Toradex 2 (1.6%)
+ Debian.org 2 (1.6%)
+ NVidia 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Openedev 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ Samsung 1 (0.8%)
+ Socionext Inc. 1 (0.8%)
+ AMD 1 (0.8%)
+ ST Microelectronics 1 (0.8%)
+ Excito Elektronik 1 (0.8%)
+ Free Electrons 1 (0.8%)
+ CompuLab 1 (0.8%)
+ MIPS 1 (0.8%)
+ Linaro 1 (0.8%)
+ Broadcom 1 (0.8%)
+ Siemens 1 (0.8%)
+ Pengutronix 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.05.rst b/doc/develop/statistics/u-boot-stats-v2016.05.rst
new file mode 100644
index 0000000..a40c51f
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.05.rst
@@ -0,0 +1,639 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.05
+======================================
+
+* Processed 1043 csets from 133 developers
+
+* 23 employers found
+
+* A total of 77779 lines added, 21905 removed (delta 55874)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 163 (15.6%)
+ Masahiro Yamada 63 (6.0%)
+ Alexander Graf 58 (5.6%)
+ Michal Simek 57 (5.5%)
+ Stefan Roese 47 (4.5%)
+ Tom Rini 41 (3.9%)
+ Hans de Goede 40 (3.8%)
+ Paul Kocialkowski 38 (3.6%)
+ Marek Vasut 31 (3.0%)
+ Stephen Warren 28 (2.7%)
+ Lokesh Vutla 26 (2.5%)
+ Nishanth Menon 25 (2.4%)
+ Mateusz Kulikowski 24 (2.3%)
+ Bin Meng 22 (2.1%)
+ Chen-Yu Tsai 20 (1.9%)
+ Peng Fan 18 (1.7%)
+ Fabio Estevam 17 (1.6%)
+ Siva Durga Prasad Paladugu 15 (1.4%)
+ Saksham Jain 14 (1.3%)
+ Vasily Khoruzhick 11 (1.1%)
+ Robert P. J. Day 10 (1.0%)
+ Semen Protsenko 10 (1.0%)
+ Mugunthan V N 9 (0.9%)
+ Roger Quadros 8 (0.8%)
+ Prabhakar Kushwaha 7 (0.7%)
+ Peter Griffin 7 (0.7%)
+ Akshay Bhat 7 (0.7%)
+ Eric Nelson 7 (0.7%)
+ Jagan Teki 6 (0.6%)
+ Stuart Yoder 6 (0.6%)
+ Jacob Chen 6 (0.6%)
+ Vagrant Cascadian 5 (0.5%)
+ Steve Rae 5 (0.5%)
+ Purna Chandra Mandal 5 (0.5%)
+ Steve Kipisz 5 (0.5%)
+ York Sun 5 (0.5%)
+ Qianyu Gong 5 (0.5%)
+ Alison Wang 5 (0.5%)
+ Andreas Fenkart 5 (0.5%)
+ Peter Korsgaard 5 (0.5%)
+ Heiko Schocher 4 (0.4%)
+ Moritz Fischer 4 (0.4%)
+ Sriram Dash 4 (0.4%)
+ Wenbin Song 4 (0.4%)
+ Vitaly Andrianov 4 (0.4%)
+ Stefan Agner 3 (0.3%)
+ Andreas Bießmann 3 (0.3%)
+ Martin Pietryka 3 (0.3%)
+ Lukasz Majewski 3 (0.3%)
+ Alexey Brodkin 3 (0.3%)
+ Andreas Faerber 3 (0.3%)
+ Vikas Manocha 3 (0.3%)
+ Codrin Ciubotariu 3 (0.3%)
+ Andreas Dannenberg 3 (0.3%)
+ Michael Haas 3 (0.3%)
+ Aneesh Bansal 3 (0.3%)
+ Alexander Merkle 3 (0.3%)
+ Dirk Eibach 3 (0.3%)
+ Dinh Nguyen 2 (0.2%)
+ Anatolij Gustschin 2 (0.2%)
+ Ash Charles 2 (0.2%)
+ Mario Six 2 (0.2%)
+ John Tobias 2 (0.2%)
+ Punnaiah Choudary Kalluri 2 (0.2%)
+ Hyun Kwon 2 (0.2%)
+ Soren Brinkmann 2 (0.2%)
+ P L Sai Krishna 2 (0.2%)
+ Edgar E. Iglesias 2 (0.2%)
+ Christian Kohn 2 (0.2%)
+ Kevin Smith 2 (0.2%)
+ Guy Thouret 2 (0.2%)
+ Shaohui Xie 2 (0.2%)
+ Siarhei Siamashka 2 (0.2%)
+ Mingkai Hu 2 (0.2%)
+ Ravi Babu 2 (0.2%)
+ vishnupatekar 2 (0.2%)
+ Shengzhou Liu 2 (0.2%)
+ Przemyslaw Marczak 2 (0.2%)
+ Andrew F. Davis 2 (0.2%)
+ Carlos Hernandez 2 (0.2%)
+ Suman Anna 2 (0.2%)
+ Andre Przywara 1 (0.1%)
+ Russ Dill 1 (0.1%)
+ Lev Iserovich 1 (0.1%)
+ Enric Balletbo i Serra 1 (0.1%)
+ Matwey V. Kornilov 1 (0.1%)
+ Ronald Zachariah 1 (0.1%)
+ Yoshinori Sato 1 (0.1%)
+ Boris Brezillon 1 (0.1%)
+ Justin Waters 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Schuyler Patton 1 (0.1%)
+ Daniel Allred 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ Anurag Kumar Vulisha 1 (0.1%)
+ Bharat Kumar Gogada 1 (0.1%)
+ Naga Sureshkumar Relli 1 (0.1%)
+ VNSL Durga 1 (0.1%)
+ Ranjit Waghmode 1 (0.1%)
+ Alistair Francis 1 (0.1%)
+ Rouven Behr 1 (0.1%)
+ Vogt, Christof 1 (0.1%)
+ Jeffy Chen 1 (0.1%)
+ Denis Bakhvalov 1 (0.1%)
+ Vincent Siles 1 (0.1%)
+ Ed Swarthout 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Joe Hershberger 1 (0.1%)
+ Karsten Merker 1 (0.1%)
+ Scott Wood 1 (0.1%)
+ Dan Murphy 1 (0.1%)
+ Ahmed Samir Khalil 1 (0.1%)
+ Eric Anholt 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Graham Moore 1 (0.1%)
+ Rai Harninder 1 (0.1%)
+ Anton Persson 1 (0.1%)
+ Leonid Iziumtsev 1 (0.1%)
+ Ye Li 1 (0.1%)
+ Alex Kaplan 1 (0.1%)
+ Lawrence Yu 1 (0.1%)
+ Marcus Cooper 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Pratiyush Mohan Srivastava 1 (0.1%)
+ Reinhard Pfau 1 (0.1%)
+ Chin Liang See 1 (0.1%)
+ Ted Chen 1 (0.1%)
+ Yan Liu 1 (0.1%)
+ Murali Karicheri 1 (0.1%)
+ Adam Ford 1 (0.1%)
+ David Lechner 1 (0.1%)
+ Stuart Longland 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 18458 (21.9%)
+ Tom Rini 11437 (13.5%)
+ Stefan Roese 8292 (9.8%)
+ Hans de Goede 7278 (8.6%)
+ Alexander Graf 5292 (6.3%)
+ Michal Simek 3901 (4.6%)
+ Masahiro Yamada 3395 (4.0%)
+ Mateusz Kulikowski 3238 (3.8%)
+ Robert P. J. Day 1867 (2.2%)
+ Bin Meng 1539 (1.8%)
+ Akshay Bhat 1398 (1.7%)
+ Lokesh Vutla 1383 (1.6%)
+ Nishanth Menon 1350 (1.6%)
+ Paul Kocialkowski 1014 (1.2%)
+ Semen Protsenko 916 (1.1%)
+ Siarhei Siamashka 911 (1.1%)
+ Fabio Estevam 852 (1.0%)
+ Stephen Warren 832 (1.0%)
+ Siva Durga Prasad Paladugu 776 (0.9%)
+ Jagan Teki 682 (0.8%)
+ Vasily Khoruzhick 598 (0.7%)
+ Peng Fan 576 (0.7%)
+ Vitaly Andrianov 552 (0.7%)
+ Peter Griffin 532 (0.6%)
+ David Lechner 518 (0.6%)
+ Jacob Chen 514 (0.6%)
+ Marek Vasut 504 (0.6%)
+ Eric Nelson 442 (0.5%)
+ Steve Kipisz 411 (0.5%)
+ Saksham Jain 376 (0.4%)
+ Stuart Yoder 376 (0.4%)
+ Moritz Fischer 371 (0.4%)
+ Purna Chandra Mandal 351 (0.4%)
+ York Sun 311 (0.4%)
+ Sriram Dash 296 (0.4%)
+ Chen-Yu Tsai 282 (0.3%)
+ Soren Brinkmann 211 (0.2%)
+ Prabhakar Kushwaha 187 (0.2%)
+ Heiko Schocher 157 (0.2%)
+ Roger Quadros 145 (0.2%)
+ Stuart Longland 131 (0.2%)
+ Shengzhou Liu 122 (0.1%)
+ Aneesh Bansal 108 (0.1%)
+ Dinh Nguyen 106 (0.1%)
+ Vikas Manocha 73 (0.1%)
+ Dirk Eibach 66 (0.1%)
+ Ravi Babu 64 (0.1%)
+ Vagrant Cascadian 63 (0.1%)
+ Andreas Bießmann 55 (0.1%)
+ Andre Przywara 46 (0.1%)
+ Rai Harninder 43 (0.1%)
+ Lukasz Majewski 42 (0.0%)
+ Guy Thouret 41 (0.0%)
+ Mario Six 39 (0.0%)
+ Punnaiah Choudary Kalluri 37 (0.0%)
+ Mugunthan V N 36 (0.0%)
+ Peter Korsgaard 35 (0.0%)
+ Michael Haas 35 (0.0%)
+ Andreas Fenkart 33 (0.0%)
+ Alexey Brodkin 33 (0.0%)
+ Przemyslaw Marczak 33 (0.0%)
+ Joe Hershberger 33 (0.0%)
+ Alison Wang 32 (0.0%)
+ John Tobias 31 (0.0%)
+ Adam Ford 31 (0.0%)
+ Christian Kohn 30 (0.0%)
+ Qianyu Gong 26 (0.0%)
+ Wenbin Song 24 (0.0%)
+ Martin Pietryka 24 (0.0%)
+ Angelo Dureghello 24 (0.0%)
+ Steve Rae 22 (0.0%)
+ Andreas Faerber 22 (0.0%)
+ Marcus Cooper 21 (0.0%)
+ Chris Packham 19 (0.0%)
+ Stefan Agner 18 (0.0%)
+ Murali Karicheri 17 (0.0%)
+ Shaohui Xie 15 (0.0%)
+ Lev Iserovich 14 (0.0%)
+ Edgar E. Iglesias 13 (0.0%)
+ Andrew F. Davis 12 (0.0%)
+ Eric Anholt 12 (0.0%)
+ Graham Moore 12 (0.0%)
+ Codrin Ciubotariu 10 (0.0%)
+ Kevin Smith 10 (0.0%)
+ Justin Waters 10 (0.0%)
+ Bharat Kumar Gogada 10 (0.0%)
+ Rob Herring 10 (0.0%)
+ Daniel Allred 9 (0.0%)
+ Anurag Kumar Vulisha 9 (0.0%)
+ VNSL Durga 8 (0.0%)
+ Ed Swarthout 8 (0.0%)
+ Carlos Hernandez 7 (0.0%)
+ Suman Anna 7 (0.0%)
+ Enric Balletbo i Serra 7 (0.0%)
+ Naga Sureshkumar Relli 7 (0.0%)
+ Denis Bakhvalov 7 (0.0%)
+ Dan Murphy 7 (0.0%)
+ Leonid Iziumtsev 7 (0.0%)
+ Pratiyush Mohan Srivastava 7 (0.0%)
+ Andreas Dannenberg 6 (0.0%)
+ Matwey V. Kornilov 6 (0.0%)
+ Shawn Guo 6 (0.0%)
+ Reinhard Pfau 6 (0.0%)
+ Chin Liang See 6 (0.0%)
+ Alexander Merkle 5 (0.0%)
+ Ash Charles 5 (0.0%)
+ Hyun Kwon 5 (0.0%)
+ Anatolij Gustschin 4 (0.0%)
+ Ahmed Samir Khalil 4 (0.0%)
+ Ye Li 4 (0.0%)
+ Lawrence Yu 4 (0.0%)
+ Yangbo Lu 4 (0.0%)
+ Ted Chen 4 (0.0%)
+ Yan Liu 4 (0.0%)
+ P L Sai Krishna 3 (0.0%)
+ Mingkai Hu 3 (0.0%)
+ vishnupatekar 3 (0.0%)
+ Vincent Siles 3 (0.0%)
+ Schuyler Patton 2 (0.0%)
+ Alistair Francis 2 (0.0%)
+ Jeffy Chen 2 (0.0%)
+ Karsten Merker 2 (0.0%)
+ Anton Persson 2 (0.0%)
+ Russ Dill 1 (0.0%)
+ Ronald Zachariah 1 (0.0%)
+ Yoshinori Sato 1 (0.0%)
+ Boris Brezillon 1 (0.0%)
+ Tang Yuantian 1 (0.0%)
+ Ranjit Waghmode 1 (0.0%)
+ Rouven Behr 1 (0.0%)
+ Vogt, Christof 1 (0.0%)
+ Scott Wood 1 (0.0%)
+ Alex Kaplan 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Robert P. J. Day 1663 (7.6%)
+ Bin Meng 676 (3.1%)
+ York Sun 125 (0.6%)
+ Heiko Schocher 50 (0.2%)
+ Marek Vasut 26 (0.1%)
+ Alexey Brodkin 21 (0.1%)
+ Stuart Yoder 18 (0.1%)
+ Andreas Faerber 14 (0.1%)
+ Andreas Bießmann 11 (0.1%)
+ Alison Wang 5 (0.0%)
+ Stefan Agner 3 (0.0%)
+ Matwey V. Kornilov 3 (0.0%)
+ vishnupatekar 2 (0.0%)
+ Andreas Fenkart 1 (0.0%)
+ Reinhard Pfau 1 (0.0%)
+ Boris Brezillon 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 178)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 39 (21.9%)
+ Hans de Goede 37 (20.8%)
+ Aneesh Bansal 12 (6.7%)
+ Nishanth Menon 12 (6.7%)
+ Lokesh Vutla 11 (6.2%)
+ Tom Rini 9 (5.1%)
+ Stefan Roese 9 (5.1%)
+ Tom Warren 4 (2.2%)
+ Sandor Yu 3 (1.7%)
+ Christophe Ricard 3 (1.7%)
+ Steve Kipisz 3 (1.7%)
+ Bin Meng 2 (1.1%)
+ Boris Brezillon 2 (1.1%)
+ Pratiyush Mohan Srivastava 2 (1.1%)
+ Minkyu Kang 2 (1.1%)
+ Rajesh Bhagat 2 (1.1%)
+ Ramneek Mehresh 2 (1.1%)
+ Maxime Ripard 2 (1.1%)
+ Ruchika Gupta 2 (1.1%)
+ Qianyu Gong 2 (1.1%)
+ Alexander Graf 2 (1.1%)
+ Schuyler Patton 1 (0.6%)
+ Richard Hu 1 (0.6%)
+ Ravi Kiran Gummaluri 1 (0.6%)
+ Olof Johansson 1 (0.6%)
+ Cristian Birsan 1 (0.6%)
+ Jason Wu 1 (0.6%)
+ Kedareswara rao Appana 1 (0.6%)
+ Brian Norris 1 (0.6%)
+ Kishon Vijay Abraham I 1 (0.6%)
+ Vignesh R 1 (0.6%)
+ Dirk Eibach 1 (0.6%)
+ Roger Quadros 1 (0.6%)
+ Peng Fan 1 (0.6%)
+ Akshay Bhat 1 (0.6%)
+ Masahiro Yamada 1 (0.6%)
+ Simon Glass 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 448)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 165 (36.8%)
+ Bin Meng 81 (18.1%)
+ Simon Glass 60 (13.4%)
+ York Sun 59 (13.2%)
+ Hans de Goede 17 (3.8%)
+ Lokesh Vutla 8 (1.8%)
+ Joe Hershberger 7 (1.6%)
+ Fabio Estevam 5 (1.1%)
+ Peng Fan 4 (0.9%)
+ Masahiro Yamada 4 (0.9%)
+ Marek Vasut 4 (0.9%)
+ Andreas Faerber 4 (0.9%)
+ Stephen Warren 4 (0.9%)
+ Heiko Schocher 3 (0.7%)
+ Nathan Rossi 3 (0.7%)
+ Hannes Schmelzer 2 (0.4%)
+ Kevin Smith 2 (0.4%)
+ Mugunthan V N 2 (0.4%)
+ Jagan Teki 2 (0.4%)
+ Stefan Roese 1 (0.2%)
+ Boris Brezillon 1 (0.2%)
+ Alexander Graf 1 (0.2%)
+ Alison Wang 1 (0.2%)
+ Thierry Reding 1 (0.2%)
+ Anand Moon 1 (0.2%)
+ Mark Tomlinson 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ Sekhar Nori 1 (0.2%)
+ Prabhakar Kushwaha 1 (0.2%)
+ Soren Brinkmann 1 (0.2%)
+ Peter Griffin 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 93)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 37 (39.8%)
+ Simon Glass 26 (28.0%)
+ Steve Rae 6 (6.5%)
+ Andreas Faerber 4 (4.3%)
+ Hannes Schmelzer 2 (2.2%)
+ Karsten Merker 2 (2.2%)
+ Lukasz Majewski 2 (2.2%)
+ Tom Rini 1 (1.1%)
+ Bin Meng 1 (1.1%)
+ York Sun 1 (1.1%)
+ Lokesh Vutla 1 (1.1%)
+ Kevin Smith 1 (1.1%)
+ Mugunthan V N 1 (1.1%)
+ Anand Moon 1 (1.1%)
+ Nishanth Menon 1 (1.1%)
+ Christophe Ricard 1 (1.1%)
+ Dennis Gilmore 1 (1.1%)
+ Vishal Mahaveer 1 (1.1%)
+ John Tobias 1 (1.1%)
+ Michael Haas 1 (1.1%)
+ Eric Nelson 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 93)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 31 (33.3%)
+ Alexander Graf 16 (17.2%)
+ Mateusz Kulikowski 15 (16.1%)
+ Roger Quadros 7 (7.5%)
+ Stefan Roese 5 (5.4%)
+ Hans de Goede 3 (3.2%)
+ John Tobias 2 (2.2%)
+ Przemyslaw Marczak 2 (2.2%)
+ Martin Pietryka 2 (2.2%)
+ Stephen Warren 1 (1.1%)
+ Tom Rini 1 (1.1%)
+ Nishanth Menon 1 (1.1%)
+ Michael Haas 1 (1.1%)
+ Peng Fan 1 (1.1%)
+ Jagan Teki 1 (1.1%)
+ Andreas Bießmann 1 (1.1%)
+ Ted Chen 1 (1.1%)
+ Eric Anholt 1 (1.1%)
+ Ravi Babu 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 36)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 4 (11.1%)
+ Jose Rivera 4 (11.1%)
+ Nishanth Menon 3 (8.3%)
+ John Linn 3 (8.3%)
+ Stephen Warren 2 (5.6%)
+ Masahiro Yamada 2 (5.6%)
+ Richard Woodruff 2 (5.6%)
+ Denis Bakhvalov 2 (5.6%)
+ Hans de Goede 1 (2.8%)
+ Eric Anholt 1 (2.8%)
+ Steve Rae 1 (2.8%)
+ Andreas Faerber 1 (2.8%)
+ Lukasz Majewski 1 (2.8%)
+ York Sun 1 (2.8%)
+ Dennis Gilmore 1 (2.8%)
+ Marek Vasut 1 (2.8%)
+ Nathan Rossi 1 (2.8%)
+ Stefano Babic 1 (2.8%)
+ Bin Liu 1 (2.8%)
+ Yao Yuan 1 (2.8%)
+ Mark Rutland 1 (2.8%)
+ Yan Liu 1 (2.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 36)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nishanth Menon 6 (16.7%)
+ Alexander Graf 5 (13.9%)
+ Prabhakar Kushwaha 4 (11.1%)
+ Michal Simek 4 (11.1%)
+ Lokesh Vutla 3 (8.3%)
+ Stephen Warren 2 (5.6%)
+ Simon Glass 2 (5.6%)
+ Roger Quadros 2 (5.6%)
+ Tom Rini 1 (2.8%)
+ Denis Bakhvalov 1 (2.8%)
+ Hans de Goede 1 (2.8%)
+ Marek Vasut 1 (2.8%)
+ Jagan Teki 1 (2.8%)
+ Pratiyush Mohan Srivastava 1 (2.8%)
+ vishnupatekar 1 (2.8%)
+ Andreas Fenkart 1 (2.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 314 (30.1%)
+ Google, Inc. 163 (15.6%)
+ Texas Instruments 94 (9.0%)
+ NXP 86 (8.2%)
+ DENX Software Engineering 84 (8.1%)
+ Socionext Inc. 63 (6.0%)
+ AMD 53 (5.1%)
+ Konsulko Group 41 (3.9%)
+ Red Hat 40 (3.8%)
+ Xilinx 37 (3.5%)
+ Linaro 18 (1.7%)
+ NVidia 12 (1.2%)
+ Debian.org 6 (0.6%)
+ Guntermann & Drunck 6 (0.6%)
+ Openedev 6 (0.6%)
+ Broadcom 5 (0.5%)
+ Samsung 5 (0.5%)
+ Novell 3 (0.3%)
+ ST Microelectronics 3 (0.3%)
+ ARM 1 (0.1%)
+ Cisco 1 (0.1%)
+ Collabora Ltd. 1 (0.1%)
+ Rockchip 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 20431 (24.2%)
+ Google, Inc. 18458 (21.9%)
+ Konsulko Group 11437 (13.5%)
+ DENX Software Engineering 8957 (10.6%)
+ Red Hat 7278 (8.6%)
+ Texas Instruments 4013 (4.8%)
+ Socionext Inc. 3395 (4.0%)
+ NXP 2811 (3.3%)
+ AMD 2525 (3.0%)
+ Xilinx 2488 (2.9%)
+ Linaro 1458 (1.7%)
+ Openedev 682 (0.8%)
+ Guntermann & Drunck 111 (0.1%)
+ NVidia 102 (0.1%)
+ Samsung 75 (0.1%)
+ ST Microelectronics 73 (0.1%)
+ Debian.org 65 (0.1%)
+ ARM 46 (0.1%)
+ Broadcom 22 (0.0%)
+ Novell 22 (0.0%)
+ Collabora Ltd. 7 (0.0%)
+ Rockchip 2 (0.0%)
+ Cisco 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 178)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Xilinx 40 (22.5%)
+ Red Hat 37 (20.8%)
+ Texas Instruments 30 (16.9%)
+ NXP 25 (14.0%)
+ (Unknown) 9 (5.1%)
+ Konsulko Group 9 (5.1%)
+ DENX Software Engineering 9 (5.1%)
+ NVidia 4 (2.2%)
+ Free Electrons 4 (2.2%)
+ ST Microelectronics 3 (1.7%)
+ Samsung 2 (1.1%)
+ Novell 2 (1.1%)
+ Google, Inc. 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ Guntermann & Drunck 1 (0.6%)
+ IBM 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 136)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 56 (41.2%)
+ NXP 21 (15.4%)
+ Texas Instruments 17 (12.5%)
+ Xilinx 14 (10.3%)
+ DENX Software Engineering 4 (2.9%)
+ Guntermann & Drunck 3 (2.2%)
+ Linaro 3 (2.2%)
+ Samsung 2 (1.5%)
+ Debian.org 2 (1.5%)
+ Red Hat 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ NVidia 1 (0.7%)
+ ST Microelectronics 1 (0.7%)
+ Novell 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ AMD 1 (0.7%)
+ Openedev 1 (0.7%)
+ ARM 1 (0.7%)
+ Broadcom 1 (0.7%)
+ Collabora Ltd. 1 (0.7%)
+ Rockchip 1 (0.7%)
+ Cisco 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.07.rst b/doc/develop/statistics/u-boot-stats-v2016.07.rst
new file mode 100644
index 0000000..d55e63e
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.07.rst
@@ -0,0 +1,615 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.07
+======================================
+
+* Processed 1078 csets from 133 developers
+
+* 27 employers found
+
+* A total of 87409 lines added, 35501 removed (delta 51908)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 143 (13.3%)
+ Masahiro Yamada 84 (7.8%)
+ Bin Meng 78 (7.2%)
+ Marek Vasut 57 (5.3%)
+ Michal Simek 49 (4.5%)
+ Lokesh Vutla 40 (3.7%)
+ Peng Fan 35 (3.2%)
+ Stephen Warren 30 (2.8%)
+ Heiko Schocher 26 (2.4%)
+ Tim Harvey 22 (2.0%)
+ Alexander Graf 21 (1.9%)
+ Chen-Yu Tsai 21 (1.9%)
+ Paul Burton 21 (1.9%)
+ Wills Wang 21 (1.9%)
+ mario.six@gdsys.cc 16 (1.5%)
+ Yuan Yao 15 (1.4%)
+ Mugunthan V N 14 (1.3%)
+ Hans de Goede 13 (1.2%)
+ Steve Rae 13 (1.2%)
+ Miao Yan 13 (1.2%)
+ Prabhakar Kushwaha 12 (1.1%)
+ Nikita Kiryanov 12 (1.1%)
+ Tom Rini 11 (1.0%)
+ Gong Qianyu 10 (0.9%)
+ Shengzhou Liu 9 (0.8%)
+ Daniel Allred 9 (0.8%)
+ York Sun 8 (0.7%)
+ Alexey Brodkin 8 (0.7%)
+ Stefan Roese 8 (0.7%)
+ Boris Brezillon 8 (0.7%)
+ Robert P. J. Day 8 (0.7%)
+ Srinivas, Madan 8 (0.7%)
+ Thomas Abraham 8 (0.7%)
+ Andre Przywara 7 (0.6%)
+ Sjoerd Simons 7 (0.6%)
+ Andre Renaud 7 (0.6%)
+ Wenyou Yang 7 (0.6%)
+ Dan Murphy 7 (0.6%)
+ Eric Nelson 7 (0.6%)
+ Scott Wood 6 (0.6%)
+ Andrew Shadura 6 (0.6%)
+ Andreas Fenkart 6 (0.6%)
+ Daniel Schwierzeck 5 (0.5%)
+ Sriram Dash 5 (0.5%)
+ Roger Quadros 5 (0.5%)
+ Joe Hershberger 4 (0.4%)
+ Andreas Dannenberg 4 (0.4%)
+ Keerthy 4 (0.4%)
+ Dirk Eibach 4 (0.4%)
+ Suman Anna 4 (0.4%)
+ Beniamino Galvani 4 (0.4%)
+ Stanislav Galabov 4 (0.4%)
+ Alex Porosanu 4 (0.4%)
+ Abhimanyu Saini 3 (0.3%)
+ Fabio Estevam 3 (0.3%)
+ Max Krummenacher 3 (0.3%)
+ Angelo Dureghello 3 (0.3%)
+ Marco Franchi 3 (0.3%)
+ Siarhei Siamashka 3 (0.3%)
+ Purna Chandra Mandal 3 (0.3%)
+ Chris Packham 3 (0.3%)
+ Siva Durga Prasad Paladugu 3 (0.3%)
+ Vincent Siles 3 (0.3%)
+ Stefan Agner 3 (0.3%)
+ Stefano Babic 2 (0.2%)
+ Mingkai Hu 2 (0.2%)
+ Mateusz Kulikowski 2 (0.2%)
+ Ye Li 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Vagrant Cascadian 2 (0.2%)
+ Carlo Caione 2 (0.2%)
+ Michael Trimarchi 2 (0.2%)
+ Teddy Reed 2 (0.2%)
+ Sergey Kubushyn 2 (0.2%)
+ Guillaume GARDET 2 (0.2%)
+ Petr Kulhavy 2 (0.2%)
+ Shaohui Xie 2 (0.2%)
+ Sebastien Bourdelin 2 (0.2%)
+ Ying Zhang 2 (0.2%)
+ Aneesh Bansal 2 (0.2%)
+ Kevin Smith 2 (0.2%)
+ Alison Wang 2 (0.2%)
+ Ziyuan Xu 1 (0.1%)
+ Oleksandr Tymoshenko 1 (0.1%)
+ Ralf Hubert 1 (0.1%)
+ Bernhard Nortmann 1 (0.1%)
+ Quentin Schulz 1 (0.1%)
+ Olliver Schinagl 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Praneeth Bajjuri 1 (0.1%)
+ Ravi Babu 1 (0.1%)
+ Pratiyush Mohan Srivastava 1 (0.1%)
+ Andreas Bießmann 1 (0.1%)
+ Rajesh Bhagat 1 (0.1%)
+ Chris Brand 1 (0.1%)
+ Andrej Rosano 1 (0.1%)
+ Joris Lijssens 1 (0.1%)
+ Daniel Gorsulowski 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Nathan Rossi 1 (0.1%)
+ Alexey Firago 1 (0.1%)
+ Stefan Wahren 1 (0.1%)
+ Fabian Mewes 1 (0.1%)
+ Thomas Lange 1 (0.1%)
+ Eran Matityahu 1 (0.1%)
+ Schuyler Patton 1 (0.1%)
+ Eddy Petrișor 1 (0.1%)
+ Stoica Cosmin-Stefan 1 (0.1%)
+ Marcin Niestroj 1 (0.1%)
+ Andrew F. Davis 1 (0.1%)
+ George McCollister 1 (0.1%)
+ Yunhui Cui 1 (0.1%)
+ Samuel Egli 1 (0.1%)
+ Pavel Machek 1 (0.1%)
+ Michael Heimpold 1 (0.1%)
+ Kimmo Surakka 1 (0.1%)
+ Ladislav Michl 1 (0.1%)
+ Peter Howard 1 (0.1%)
+ Ed Swarthout 1 (0.1%)
+ Sumit Garg 1 (0.1%)
+ Bogdan Purcareata 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Sylvain Lesne 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Kunihiko Hayashi 1 (0.1%)
+ Patrick Delaunay 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Damien Riegel 1 (0.1%)
+ Martin Hejnfelt 1 (0.1%)
+ Tim Chick 1 (0.1%)
+ Po Liu 1 (0.1%)
+ Adrian Alonso 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 17039 (16.1%)
+ Simon Glass 13892 (13.1%)
+ Heiko Schocher 8276 (7.8%)
+ Marek Vasut 7755 (7.3%)
+ Stephen Warren 5584 (5.3%)
+ Wills Wang 4848 (4.6%)
+ Lokesh Vutla 3682 (3.5%)
+ Andre Renaud 3544 (3.3%)
+ Steve Rae 2874 (2.7%)
+ Eddy Petrișor 2792 (2.6%)
+ Robert P. J. Day 2791 (2.6%)
+ Scott Wood 2791 (2.6%)
+ Masahiro Yamada 2626 (2.5%)
+ Prabhakar Kushwaha 2453 (2.3%)
+ Michal Simek 1728 (1.6%)
+ Kevin Smith 1677 (1.6%)
+ Hans de Goede 1668 (1.6%)
+ Pavel Machek 1527 (1.4%)
+ Thomas Abraham 1334 (1.3%)
+ Nikita Kiryanov 1166 (1.1%)
+ Chen-Yu Tsai 1033 (1.0%)
+ Peng Fan 1015 (1.0%)
+ Alexander Graf 967 (0.9%)
+ Beniamino Galvani 958 (0.9%)
+ Purna Chandra Mandal 913 (0.9%)
+ mario.six@gdsys.cc 784 (0.7%)
+ Tom Rini 650 (0.6%)
+ Daniel Allred 593 (0.6%)
+ Miao Yan 585 (0.6%)
+ Wenyou Yang 564 (0.5%)
+ Paul Burton 522 (0.5%)
+ Andre Przywara 455 (0.4%)
+ Boris Brezillon 428 (0.4%)
+ Schuyler Patton 396 (0.4%)
+ Quentin Schulz 393 (0.4%)
+ Yuan Yao 384 (0.4%)
+ Tim Harvey 337 (0.3%)
+ Angelo Dureghello 329 (0.3%)
+ Sriram Dash 321 (0.3%)
+ Shengzhou Liu 316 (0.3%)
+ Mugunthan V N 264 (0.2%)
+ Alex Porosanu 229 (0.2%)
+ Stoica Cosmin-Stefan 224 (0.2%)
+ Dan Murphy 192 (0.2%)
+ Keerthy 192 (0.2%)
+ Sjoerd Simons 183 (0.2%)
+ Srinivas, Madan 164 (0.2%)
+ Dirk Eibach 164 (0.2%)
+ Daniel Schwierzeck 149 (0.1%)
+ Stefan Roese 121 (0.1%)
+ Andreas Fenkart 121 (0.1%)
+ Abhimanyu Saini 116 (0.1%)
+ Roger Quadros 115 (0.1%)
+ Alexey Brodkin 107 (0.1%)
+ Marco Franchi 101 (0.1%)
+ Eric Nelson 91 (0.1%)
+ Suman Anna 77 (0.1%)
+ Stanislav Galabov 76 (0.1%)
+ Joe Hershberger 71 (0.1%)
+ Gong Qianyu 63 (0.1%)
+ Teddy Reed 62 (0.1%)
+ Eran Matityahu 57 (0.1%)
+ Chris Packham 52 (0.0%)
+ Andrew Shadura 51 (0.0%)
+ Carlo Caione 49 (0.0%)
+ Michael Trimarchi 47 (0.0%)
+ Max Krummenacher 45 (0.0%)
+ Alison Wang 44 (0.0%)
+ Hannes Schmelzer 43 (0.0%)
+ Vagrant Cascadian 43 (0.0%)
+ Pratiyush Mohan Srivastava 39 (0.0%)
+ Mingkai Hu 36 (0.0%)
+ Aneesh Bansal 31 (0.0%)
+ Alexey Firago 26 (0.0%)
+ York Sun 22 (0.0%)
+ Andreas Dannenberg 22 (0.0%)
+ Siarhei Siamashka 21 (0.0%)
+ Marcin Niestroj 21 (0.0%)
+ Po Liu 21 (0.0%)
+ Martin Hejnfelt 20 (0.0%)
+ Siva Durga Prasad Paladugu 19 (0.0%)
+ Stefano Babic 18 (0.0%)
+ Guillaume GARDET 17 (0.0%)
+ Joris Lijssens 16 (0.0%)
+ Yunhui Cui 13 (0.0%)
+ Damien Riegel 13 (0.0%)
+ Sumit Garg 12 (0.0%)
+ Sebastien Bourdelin 10 (0.0%)
+ Bernhard Nortmann 9 (0.0%)
+ Andrej Rosano 9 (0.0%)
+ Vincent Siles 8 (0.0%)
+ Ye Li 8 (0.0%)
+ Fabio Estevam 7 (0.0%)
+ Mateusz Kulikowski 7 (0.0%)
+ Shaohui Xie 7 (0.0%)
+ Stefan Agner 6 (0.0%)
+ Ying Zhang 6 (0.0%)
+ Ralf Hubert 6 (0.0%)
+ George McCollister 6 (0.0%)
+ Peter Howard 6 (0.0%)
+ Bogdan Purcareata 6 (0.0%)
+ Chris Brand 5 (0.0%)
+ Hou Zhiqiang 5 (0.0%)
+ Yangbo Lu 5 (0.0%)
+ Nathan Rossi 4 (0.0%)
+ Stefan Wahren 4 (0.0%)
+ Stefan Mavrodiev 4 (0.0%)
+ Petr Kulhavy 3 (0.0%)
+ Kimmo Surakka 3 (0.0%)
+ Sylvain Lesne 3 (0.0%)
+ Lukasz Majewski 3 (0.0%)
+ Kunihiko Hayashi 3 (0.0%)
+ Sergey Kubushyn 2 (0.0%)
+ Oleksandr Tymoshenko 2 (0.0%)
+ Olliver Schinagl 2 (0.0%)
+ Jaehoon Chung 2 (0.0%)
+ Andreas Bießmann 2 (0.0%)
+ Rajesh Bhagat 2 (0.0%)
+ Thomas Lange 2 (0.0%)
+ Samuel Egli 2 (0.0%)
+ Michael Heimpold 2 (0.0%)
+ Ladislav Michl 2 (0.0%)
+ Tim Chick 2 (0.0%)
+ Ziyuan Xu 1 (0.0%)
+ Praneeth Bajjuri 1 (0.0%)
+ Ravi Babu 1 (0.0%)
+ Daniel Gorsulowski 1 (0.0%)
+ Fabian Mewes 1 (0.0%)
+ Andrew F. Davis 1 (0.0%)
+ Ed Swarthout 1 (0.0%)
+ Peter Robinson 1 (0.0%)
+ Patrick Delaunay 1 (0.0%)
+ Adrian Alonso 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Robert P. J. Day 2538 (7.1%)
+ Scott Wood 1385 (3.9%)
+ Hans de Goede 258 (0.7%)
+ Abhimanyu Saini 96 (0.3%)
+ Eric Nelson 27 (0.1%)
+ Chris Packham 21 (0.1%)
+ Chris Brand 4 (0.0%)
+ Fabio Estevam 3 (0.0%)
+ Nathan Rossi 3 (0.0%)
+ Yangbo Lu 1 (0.0%)
+ Petr Kulhavy 1 (0.0%)
+ Lukasz Majewski 1 (0.0%)
+ Andrew F. Davis 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 190)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Minkyu Kang 36 (18.9%)
+ Hans de Goede 31 (16.3%)
+ Tom Warren 15 (7.9%)
+ Tom Rini 11 (5.8%)
+ Srinivas, Madan 9 (4.7%)
+ Daniel Schwierzeck 8 (4.2%)
+ Simon Glass 8 (4.2%)
+ Calvin Johnson 7 (3.7%)
+ Prabhakar Kushwaha 7 (3.7%)
+ Andreas Bießmann 6 (3.2%)
+ Daniel Allred 6 (3.2%)
+ Michal Simek 6 (3.2%)
+ Rajesh Bhagat 5 (2.6%)
+ Pratiyush Mohan Srivastava 5 (2.6%)
+ Scott Wood 3 (1.6%)
+ Ye Li 2 (1.1%)
+ Gong Qianyu 2 (1.1%)
+ Stefan Roese 2 (1.1%)
+ Peng Fan 2 (1.1%)
+ Steve Rae 2 (1.1%)
+ Lokesh Vutla 2 (1.1%)
+ Abhimanyu Saini 1 (0.5%)
+ Ravi Babu 1 (0.5%)
+ Nishanth Menon 1 (0.5%)
+ Makarand Pawagi 1 (0.5%)
+ Michal Marek 1 (0.5%)
+ Samuel Egli 1 (0.5%)
+ Andreas Dannenberg 1 (0.5%)
+ Andrew Shadura 1 (0.5%)
+ Roger Quadros 1 (0.5%)
+ Mingkai Hu 1 (0.5%)
+ Shengzhou Liu 1 (0.5%)
+ Masahiro Yamada 1 (0.5%)
+ Eddy Petrișor 1 (0.5%)
+ Marek Vasut 1 (0.5%)
+ Heiko Schocher 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 566)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 157 (27.7%)
+ Tom Rini 105 (18.6%)
+ York Sun 81 (14.3%)
+ Stefan Roese 43 (7.6%)
+ Andreas Bießmann 35 (6.2%)
+ Joe Hershberger 28 (4.9%)
+ Heiko Schocher 19 (3.4%)
+ Bin Meng 18 (3.2%)
+ Lokesh Vutla 17 (3.0%)
+ Hans de Goede 16 (2.8%)
+ Fabio Estevam 8 (1.4%)
+ Daniel Schwierzeck 5 (0.9%)
+ Peng Fan 5 (0.9%)
+ Masahiro Yamada 4 (0.7%)
+ Mugunthan V N 4 (0.7%)
+ Stephen Warren 4 (0.7%)
+ Michal Simek 3 (0.5%)
+ Alexander Graf 3 (0.5%)
+ Thomas Chou 2 (0.4%)
+ Nishanth Menon 1 (0.2%)
+ Andreas Dannenberg 1 (0.2%)
+ George McCollister 1 (0.2%)
+ Sylvain Lesne 1 (0.2%)
+ Maxime Ripard 1 (0.2%)
+ Benoît Thébaudeau 1 (0.2%)
+ Tony O'Brien 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ Purna Chandra Mandal 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 22 (36.1%)
+ Andreas Dannenberg 8 (13.1%)
+ Heiko Schocher 7 (11.5%)
+ Michal Simek 6 (9.8%)
+ Mugunthan V N 5 (8.2%)
+ Fabio Estevam 4 (6.6%)
+ George McCollister 2 (3.3%)
+ Simon Glass 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Masahiro Yamada 1 (1.6%)
+ Sylvain Lesne 1 (1.6%)
+ Jaehoon Chung 1 (1.6%)
+ Daiane Angolini 1 (1.6%)
+ Peter Robinson 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 23 (37.7%)
+ Simon Glass 6 (9.8%)
+ Dan Murphy 6 (9.8%)
+ Peng Fan 4 (6.6%)
+ Srinivas, Madan 4 (6.6%)
+ Lokesh Vutla 3 (4.9%)
+ Daniel Allred 3 (4.9%)
+ Steve Rae 2 (3.3%)
+ Fabio Estevam 1 (1.6%)
+ Masahiro Yamada 1 (1.6%)
+ Stephen Warren 1 (1.6%)
+ Alexander Graf 1 (1.6%)
+ Scott Wood 1 (1.6%)
+ Ye Li 1 (1.6%)
+ Marek Vasut 1 (1.6%)
+ Siva Durga Prasad Paladugu 1 (1.6%)
+ Ed Swarthout 1 (1.6%)
+ Marco Franchi 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Srinivas, Madan 1 (10.0%)
+ Daiane Angolini 1 (10.0%)
+ Peter Robinson 1 (10.0%)
+ Nishanth Menon 1 (10.0%)
+ Chris Brand 1 (10.0%)
+ Jonathan Gray 1 (10.0%)
+ Richard Woodruff 1 (10.0%)
+ Bernhard Nortmann 1 (10.0%)
+ Suman Anna 1 (10.0%)
+ Pavel Machek 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 2 (20.0%)
+ Keerthy 2 (20.0%)
+ Peng Fan 1 (10.0%)
+ Steve Rae 1 (10.0%)
+ Fabio Estevam 1 (10.0%)
+ Alexander Graf 1 (10.0%)
+ Stefan Roese 1 (10.0%)
+ Hans de Goede 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 341 (31.6%)
+ Google, Inc. 143 (13.3%)
+ Texas Instruments 99 (9.2%)
+ NXP 95 (8.8%)
+ DENX Software Engineering 94 (8.7%)
+ Socionext Inc. 85 (7.9%)
+ AMD 49 (4.5%)
+ NVidia 30 (2.8%)
+ MIPS 21 (1.9%)
+ Guntermann & Drunck 20 (1.9%)
+ Collabora Ltd. 13 (1.2%)
+ Red Hat 13 (1.2%)
+ Broadcom 12 (1.1%)
+ CompuLab 12 (1.1%)
+ Konsulko Group 11 (1.0%)
+ Samsung 9 (0.8%)
+ ARM 7 (0.6%)
+ Atmel 7 (0.6%)
+ National Instruments 4 (0.4%)
+ Xilinx 3 (0.3%)
+ Amarula Solutions 2 (0.2%)
+ Debian.org 2 (0.2%)
+ Sergey Kubushyn 2 (0.2%)
+ ESD Electronics 1 (0.1%)
+ Free Electrons 1 (0.1%)
+ General Electric 1 (0.1%)
+ Siemens 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 43154 (40.8%)
+ DENX Software Engineering 17697 (16.7%)
+ Google, Inc. 13892 (13.1%)
+ Texas Instruments 5700 (5.4%)
+ NVidia 5584 (5.3%)
+ NXP 4473 (4.2%)
+ Broadcom 2864 (2.7%)
+ Socionext Inc. 2629 (2.5%)
+ AMD 1728 (1.6%)
+ Red Hat 1668 (1.6%)
+ Samsung 1336 (1.3%)
+ CompuLab 1166 (1.1%)
+ Guntermann & Drunck 948 (0.9%)
+ Konsulko Group 650 (0.6%)
+ Atmel 564 (0.5%)
+ MIPS 522 (0.5%)
+ ARM 455 (0.4%)
+ Free Electrons 393 (0.4%)
+ Collabora Ltd. 234 (0.2%)
+ National Instruments 71 (0.1%)
+ Amarula Solutions 47 (0.0%)
+ Debian.org 43 (0.0%)
+ Xilinx 19 (0.0%)
+ General Electric 3 (0.0%)
+ Sergey Kubushyn 2 (0.0%)
+ Siemens 2 (0.0%)
+ ESD Electronics 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 190)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Samsung 36 (18.9%)
+ NXP 32 (16.8%)
+ Red Hat 31 (16.3%)
+ Texas Instruments 21 (11.1%)
+ (Unknown) 20 (10.5%)
+ NVidia 15 (7.9%)
+ Konsulko Group 11 (5.8%)
+ Google, Inc. 8 (4.2%)
+ Xilinx 6 (3.2%)
+ DENX Software Engineering 4 (2.1%)
+ Broadcom 2 (1.1%)
+ Socionext Inc. 1 (0.5%)
+ Collabora Ltd. 1 (0.5%)
+ Siemens 1 (0.5%)
+ Novell 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 134)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 61 (45.5%)
+ NXP 27 (20.1%)
+ Texas Instruments 13 (9.7%)
+ DENX Software Engineering 5 (3.7%)
+ Samsung 2 (1.5%)
+ Broadcom 2 (1.5%)
+ Socionext Inc. 2 (1.5%)
+ Collabora Ltd. 2 (1.5%)
+ Guntermann & Drunck 2 (1.5%)
+ Red Hat 1 (0.7%)
+ NVidia 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Xilinx 1 (0.7%)
+ Siemens 1 (0.7%)
+ AMD 1 (0.7%)
+ CompuLab 1 (0.7%)
+ Atmel 1 (0.7%)
+ MIPS 1 (0.7%)
+ ARM 1 (0.7%)
+ Free Electrons 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Amarula Solutions 1 (0.7%)
+ Debian.org 1 (0.7%)
+ General Electric 1 (0.7%)
+ Sergey Kubushyn 1 (0.7%)
+ ESD Electronics 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.09.rst b/doc/develop/statistics/u-boot-stats-v2016.09.rst
new file mode 100644
index 0000000..dabd187
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.09.rst
@@ -0,0 +1,649 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.09
+======================================
+
+* Processed 987 csets from 129 developers
+
+* 30 employers found
+
+* A total of 76219 lines added, 14538 removed (delta 61681)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 172 (17.4%)
+ Masahiro Yamada 70 (7.1%)
+ Stephen Warren 37 (3.7%)
+ Vignesh R 36 (3.6%)
+ Tom Rini 24 (2.4%)
+ Ladislav Michl 24 (2.4%)
+ Fabio Estevam 23 (2.3%)
+ Mugunthan V N 22 (2.2%)
+ Chen-Yu Tsai 21 (2.1%)
+ Jaehoon Chung 21 (2.1%)
+ Mario Six 21 (2.1%)
+ Bin Meng 20 (2.0%)
+ Joe Hershberger 19 (1.9%)
+ Hans de Goede 19 (1.9%)
+ Xu Ziyuan 18 (1.8%)
+ Kever Yang 18 (1.8%)
+ Max Filippov 17 (1.7%)
+ Stefan Agner 16 (1.6%)
+ Michal Simek 16 (1.6%)
+ Nobuhiro Iwamatsu 15 (1.5%)
+ Maxime Ripard 14 (1.4%)
+ York Sun 13 (1.3%)
+ Tim Harvey 13 (1.3%)
+ Stefan Roese 12 (1.2%)
+ Andreas Dannenberg 11 (1.1%)
+ Hou Zhiqiang 11 (1.1%)
+ Wenyou Yang 10 (1.0%)
+ Alexander Graf 9 (0.9%)
+ Vanessa Maegima 9 (0.9%)
+ Ziyuan Xu 9 (0.9%)
+ Breno Lima 8 (0.8%)
+ Alexey Brodkin 8 (0.8%)
+ Sumit Garg 8 (0.8%)
+ Lokesh Vutla 7 (0.7%)
+ Stefano Babic 7 (0.7%)
+ Heiko Stübner 7 (0.7%)
+ Boris Brezillon 7 (0.7%)
+ Christopher Spinrath 6 (0.6%)
+ Chris Packham 6 (0.6%)
+ Andreas Fenkart 6 (0.6%)
+ Rajesh Bhagat 6 (0.6%)
+ Siva Durga Prasad Paladugu 6 (0.6%)
+ John Keeping 5 (0.5%)
+ Sekhar Nori 5 (0.5%)
+ Alban Bedel 5 (0.5%)
+ Wenbin Song 4 (0.4%)
+ Vagrant Cascadian 4 (0.4%)
+ Beniamino Galvani 4 (0.4%)
+ Scott Wood 4 (0.4%)
+ karl beldan 4 (0.4%)
+ Chris Zankel 4 (0.4%)
+ Bryan Wu 4 (0.4%)
+ Hongbo Zhang 4 (0.4%)
+ Hannes Schmelzer 3 (0.3%)
+ Robert P. J. Day 3 (0.3%)
+ Andre Przywara 3 (0.3%)
+ Andreas Färber 3 (0.3%)
+ Steve Rae 3 (0.3%)
+ Prabhakar Kushwaha 3 (0.3%)
+ Diego Dorta 3 (0.3%)
+ Qianyu Gong 3 (0.3%)
+ Anatolij Gustschin 3 (0.3%)
+ Toshifumi NISHINAGA 3 (0.3%)
+ Daniel Allred 3 (0.3%)
+ Jonathan Gray 2 (0.2%)
+ Nishanth Menon 2 (0.2%)
+ Madan Srinivas 2 (0.2%)
+ Andreas Bießmann 2 (0.2%)
+ Soeren Moch 2 (0.2%)
+ Icenowy Zheng 2 (0.2%)
+ Tony Lindgren 2 (0.2%)
+ Karl Beldan 2 (0.2%)
+ Masakazu Mochizuki 2 (0.2%)
+ George McCollister 2 (0.2%)
+ Songjun Wu 2 (0.2%)
+ Peng Fan 2 (0.2%)
+ Mingkai Hu 2 (0.2%)
+ Russ Dill 2 (0.2%)
+ Hector Palacios 2 (0.2%)
+ Thomas Gleixner 2 (0.2%)
+ Kevin Hao 2 (0.2%)
+ Ricardo Salveti de Araujo 2 (0.2%)
+ Andrej Rosano 2 (0.2%)
+ Yoshinori Sato 2 (0.2%)
+ Cyrille Pitchen 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Joshua Scott 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Mian Yousaf Kaukab 1 (0.1%)
+ Adam Ford 1 (0.1%)
+ Paul Kocialkowski 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Akshay Bhat 1 (0.1%)
+ Siarhei Siamashka 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Peter Chubb 1 (0.1%)
+ Jens Kuske 1 (0.1%)
+ Simon Baatz 1 (0.1%)
+ Dongpo Li 1 (0.1%)
+ James Byrne 1 (0.1%)
+ Yannick Gicquel 1 (0.1%)
+ Hiroyuki Yokoyama 1 (0.1%)
+ Yaroslav K 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Jon Medhurst (Tixy) 1 (0.1%)
+ Bibek Basu 1 (0.1%)
+ Dirk Eibach 1 (0.1%)
+ Mike Looijmans 1 (0.1%)
+ Chin Liang See 1 (0.1%)
+ Teddy Reed 1 (0.1%)
+ Sandy Patterson 1 (0.1%)
+ Yunhui Cui 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Moritz Fischer 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Marcin Niestroj 1 (0.1%)
+ Karicheri, Muralidharan 1 (0.1%)
+ Brian Norris 1 (0.1%)
+ yeongjun Kim 1 (0.1%)
+ Jeremy Hunt 1 (0.1%)
+ Benjamin Kamath 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Amit Singh Tomar 1 (0.1%)
+ Tobias Doerffel 1 (0.1%)
+ Bernhard Nortmann 1 (0.1%)
+ Gilles Chanteperdrix 1 (0.1%)
+ Petr Kulhavy 1 (0.1%)
+ Hamish Martin 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nobuhiro Iwamatsu 6753 (8.5%)
+ Simon Glass 6075 (7.6%)
+ Stephen Warren 5971 (7.5%)
+ Masakazu Mochizuki 5036 (6.3%)
+ Chris Zankel 4844 (6.1%)
+ Hans de Goede 4539 (5.7%)
+ Kever Yang 3372 (4.2%)
+ Wenyou Yang 3297 (4.1%)
+ Tom Rini 2867 (3.6%)
+ Max Filippov 2337 (2.9%)
+ Masahiro Yamada 2002 (2.5%)
+ Boris Brezillon 1927 (2.4%)
+ Xu Ziyuan 1795 (2.2%)
+ Stefano Babic 1788 (2.2%)
+ Stefan Roese 1472 (1.8%)
+ Thomas Gleixner 1468 (1.8%)
+ Ziyuan Xu 1390 (1.7%)
+ Maxime Ripard 1378 (1.7%)
+ Beniamino Galvani 1276 (1.6%)
+ Akshay Bhat 1244 (1.6%)
+ Joe Hershberger 1109 (1.4%)
+ Stefan Agner 1084 (1.4%)
+ Peter Chubb 1007 (1.3%)
+ Amit Singh Tomar 902 (1.1%)
+ Vignesh R 885 (1.1%)
+ Mario Six 787 (1.0%)
+ Hou Zhiqiang 707 (0.9%)
+ Tim Harvey 692 (0.9%)
+ Toshifumi NISHINAGA 687 (0.9%)
+ Ladislav Michl 686 (0.9%)
+ York Sun 675 (0.8%)
+ George McCollister 530 (0.7%)
+ Mugunthan V N 508 (0.6%)
+ Angelo Dureghello 501 (0.6%)
+ Sumit Garg 468 (0.6%)
+ Songjun Wu 452 (0.6%)
+ Andreas Dannenberg 421 (0.5%)
+ Bin Meng 392 (0.5%)
+ Mingkai Hu 324 (0.4%)
+ Jaehoon Chung 321 (0.4%)
+ Siarhei Siamashka 311 (0.4%)
+ Fabio Estevam 310 (0.4%)
+ Chen-Yu Tsai 308 (0.4%)
+ Hongbo Zhang 304 (0.4%)
+ Alexey Brodkin 281 (0.4%)
+ Stefan Mavrodiev 275 (0.3%)
+ Rajesh Bhagat 272 (0.3%)
+ Alban Bedel 269 (0.3%)
+ Vanessa Maegima 255 (0.3%)
+ Michal Simek 243 (0.3%)
+ Guillaume GARDET 242 (0.3%)
+ Bryan Wu 228 (0.3%)
+ Heiko Schocher 222 (0.3%)
+ Andreas Fenkart 178 (0.2%)
+ Peng Fan 131 (0.2%)
+ Diego Dorta 122 (0.2%)
+ Icenowy Zheng 120 (0.2%)
+ Siva Durga Prasad Paladugu 117 (0.1%)
+ Alexander Graf 110 (0.1%)
+ Daniel Allred 97 (0.1%)
+ Lokesh Vutla 96 (0.1%)
+ Steve Rae 90 (0.1%)
+ Brian Norris 73 (0.1%)
+ Qianyu Gong 71 (0.1%)
+ James Byrne 67 (0.1%)
+ Heiko Stübner 64 (0.1%)
+ Robert P. J. Day 64 (0.1%)
+ Christopher Spinrath 52 (0.1%)
+ Chris Packham 48 (0.1%)
+ Scott Wood 48 (0.1%)
+ Dirk Eibach 45 (0.1%)
+ Jon Medhurst (Tixy) 44 (0.1%)
+ Andrej Rosano 43 (0.1%)
+ John Keeping 41 (0.1%)
+ karl beldan 41 (0.1%)
+ Yoshinori Sato 38 (0.0%)
+ Breno Lima 36 (0.0%)
+ Hamish Martin 36 (0.0%)
+ Sekhar Nori 35 (0.0%)
+ Wenbin Song 32 (0.0%)
+ Bernhard Nortmann 29 (0.0%)
+ Vagrant Cascadian 20 (0.0%)
+ Kevin Hao 20 (0.0%)
+ Jonathan Gray 18 (0.0%)
+ Gilles Chanteperdrix 18 (0.0%)
+ Russ Dill 16 (0.0%)
+ Bibek Basu 15 (0.0%)
+ Jeremy Hunt 15 (0.0%)
+ Eric Nelson 14 (0.0%)
+ Jens Kuske 14 (0.0%)
+ Dongpo Li 14 (0.0%)
+ Hannes Schmelzer 12 (0.0%)
+ Adam Ford 12 (0.0%)
+ Madan Srinivas 11 (0.0%)
+ Soeren Moch 10 (0.0%)
+ Marcin Niestroj 10 (0.0%)
+ Hector Palacios 8 (0.0%)
+ Simon Baatz 8 (0.0%)
+ Andreas Färber 7 (0.0%)
+ Paul Kocialkowski 7 (0.0%)
+ Andre Przywara 5 (0.0%)
+ Nishanth Menon 5 (0.0%)
+ Tony Lindgren 5 (0.0%)
+ Joshua Scott 5 (0.0%)
+ Mian Yousaf Kaukab 5 (0.0%)
+ Chin Liang See 5 (0.0%)
+ Tobias Doerffel 5 (0.0%)
+ Prabhakar Kushwaha 4 (0.0%)
+ Yaroslav K 4 (0.0%)
+ Mike Looijmans 4 (0.0%)
+ Alison Wang 4 (0.0%)
+ Anatolij Gustschin 3 (0.0%)
+ Andreas Bießmann 3 (0.0%)
+ Ricardo Salveti de Araujo 3 (0.0%)
+ Yannick Gicquel 3 (0.0%)
+ Yangbo Lu 3 (0.0%)
+ Yunhui Cui 3 (0.0%)
+ Karl Beldan 2 (0.0%)
+ Hiroyuki Yokoyama 2 (0.0%)
+ Sandy Patterson 2 (0.0%)
+ Soren Brinkmann 2 (0.0%)
+ Karicheri, Muralidharan 2 (0.0%)
+ Cyrille Pitchen 1 (0.0%)
+ Teddy Reed 1 (0.0%)
+ Moritz Fischer 1 (0.0%)
+ yeongjun Kim 1 (0.0%)
+ Benjamin Kamath 1 (0.0%)
+ Daniel Schwierzeck 1 (0.0%)
+ Petr Kulhavy 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 120 (0.8%)
+ Angelo Dureghello 52 (0.4%)
+ Siva Durga Prasad Paladugu 48 (0.3%)
+ karl beldan 29 (0.2%)
+ Lokesh Vutla 23 (0.2%)
+ Breno Lima 21 (0.1%)
+ Adam Ford 12 (0.1%)
+ Eric Nelson 4 (0.0%)
+ Chris Packham 3 (0.0%)
+ Jeremy Hunt 3 (0.0%)
+ Russ Dill 2 (0.0%)
+ Karicheri, Muralidharan 2 (0.0%)
+ Heiko Stübner 1 (0.0%)
+ Robert P. J. Day 1 (0.0%)
+ Tony Lindgren 1 (0.0%)
+ Cyrille Pitchen 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 174)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 37 (21.3%)
+ Hans de Goede 32 (18.4%)
+ Xu Ziyuan 9 (5.2%)
+ Michal Simek 8 (4.6%)
+ Minkyu Kang 7 (4.0%)
+ Stefan Roese 7 (4.0%)
+ Daniel Allred 5 (2.9%)
+ Stephen Warren 5 (2.9%)
+ Nobuhiro Iwamatsu 5 (2.9%)
+ Karl Beldan 4 (2.3%)
+ Wang Dongsheng 4 (2.3%)
+ Jaehoon Chung 4 (2.3%)
+ Tom Rini 4 (2.3%)
+ Andreas Dannenberg 4 (2.3%)
+ Max Filippov 4 (2.3%)
+ Simon Glass 4 (2.3%)
+ Andrew F. Davis 3 (1.7%)
+ Hiroyuki Yokoyama 3 (1.7%)
+ Qianyu Gong 3 (1.7%)
+ Calvin Johnson 2 (1.1%)
+ Aneesh Bansal 2 (1.1%)
+ Ladislav Michl 2 (1.1%)
+ Boris Brezillon 2 (1.1%)
+ York Sun 1 (0.6%)
+ Abhimanyu Saini 1 (0.6%)
+ Jagan Teki 1 (0.6%)
+ Shaohui Xie 1 (0.6%)
+ Mihai Bantea 1 (0.6%)
+ Olof Johansson 1 (0.6%)
+ Chris Johns 1 (0.6%)
+ Anatolij Gustschin 1 (0.6%)
+ Wenbin Song 1 (0.6%)
+ Mingkai Hu 1 (0.6%)
+ Bin Meng 1 (0.6%)
+ Hou Zhiqiang 1 (0.6%)
+ Vignesh R 1 (0.6%)
+ Wenyou Yang 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 532)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 144 (27.1%)
+ Simon Glass 130 (24.4%)
+ York Sun 44 (8.3%)
+ Jagan Teki 31 (5.8%)
+ Bin Meng 29 (5.5%)
+ Mugunthan V N 19 (3.6%)
+ Fabio Estevam 18 (3.4%)
+ Stefan Roese 17 (3.2%)
+ Heiko Schocher 15 (2.8%)
+ Teddy Reed 11 (2.1%)
+ Hans de Goede 7 (1.3%)
+ Stefano Babic 7 (1.3%)
+ Alexander Graf 6 (1.1%)
+ Jaehoon Chung 4 (0.8%)
+ Aneesh Bansal 4 (0.8%)
+ Lokesh Vutla 4 (0.8%)
+ Eric Nelson 4 (0.8%)
+ Andreas Bießmann 3 (0.6%)
+ Andreas Färber 3 (0.6%)
+ George McCollister 3 (0.6%)
+ Minkyu Kang 2 (0.4%)
+ Stephen Warren 2 (0.4%)
+ Nikita Kiryanov 2 (0.4%)
+ Ruchika Gupta 2 (0.4%)
+ Igor Grinberg 2 (0.4%)
+ Marek Vasut 2 (0.4%)
+ Siarhei Siamashka 2 (0.4%)
+ Masahiro Yamada 2 (0.4%)
+ Stefan Agner 2 (0.4%)
+ Xu Ziyuan 1 (0.2%)
+ Daniel Schwierzeck 1 (0.2%)
+ Keerthy 1 (0.2%)
+ Ryan Harkin 1 (0.2%)
+ Shawn Lin 1 (0.2%)
+ Eddie Cai 1 (0.2%)
+ Moritz Fischer 1 (0.2%)
+ Nishanth Menon 1 (0.2%)
+ Joe Hershberger 1 (0.2%)
+ Mario Six 1 (0.2%)
+ Kever Yang 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (10.3%)
+ Fabio Estevam 3 (10.3%)
+ George McCollister 3 (10.3%)
+ Jaehoon Chung 2 (6.9%)
+ Stephen Warren 2 (6.9%)
+ Marek Vasut 2 (6.9%)
+ Lukasz Majewski 2 (6.9%)
+ Simon Glass 1 (3.4%)
+ Stefan Roese 1 (3.4%)
+ Lokesh Vutla 1 (3.4%)
+ Eric Nelson 1 (3.4%)
+ Andreas Färber 1 (3.4%)
+ Ryan Harkin 1 (3.4%)
+ Mario Six 1 (3.4%)
+ Ladislav Michl 1 (3.4%)
+ Breno Lima 1 (3.4%)
+ Kevin Hilman 1 (3.4%)
+ Michael Trimarchi 1 (3.4%)
+ Hannes Schmelzer 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 4 (13.8%)
+ Fabio Estevam 3 (10.3%)
+ Bin Meng 3 (10.3%)
+ Jaehoon Chung 2 (6.9%)
+ Stefan Agner 2 (6.9%)
+ Xu Ziyuan 2 (6.9%)
+ Vignesh R 2 (6.9%)
+ Cyrille Pitchen 2 (6.9%)
+ Stephen Warren 1 (3.4%)
+ Simon Glass 1 (3.4%)
+ Mugunthan V N 1 (3.4%)
+ Stefano Babic 1 (3.4%)
+ Ricardo Salveti de Araujo 1 (3.4%)
+ Hamish Martin 1 (3.4%)
+ Sekhar Nori 1 (3.4%)
+ Jon Medhurst (Tixy) 1 (3.4%)
+ Ziyuan Xu 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (12.5%)
+ York Sun 2 (8.3%)
+ Teddy Reed 2 (8.3%)
+ Robert P. J. Day 2 (8.3%)
+ Guillaume GARDET 2 (8.3%)
+ Xu Ziyuan 1 (4.2%)
+ Eric Nelson 1 (4.2%)
+ Breno Lima 1 (4.2%)
+ Masahiro Yamada 1 (4.2%)
+ Sandy Patterson 1 (4.2%)
+ Stephen L Arnold 1 (4.2%)
+ Ravi Babu 1 (4.2%)
+ Andrew Bradford 1 (4.2%)
+ Thomas Schaefer 1 (4.2%)
+ Dave Liu 1 (4.2%)
+ Alon Bar-Lev 1 (4.2%)
+ Tom Van Deun 1 (4.2%)
+ Vinoth Eswaran 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 6 (25.0%)
+ Tom Rini 3 (12.5%)
+ York Sun 2 (8.3%)
+ Fabio Estevam 2 (8.3%)
+ Stephen Warren 2 (8.3%)
+ Alexander Graf 2 (8.3%)
+ Joe Hershberger 2 (8.3%)
+ Kevin Hao 2 (8.3%)
+ Masahiro Yamada 1 (4.2%)
+ Daniel Schwierzeck 1 (4.2%)
+ Michal Simek 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 246 (24.9%)
+ Google, Inc. 172 (17.4%)
+ NXP 100 (10.1%)
+ Texas Instruments 91 (9.2%)
+ Socionext Inc. 70 (7.1%)
+ NVidia 41 (4.2%)
+ Rockchip 36 (3.6%)
+ Konsulko Group 24 (2.4%)
+ DENX Software Engineering 23 (2.3%)
+ Guntermann & Drunck 22 (2.2%)
+ Samsung 21 (2.1%)
+ Red Hat 19 (1.9%)
+ National Instruments 19 (1.9%)
+ AMD 16 (1.6%)
+ Nobuhiro Iwamatsu 15 (1.5%)
+ Free Electrons 14 (1.4%)
+ Toradex 14 (1.4%)
+ Atmel 13 (1.3%)
+ Xilinx 7 (0.7%)
+ Debian.org 4 (0.4%)
+ ARM 3 (0.3%)
+ Novell 3 (0.3%)
+ Atomide 2 (0.2%)
+ BayLibre SAS 2 (0.2%)
+ Wind River 2 (0.2%)
+ Digi International 2 (0.2%)
+ Hitachi 2 (0.2%)
+ linutronix 2 (0.2%)
+ Linaro 1 (0.1%)
+ Renesas Electronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 21579 (27.0%)
+ Nobuhiro Iwamatsu 6753 (8.5%)
+ NVidia 6211 (7.8%)
+ Google, Inc. 6075 (7.6%)
+ Rockchip 5167 (6.5%)
+ Hitachi 5036 (6.3%)
+ Red Hat 4539 (5.7%)
+ Atmel 3750 (4.7%)
+ NXP 3590 (4.5%)
+ DENX Software Engineering 3485 (4.4%)
+ Konsulko Group 2867 (3.6%)
+ Texas Instruments 2076 (2.6%)
+ Socionext Inc. 2002 (2.5%)
+ linutronix 1468 (1.8%)
+ Free Electrons 1378 (1.7%)
+ National Instruments 1109 (1.4%)
+ Toradex 1079 (1.4%)
+ Guntermann & Drunck 832 (1.0%)
+ Samsung 321 (0.4%)
+ AMD 243 (0.3%)
+ Xilinx 119 (0.1%)
+ Linaro 44 (0.1%)
+ Debian.org 20 (0.0%)
+ Wind River 20 (0.0%)
+ Digi International 8 (0.0%)
+ Novell 7 (0.0%)
+ ARM 5 (0.0%)
+ Atomide 5 (0.0%)
+ BayLibre SAS 2 (0.0%)
+ Renesas Electronics 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 174)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NVidia 42 (24.1%)
+ Red Hat 32 (18.4%)
+ NXP 18 (10.3%)
+ Texas Instruments 13 (7.5%)
+ (Unknown) 12 (6.9%)
+ Samsung 11 (6.3%)
+ Rockchip 9 (5.2%)
+ DENX Software Engineering 8 (4.6%)
+ Xilinx 8 (4.6%)
+ Nobuhiro Iwamatsu 5 (2.9%)
+ Google, Inc. 4 (2.3%)
+ Konsulko Group 4 (2.3%)
+ Renesas Electronics 3 (1.7%)
+ Free Electrons 2 (1.1%)
+ Atmel 1 (0.6%)
+ IBM 1 (0.6%)
+ Openedev 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 131)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 68 (51.9%)
+ NXP 16 (12.2%)
+ Texas Instruments 10 (7.6%)
+ DENX Software Engineering 4 (3.1%)
+ NVidia 3 (2.3%)
+ Atmel 3 (2.3%)
+ Rockchip 2 (1.5%)
+ Xilinx 2 (1.5%)
+ Guntermann & Drunck 2 (1.5%)
+ Red Hat 1 (0.8%)
+ Samsung 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Renesas Electronics 1 (0.8%)
+ Free Electrons 1 (0.8%)
+ Hitachi 1 (0.8%)
+ Socionext Inc. 1 (0.8%)
+ linutronix 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Toradex 1 (0.8%)
+ AMD 1 (0.8%)
+ Linaro 1 (0.8%)
+ Debian.org 1 (0.8%)
+ Wind River 1 (0.8%)
+ Digi International 1 (0.8%)
+ Novell 1 (0.8%)
+ ARM 1 (0.8%)
+ Atomide 1 (0.8%)
+ BayLibre SAS 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2016.11.rst b/doc/develop/statistics/u-boot-stats-v2016.11.rst
new file mode 100644
index 0000000..3bf61d5
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2016.11.rst
@@ -0,0 +1,562 @@
+:orphan:
+
+Release Statistics for U-Boot v2016.11
+======================================
+
+* Processed 1031 csets from 114 developers
+
+* 26 employers found
+
+* A total of 73321 lines added, 20937 removed (delta 52384)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 195 (18.9%)
+ Masahiro Yamada 109 (10.6%)
+ Stefan Brüns 50 (4.8%)
+ Stephen Warren 48 (4.7%)
+ Paul Burton 38 (3.7%)
+ Stefan Roese 36 (3.5%)
+ Peng Fan 35 (3.4%)
+ Jagan Teki 33 (3.2%)
+ Tom Rini 30 (2.9%)
+ Kever Yang 29 (2.8%)
+ York Sun 22 (2.1%)
+ Alexander Graf 21 (2.0%)
+ Wenyou Yang 18 (1.7%)
+ Keerthy 17 (1.6%)
+ Michal Simek 15 (1.5%)
+ Sriram Dash 13 (1.3%)
+ Bin Meng 12 (1.2%)
+ Stefan Agner 12 (1.2%)
+ Lokesh Vutla 9 (0.9%)
+ Chris Packham 9 (0.9%)
+ Jacob Chen 9 (0.9%)
+ Chen-Yu Tsai 9 (0.9%)
+ Chin Liang See 9 (0.9%)
+ B, Ravi 9 (0.9%)
+ Marcel Ziswiler 8 (0.8%)
+ Heiko Schocher 8 (0.8%)
+ Andrew F. Davis 8 (0.8%)
+ Fabio Estevam 7 (0.7%)
+ Jaehoon Chung 7 (0.7%)
+ Hou Zhiqiang 7 (0.7%)
+ Philipp Tomsich 6 (0.6%)
+ Albert ARIBAUD (3ADEV) 6 (0.6%)
+ Zubair Lutfullah Kakakhel 6 (0.6%)
+ Ladislav Michl 5 (0.5%)
+ Andre Przywara 5 (0.5%)
+ Mugunthan V N 5 (0.5%)
+ Moritz Fischer 5 (0.5%)
+ Walter Schweizer 5 (0.5%)
+ Hongbo Zhang 5 (0.5%)
+ Daniel Allred 5 (0.5%)
+ Sanchayan Maity 5 (0.5%)
+ Shaohui Xie 5 (0.5%)
+ Vignesh R 4 (0.4%)
+ Siva Durga Prasad Paladugu 4 (0.4%)
+ Vagrant Cascadian 4 (0.4%)
+ Sandy Patterson 4 (0.4%)
+ Robert P. J. Day 4 (0.4%)
+ Gary Bisson 4 (0.4%)
+ Andreas Fenkart 4 (0.4%)
+ Sumit Garg 4 (0.4%)
+ Xu Ziyuan 4 (0.4%)
+ Petr Kulhavy 4 (0.4%)
+ Michael Walle 4 (0.4%)
+ MengDongyang 4 (0.4%)
+ Shengzhou Liu 4 (0.4%)
+ Hans de Goede 3 (0.3%)
+ Diego Dorta 3 (0.3%)
+ Jelle van der Waa 3 (0.3%)
+ Adam Ford 3 (0.3%)
+ Nishanth Menon 3 (0.3%)
+ John Keeping 3 (0.3%)
+ Marek Vasut 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Tom Warren 2 (0.2%)
+ Sylvain Lesne 2 (0.2%)
+ Zhao Qiang 2 (0.2%)
+ Peter Chubb 2 (0.2%)
+ Roger Quadros 2 (0.2%)
+ Pratiyush Srivastava 2 (0.2%)
+ Mingkai Hu 2 (0.2%)
+ Tang Yuantian 2 (0.2%)
+ Soeren Moch 2 (0.2%)
+ Angelo Dureghello 2 (0.2%)
+ Gong Qianyu 2 (0.2%)
+ Fabien Parent 1 (0.1%)
+ Alex G 1 (0.1%)
+ Ash Charles 1 (0.1%)
+ Tomeu Vizoso 1 (0.1%)
+ Patrick Delaunay 1 (0.1%)
+ Alexander von Gernler 1 (0.1%)
+ Amit Singh Tomar 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Emmanuel Vadot 1 (0.1%)
+ David Gibson 1 (0.1%)
+ Nicolae Rosia 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Ye Li 1 (0.1%)
+ Maxime Ripard 1 (0.1%)
+ Robin Randhawa 1 (0.1%)
+ Andreas J. Reichel 1 (0.1%)
+ Prabhakar Kushwaha 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Andrea Merello 1 (0.1%)
+ Josh Marshall 1 (0.1%)
+ Jens Kuske 1 (0.1%)
+ Ken Lin 1 (0.1%)
+ Sudeep Holla 1 (0.1%)
+ Semen Protsenko 1 (0.1%)
+ Tomas Melin 1 (0.1%)
+ Adam Oleksy 1 (0.1%)
+ Siarhei Siamashka 1 (0.1%)
+ Clemens Gruber 1 (0.1%)
+ Wenbin Song 1 (0.1%)
+ Xiaoliang Yang 1 (0.1%)
+ Alexandre Courbot 1 (0.1%)
+ Ross Parker 1 (0.1%)
+ Filip Brozovic 1 (0.1%)
+ Murali Karicheri 1 (0.1%)
+ rick 1 (0.1%)
+ Alban Bedel 1 (0.1%)
+ Bryan Wu 1 (0.1%)
+ jinghua 1 (0.1%)
+ Lad, Prabhakar 1 (0.1%)
+ Alexey Brodkin 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 20424 (25.5%)
+ Stefan Roese 7593 (9.5%)
+ Masahiro Yamada 6220 (7.8%)
+ Stephen Warren 5686 (7.1%)
+ Jagan Teki 5684 (7.1%)
+ Peng Fan 5567 (7.0%)
+ Paul Burton 1883 (2.4%)
+ Shaohui Xie 1880 (2.3%)
+ Stefan Agner 1791 (2.2%)
+ Philipp Tomsich 1676 (2.1%)
+ Kever Yang 1569 (2.0%)
+ Mingkai Hu 1485 (1.9%)
+ Keerthy 1320 (1.6%)
+ Stefan Brüns 1026 (1.3%)
+ Wenyou Yang 983 (1.2%)
+ Mugunthan V N 853 (1.1%)
+ York Sun 826 (1.0%)
+ Tom Rini 769 (1.0%)
+ Walter Schweizer 650 (0.8%)
+ Lokesh Vutla 598 (0.7%)
+ Chris Packham 597 (0.7%)
+ Bin Meng 571 (0.7%)
+ Siva Durga Prasad Paladugu 558 (0.7%)
+ Alexander Graf 555 (0.7%)
+ Albert ARIBAUD (3ADEV) 539 (0.7%)
+ Hongbo Zhang 518 (0.6%)
+ Moritz Fischer 466 (0.6%)
+ Hou Zhiqiang 465 (0.6%)
+ Michael Walle 455 (0.6%)
+ Heiko Schocher 426 (0.5%)
+ Shengzhou Liu 426 (0.5%)
+ Zubair Lutfullah Kakakhel 347 (0.4%)
+ Jacob Chen 342 (0.4%)
+ Zhao Qiang 325 (0.4%)
+ Fabio Estevam 314 (0.4%)
+ MengDongyang 299 (0.4%)
+ B, Ravi 282 (0.4%)
+ Michal Simek 275 (0.3%)
+ Daniel Allred 262 (0.3%)
+ Petr Kulhavy 259 (0.3%)
+ Tom Warren 256 (0.3%)
+ Sanchayan Maity 233 (0.3%)
+ Sumit Garg 218 (0.3%)
+ Sriram Dash 206 (0.3%)
+ Andrew F. Davis 200 (0.2%)
+ Diego Dorta 163 (0.2%)
+ Jelle van der Waa 150 (0.2%)
+ Maxime Ripard 147 (0.2%)
+ Jaehoon Chung 135 (0.2%)
+ Roger Quadros 121 (0.2%)
+ Marcel Ziswiler 100 (0.1%)
+ Ladislav Michl 87 (0.1%)
+ rick 77 (0.1%)
+ Chen-Yu Tsai 76 (0.1%)
+ Adam Oleksy 67 (0.1%)
+ Amit Singh Tomar 56 (0.1%)
+ Sudeep Holla 53 (0.1%)
+ Vignesh R 51 (0.1%)
+ Andre Przywara 49 (0.1%)
+ Robert P. J. Day 49 (0.1%)
+ Guillaume GARDET 49 (0.1%)
+ Chin Liang See 45 (0.1%)
+ Andreas Fenkart 45 (0.1%)
+ Tomeu Vizoso 44 (0.1%)
+ Gary Bisson 43 (0.1%)
+ Jens Kuske 43 (0.1%)
+ Hans de Goede 42 (0.1%)
+ Adam Ford 40 (0.0%)
+ Xu Ziyuan 37 (0.0%)
+ Tomas Melin 37 (0.0%)
+ Lukasz Majewski 34 (0.0%)
+ Angelo Dureghello 30 (0.0%)
+ Ash Charles 26 (0.0%)
+ Semen Protsenko 25 (0.0%)
+ Alban Bedel 24 (0.0%)
+ Sandy Patterson 21 (0.0%)
+ Hannes Schmelzer 21 (0.0%)
+ Nishanth Menon 18 (0.0%)
+ Marek Vasut 18 (0.0%)
+ Vagrant Cascadian 17 (0.0%)
+ Xiaoliang Yang 17 (0.0%)
+ Pratiyush Srivastava 16 (0.0%)
+ Andrea Merello 16 (0.0%)
+ Gong Qianyu 15 (0.0%)
+ Tang Yuantian 11 (0.0%)
+ Prabhakar Kushwaha 11 (0.0%)
+ Fabien Parent 8 (0.0%)
+ David Gibson 7 (0.0%)
+ Ken Lin 6 (0.0%)
+ John Keeping 5 (0.0%)
+ Peter Chubb 5 (0.0%)
+ Emmanuel Vadot 5 (0.0%)
+ Murali Karicheri 5 (0.0%)
+ jinghua 5 (0.0%)
+ Sylvain Lesne 4 (0.0%)
+ Ye Li 4 (0.0%)
+ Siarhei Siamashka 4 (0.0%)
+ Soeren Moch 3 (0.0%)
+ Robin Randhawa 3 (0.0%)
+ Wenbin Song 3 (0.0%)
+ Bryan Wu 3 (0.0%)
+ Alexey Brodkin 3 (0.0%)
+ Alex G 2 (0.0%)
+ Nicolae Rosia 2 (0.0%)
+ Andreas J. Reichel 2 (0.0%)
+ Josh Marshall 2 (0.0%)
+ Clemens Gruber 2 (0.0%)
+ Ross Parker 2 (0.0%)
+ Patrick Delaunay 1 (0.0%)
+ Alexander von Gernler 1 (0.0%)
+ Stefan Mavrodiev 1 (0.0%)
+ Alexandre Courbot 1 (0.0%)
+ Filip Brozovic 1 (0.0%)
+ Lad, Prabhakar 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 202 (1.0%)
+ Tom Warren 160 (0.8%)
+ Shengzhou Liu 133 (0.6%)
+ Lokesh Vutla 125 (0.6%)
+ York Sun 66 (0.3%)
+ Ladislav Michl 21 (0.1%)
+ Alban Bedel 21 (0.1%)
+ Xu Ziyuan 17 (0.1%)
+ Prabhakar Kushwaha 11 (0.1%)
+ Nishanth Menon 4 (0.0%)
+ Robert P. J. Day 3 (0.0%)
+ Andreas Fenkart 3 (0.0%)
+ Adam Ford 3 (0.0%)
+ Peter Chubb 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 171)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Warren 35 (20.5%)
+ Hans de Goede 24 (14.0%)
+ Tom Rini 17 (9.9%)
+ Alexander Graf 11 (6.4%)
+ Stefan Roese 10 (5.8%)
+ Ye Li 8 (4.7%)
+ Gong Qianyu 8 (4.7%)
+ Chen-Yu Tsai 6 (3.5%)
+ Simon Glass 6 (3.5%)
+ Rajesh Bhagat 5 (2.9%)
+ Kever Yang 4 (2.3%)
+ David Gibson 3 (1.8%)
+ Michal Simek 3 (1.8%)
+ Shengzhou Liu 2 (1.2%)
+ Lokesh Vutla 2 (1.2%)
+ Prabhakar Kushwaha 2 (1.2%)
+ Aneesh Bansal 2 (1.2%)
+ Mingkai Hu 2 (1.2%)
+ Stephen Warren 2 (1.2%)
+ Xu Ziyuan 1 (0.6%)
+ Peter Chubb 1 (0.6%)
+ Songjun Wu 1 (0.6%)
+ Utkarsh Gupta 1 (0.6%)
+ Christian Storm 1 (0.6%)
+ Jan Kiszka 1 (0.6%)
+ Troy Kisky 1 (0.6%)
+ Akshay Bhat 1 (0.6%)
+ Bai Ping 1 (0.6%)
+ Anson Huang 1 (0.6%)
+ Elaine Zhang 1 (0.6%)
+ Suman Anna 1 (0.6%)
+ Andre Przywara 1 (0.6%)
+ Gary Bisson 1 (0.6%)
+ Marcel Ziswiler 1 (0.6%)
+ Siva Durga Prasad Paladugu 1 (0.6%)
+ Keerthy 1 (0.6%)
+ Shaohui Xie 1 (0.6%)
+ Peng Fan 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 510)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 132 (25.9%)
+ Simon Glass 120 (23.5%)
+ Bin Meng 62 (12.2%)
+ York Sun 62 (12.2%)
+ Jagan Teki 20 (3.9%)
+ Lukasz Majewski 16 (3.1%)
+ Heiko Schocher 16 (3.1%)
+ Hans de Goede 14 (2.7%)
+ Andreas Bießmann 10 (2.0%)
+ Alexander Graf 9 (1.8%)
+ Stefano Babic 5 (1.0%)
+ Paul Burton 5 (1.0%)
+ Kever Yang 4 (0.8%)
+ Lokesh Vutla 4 (0.8%)
+ Peng Fan 4 (0.8%)
+ Javier Martinez Canillas 3 (0.6%)
+ Daniel Schwierzeck 3 (0.6%)
+ Marek Vasut 3 (0.6%)
+ Jaehoon Chung 3 (0.6%)
+ Stefan Roese 2 (0.4%)
+ Joe Hershberger 2 (0.4%)
+ Minkyu Kang 2 (0.4%)
+ Stephen Warren 1 (0.2%)
+ Sekhar Nori 1 (0.2%)
+ Eric Nelson 1 (0.2%)
+ Benoît Thébaudeau 1 (0.2%)
+ Hannes Schmelzer 1 (0.2%)
+ Angelo Dureghello 1 (0.2%)
+ Andrew F. Davis 1 (0.2%)
+ Fabio Estevam 1 (0.2%)
+ Stefan Agner 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 4 (22.2%)
+ Vagrant Cascadian 3 (16.7%)
+ Bin Meng 2 (11.1%)
+ Javier Martinez Canillas 2 (11.1%)
+ Stephen Warren 2 (11.1%)
+ Tom Rini 1 (5.6%)
+ Troy Kisky 1 (5.6%)
+ Marcel Ziswiler 1 (5.6%)
+ Jon Medhurst 1 (5.6%)
+ George McCollister 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kever Yang 5 (27.8%)
+ Simon Glass 2 (11.1%)
+ Stephen Warren 2 (11.1%)
+ Xu Ziyuan 2 (11.1%)
+ Ladislav Michl 2 (11.1%)
+ Paul Burton 1 (5.6%)
+ Stefan Roese 1 (5.6%)
+ Stefan Agner 1 (5.6%)
+ Alexandre Courbot 1 (5.6%)
+ Sudeep Holla 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 1 (20.0%)
+ Brad Griffis 1 (20.0%)
+ Jon Masters 1 (20.0%)
+ David Binderman 1 (20.0%)
+ Stefan Brüns 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 5)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 2 (40.0%)
+ Stephen Warren 1 (20.0%)
+ David Gibson 1 (20.0%)
+ Nishanth Menon 1 (20.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 230 (22.3%)
+ Google, Inc. 195 (18.9%)
+ Socionext Inc. 109 (10.6%)
+ NXP 96 (9.3%)
+ Texas Instruments 63 (6.1%)
+ NVidia 52 (5.0%)
+ DENX Software Engineering 46 (4.5%)
+ Rockchip 46 (4.5%)
+ MIPS 38 (3.7%)
+ Konsulko Group 30 (2.9%)
+ Toradex 25 (2.4%)
+ Amarula Solutions 22 (2.1%)
+ Atmel 18 (1.7%)
+ AMD 15 (1.5%)
+ Openedev 11 (1.1%)
+ ARM 7 (0.7%)
+ Samsung 7 (0.7%)
+ Boundary Devices 4 (0.4%)
+ Debian.org 4 (0.4%)
+ Xilinx 4 (0.4%)
+ Red Hat 3 (0.3%)
+ BayLibre SAS 1 (0.1%)
+ Collabora Ltd. 1 (0.1%)
+ Free Electrons 1 (0.1%)
+ Linaro 1 (0.1%)
+ Marvell 1 (0.1%)
+ Nokia 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Google, Inc. 20424 (25.5%)
+ (Unknown) 12922 (16.1%)
+ DENX Software Engineering 8037 (10.0%)
+ NXP 7674 (9.6%)
+ Socionext Inc. 6220 (7.8%)
+ NVidia 5946 (7.4%)
+ Amarula Solutions 5457 (6.8%)
+ Texas Instruments 3710 (4.6%)
+ Rockchip 2247 (2.8%)
+ Toradex 2124 (2.7%)
+ MIPS 1883 (2.4%)
+ Atmel 983 (1.2%)
+ Konsulko Group 769 (1.0%)
+ Xilinx 558 (0.7%)
+ AMD 275 (0.3%)
+ Openedev 227 (0.3%)
+ Free Electrons 147 (0.2%)
+ Samsung 135 (0.2%)
+ ARM 105 (0.1%)
+ Nokia 67 (0.1%)
+ Collabora Ltd. 44 (0.1%)
+ Boundary Devices 43 (0.1%)
+ Red Hat 42 (0.1%)
+ Linaro 25 (0.0%)
+ Debian.org 17 (0.0%)
+ BayLibre SAS 8 (0.0%)
+ Marvell 5 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 171)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NVidia 37 (21.6%)
+ NXP 34 (19.9%)
+ Red Hat 24 (14.0%)
+ Konsulko Group 17 (9.9%)
+ (Unknown) 13 (7.6%)
+ Novell 11 (6.4%)
+ DENX Software Engineering 10 (5.8%)
+ Google, Inc. 6 (3.5%)
+ Rockchip 6 (3.5%)
+ Texas Instruments 4 (2.3%)
+ Xilinx 4 (2.3%)
+ Boundary Devices 2 (1.2%)
+ Toradex 1 (0.6%)
+ ARM 1 (0.6%)
+ Siemens 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 116)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 51 (44.0%)
+ NXP 19 (16.4%)
+ Texas Instruments 10 (8.6%)
+ NVidia 4 (3.4%)
+ Rockchip 4 (3.4%)
+ DENX Software Engineering 3 (2.6%)
+ Toradex 3 (2.6%)
+ ARM 3 (2.6%)
+ Red Hat 1 (0.9%)
+ Konsulko Group 1 (0.9%)
+ Google, Inc. 1 (0.9%)
+ Xilinx 1 (0.9%)
+ Boundary Devices 1 (0.9%)
+ Socionext Inc. 1 (0.9%)
+ Amarula Solutions 1 (0.9%)
+ MIPS 1 (0.9%)
+ Atmel 1 (0.9%)
+ AMD 1 (0.9%)
+ Openedev 1 (0.9%)
+ Free Electrons 1 (0.9%)
+ Samsung 1 (0.9%)
+ Nokia 1 (0.9%)
+ Collabora Ltd. 1 (0.9%)
+ Linaro 1 (0.9%)
+ Debian.org 1 (0.9%)
+ BayLibre SAS 1 (0.9%)
+ Marvell 1 (0.9%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.01.rst b/doc/develop/statistics/u-boot-stats-v2017.01.rst
new file mode 100644
index 0000000..4a996ea
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.01.rst
@@ -0,0 +1,620 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.01
+======================================
+
+* Processed 883 csets from 137 developers
+
+* 29 employers found
+
+* A total of 112574 lines added, 72846 removed (delta 39728)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ York Sun 134 (15.2%)
+ Simon Glass 73 (8.3%)
+ Jagan Teki 68 (7.7%)
+ Michal Simek 54 (6.1%)
+ Vladimir Zapolskiy 24 (2.7%)
+ Peng Fan 23 (2.6%)
+ Stefan Roese 20 (2.3%)
+ Lokesh Vutla 20 (2.3%)
+ Tom Rini 19 (2.2%)
+ Fabien Parent 19 (2.2%)
+ Alexander Graf 18 (2.0%)
+ Masahiro Yamada 16 (1.8%)
+ Marcel Ziswiler 14 (1.6%)
+ Andrew F. Davis 12 (1.4%)
+ Mugunthan V N 12 (1.4%)
+ Marek Vasut 11 (1.2%)
+ Breno Lima 11 (1.2%)
+ Phil Edworthy 11 (1.2%)
+ Konstantin Porotchkin 10 (1.1%)
+ Stefan Agner 10 (1.1%)
+ Priyanka Jain 10 (1.1%)
+ Stefan Brüns 9 (1.0%)
+ Andre Przywara 9 (1.0%)
+ Daniel Schwierzeck 9 (1.0%)
+ Fabian Vogt 9 (1.0%)
+ Semen Protsenko 9 (1.0%)
+ Nishanth Menon 8 (0.9%)
+ Siva Durga Prasad Paladugu 8 (0.9%)
+ Keerthy 7 (0.8%)
+ Fabio Estevam 6 (0.7%)
+ Sven Ebenfeld 6 (0.7%)
+ Jaehoon Chung 6 (0.7%)
+ Chris Packham 6 (0.7%)
+ Max Krummenacher 6 (0.7%)
+ Hongbo Zhang 6 (0.7%)
+ Eric Nelson 6 (0.7%)
+ Vignesh R 5 (0.6%)
+ Adam Ford 5 (0.6%)
+ Kever Yang 5 (0.6%)
+ Shengzhou Liu 5 (0.6%)
+ Yuan Yao 5 (0.6%)
+ Walt Feasel 5 (0.6%)
+ Nathan Rossi 4 (0.5%)
+ shaohui xie 4 (0.5%)
+ Tomas Melin 4 (0.5%)
+ Maxime Ripard 4 (0.5%)
+ Andrew Duda 4 (0.5%)
+ Filip Drazic 4 (0.5%)
+ Dmitry Lifshitz 3 (0.3%)
+ Emmanuel Vadot 3 (0.3%)
+ Bin Meng 3 (0.3%)
+ Marcin Niestroj 3 (0.3%)
+ Hou Zhiqiang 3 (0.3%)
+ Olliver Schinagl 3 (0.3%)
+ Yegor Yefremov 3 (0.3%)
+ Yann E. MORIN 3 (0.3%)
+ Andreas Färber 3 (0.3%)
+ Alison Wang 3 (0.3%)
+ Kedareswara rao Appana 3 (0.3%)
+ Naga Sureshkumar Relli 3 (0.3%)
+ Mike Looijmans 3 (0.3%)
+ Robert P. J. Day 2 (0.2%)
+ Jean-Jacques Hiblot 2 (0.2%)
+ Jonathan Gray 2 (0.2%)
+ Moritz Fischer 2 (0.2%)
+ Sanchayan Maity 2 (0.2%)
+ Stefano Babic 2 (0.2%)
+ Łukasz Majewski 2 (0.2%)
+ Suman Anna 2 (0.2%)
+ Harinarayan Bhatta 2 (0.2%)
+ Sekhar Nori 2 (0.2%)
+ Paul Burton 2 (0.2%)
+ Christoph Fritz 2 (0.2%)
+ Cédric Schieli 2 (0.2%)
+ Heiko Schocher 2 (0.2%)
+ Bharat Kumar Gogada 2 (0.2%)
+ Ladislav Michl 1 (0.1%)
+ Misha Komarovskiy 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Uri Mashiach 1 (0.1%)
+ Kevin Hilman 1 (0.1%)
+ George McCollister 1 (0.1%)
+ Baruch Siach 1 (0.1%)
+ Ajay Bhargav 1 (0.1%)
+ Philipp Skadorov 1 (0.1%)
+ Zakharov Vlad 1 (0.1%)
+ Icenowy Zheng 1 (0.1%)
+ Bradley Bolen 1 (0.1%)
+ Patrick Bruenn 1 (0.1%)
+ Ye.Li 1 (0.1%)
+ Cyrille Pitchen 1 (0.1%)
+ Jyri Sarha 1 (0.1%)
+ Christian Riesch 1 (0.1%)
+ Yehuda Yitschak 1 (0.1%)
+ Patrick Delaunay 1 (0.1%)
+ Alex 1 (0.1%)
+ Dinh Nguyen 1 (0.1%)
+ Bill Randle 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Changming Huang 1 (0.1%)
+ Bartosz Golaszewski 1 (0.1%)
+ Shadi Ammouri 1 (0.1%)
+ Niko Mauno 1 (0.1%)
+ Schuyler Patton 1 (0.1%)
+ Steve Kipisz 1 (0.1%)
+ Madan Srinivas 1 (0.1%)
+ Meng Yi 1 (0.1%)
+ Seung-Woo Kim 1 (0.1%)
+ Sebastien Bourdelin 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Angus Ainslie 1 (0.1%)
+ Ken Lin 1 (0.1%)
+ Soeren Moch 1 (0.1%)
+ Liviu Dudau 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Nicolae Rosia 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ Mario Six 1 (0.1%)
+ Philipp Tomsich 1 (0.1%)
+ FUKAUMI Naoki 1 (0.1%)
+ Boris Brezillon 1 (0.1%)
+ Hans de Goede 1 (0.1%)
+ Jelle van der Waa 1 (0.1%)
+ Jacob Chen 1 (0.1%)
+ Thomas Abraham 1 (0.1%)
+ Radu Bacrau 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Sriram Dash 1 (0.1%)
+ Feng Li 1 (0.1%)
+ Pratiyush Srivastava 1 (0.1%)
+ Anurag Kumar Vulisha 1 (0.1%)
+ Hyun Kwon 1 (0.1%)
+ Sai Krishna Potthuri 1 (0.1%)
+ Nava kishore Manne 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ VNSL Durga 1 (0.1%)
+ Oleksandr Tymoshenko 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 55400 (31.8%)
+ Michal Simek 55205 (31.7%)
+ Simon Glass 9330 (5.4%)
+ Max Krummenacher 5204 (3.0%)
+ Jagan Teki 5024 (2.9%)
+ Peng Fan 4721 (2.7%)
+ Masahiro Yamada 3790 (2.2%)
+ Lokesh Vutla 3616 (2.1%)
+ York Sun 3139 (1.8%)
+ Patrick Bruenn 2557 (1.5%)
+ Konstantin Porotchkin 1968 (1.1%)
+ Anatolij Gustschin 1528 (0.9%)
+ Marcel Ziswiler 1245 (0.7%)
+ Siva Durga Prasad Paladugu 1231 (0.7%)
+ Mike Looijmans 1188 (0.7%)
+ Fabian Vogt 1181 (0.7%)
+ Feng Li 999 (0.6%)
+ Stefan Roese 997 (0.6%)
+ Breno Lima 971 (0.6%)
+ Vladimir Zapolskiy 949 (0.5%)
+ Dmitry Lifshitz 847 (0.5%)
+ Christoph Fritz 845 (0.5%)
+ Marcin Niestroj 783 (0.4%)
+ Daniel Schwierzeck 582 (0.3%)
+ Misha Komarovskiy 568 (0.3%)
+ Shadi Ammouri 546 (0.3%)
+ Hongbo Zhang 522 (0.3%)
+ Alison Wang 471 (0.3%)
+ Mugunthan V N 460 (0.3%)
+ Alexander Graf 446 (0.3%)
+ Nathan Rossi 406 (0.2%)
+ Priyanka Jain 383 (0.2%)
+ Nishanth Menon 370 (0.2%)
+ Sebastien Bourdelin 364 (0.2%)
+ Steve Kipisz 286 (0.2%)
+ Jaehoon Chung 277 (0.2%)
+ Harinarayan Bhatta 269 (0.2%)
+ Suman Anna 263 (0.2%)
+ Semen Protsenko 245 (0.1%)
+ Andrew Duda 242 (0.1%)
+ Shengzhou Liu 238 (0.1%)
+ Marek Vasut 237 (0.1%)
+ Sven Ebenfeld 237 (0.1%)
+ Stefan Brüns 226 (0.1%)
+ Andrew F. Davis 185 (0.1%)
+ Yegor Yefremov 176 (0.1%)
+ shaohui xie 170 (0.1%)
+ Sekhar Nori 162 (0.1%)
+ Stefan Agner 151 (0.1%)
+ Fabien Parent 150 (0.1%)
+ Keerthy 142 (0.1%)
+ Phil Edworthy 124 (0.1%)
+ Chris Packham 117 (0.1%)
+ Eric Nelson 114 (0.1%)
+ Meng Yi 114 (0.1%)
+ Yuan Yao 106 (0.1%)
+ Stefano Babic 97 (0.1%)
+ FUKAUMI Naoki 93 (0.1%)
+ Tomas Melin 89 (0.1%)
+ Emmanuel Vadot 86 (0.0%)
+ Schuyler Patton 86 (0.0%)
+ Yehuda Yitschak 83 (0.0%)
+ Cédric Schieli 76 (0.0%)
+ Fabio Estevam 65 (0.0%)
+ Cyrille Pitchen 63 (0.0%)
+ Uri Mashiach 61 (0.0%)
+ Vignesh R 54 (0.0%)
+ Ken Lin 54 (0.0%)
+ Philipp Skadorov 53 (0.0%)
+ Jonathan Gray 51 (0.0%)
+ Kever Yang 46 (0.0%)
+ Icenowy Zheng 45 (0.0%)
+ Kedareswara rao Appana 44 (0.0%)
+ VNSL Durga 44 (0.0%)
+ Filip Drazic 43 (0.0%)
+ Guillaume GARDET 43 (0.0%)
+ Jelle van der Waa 40 (0.0%)
+ Heiko Schocher 33 (0.0%)
+ Jyri Sarha 33 (0.0%)
+ Soeren Moch 33 (0.0%)
+ Bill Randle 32 (0.0%)
+ Angus Ainslie 30 (0.0%)
+ Bin Meng 29 (0.0%)
+ Olliver Schinagl 28 (0.0%)
+ Yann E. MORIN 28 (0.0%)
+ Robert P. J. Day 28 (0.0%)
+ George McCollister 28 (0.0%)
+ Moritz Fischer 27 (0.0%)
+ Kevin Hilman 26 (0.0%)
+ Adam Ford 25 (0.0%)
+ Alex 24 (0.0%)
+ Walt Feasel 23 (0.0%)
+ Anurag Kumar Vulisha 23 (0.0%)
+ Oleksandr Tymoshenko 22 (0.0%)
+ Andre Przywara 20 (0.0%)
+ Naga Sureshkumar Relli 19 (0.0%)
+ Stephen Warren 18 (0.0%)
+ Maxime Ripard 17 (0.0%)
+ Soren Brinkmann 17 (0.0%)
+ Lukasz Majewski 15 (0.0%)
+ Zakharov Vlad 14 (0.0%)
+ Hou Zhiqiang 13 (0.0%)
+ Ajay Bhargav 13 (0.0%)
+ Thomas Abraham 12 (0.0%)
+ Tang Yuantian 11 (0.0%)
+ Sai Krishna Potthuri 9 (0.0%)
+ Jean-Jacques Hiblot 8 (0.0%)
+ Sanchayan Maity 7 (0.0%)
+ Bharat Kumar Gogada 7 (0.0%)
+ Patrick Delaunay 6 (0.0%)
+ Ye.Li 5 (0.0%)
+ Dinh Nguyen 5 (0.0%)
+ Sriram Dash 5 (0.0%)
+ Hyun Kwon 5 (0.0%)
+ Changming Huang 4 (0.0%)
+ Tien Fong Chee 4 (0.0%)
+ Radu Bacrau 4 (0.0%)
+ Nava kishore Manne 4 (0.0%)
+ Andreas Färber 3 (0.0%)
+ Łukasz Majewski 3 (0.0%)
+ Boris Brezillon 3 (0.0%)
+ Paul Burton 2 (0.0%)
+ Ladislav Michl 2 (0.0%)
+ Bradley Bolen 2 (0.0%)
+ Christian Riesch 2 (0.0%)
+ Hans de Goede 2 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Bartosz Golaszewski 1 (0.0%)
+ Niko Mauno 1 (0.0%)
+ Madan Srinivas 1 (0.0%)
+ Seung-Woo Kim 1 (0.0%)
+ Liviu Dudau 1 (0.0%)
+ Nicolae Rosia 1 (0.0%)
+ Mario Six 1 (0.0%)
+ Philipp Tomsich 1 (0.0%)
+ Jacob Chen 1 (0.0%)
+ Pratiyush Srivastava 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 54919 (75.4%)
+ Vladimir Zapolskiy 722 (1.0%)
+ Nathan Rossi 170 (0.2%)
+ Stefan Brüns 89 (0.1%)
+ Stefano Babic 80 (0.1%)
+ Yegor Yefremov 74 (0.1%)
+ Cyrille Pitchen 61 (0.1%)
+ Andrew Duda 54 (0.1%)
+ Sekhar Nori 52 (0.1%)
+ Jonathan Gray 43 (0.1%)
+ Phil Edworthy 20 (0.0%)
+ Filip Drazic 18 (0.0%)
+ Adam Ford 15 (0.0%)
+ Andre Przywara 4 (0.0%)
+ Moritz Fischer 2 (0.0%)
+ Walt Feasel 1 (0.0%)
+ Hans de Goede 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 156)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 35 (22.4%)
+ Alexander Graf 16 (10.3%)
+ Stefan Roese 15 (9.6%)
+ Lokesh Vutla 14 (9.0%)
+ Tom Rini 8 (5.1%)
+ Tom Warren 6 (3.8%)
+ Hongbo Zhang 6 (3.8%)
+ Prabhakar Kushwaha 5 (3.2%)
+ Hans de Goede 4 (2.6%)
+ Nishanth Menon 4 (2.6%)
+ Simon Glass 4 (2.6%)
+ Minkyu Kang 3 (1.9%)
+ Ye.Li 3 (1.9%)
+ Uri Mashiach 3 (1.9%)
+ Chenhui Zhao 2 (1.3%)
+ Ashish Kumar 2 (1.3%)
+ Soren Brinkmann 2 (1.3%)
+ Heiko Schocher 2 (1.3%)
+ Andrew F. Davis 2 (1.3%)
+ Jagan Teki 2 (1.3%)
+ Stefano Babic 1 (0.6%)
+ Andre Przywara 1 (0.6%)
+ Vlad Zakharov 1 (0.6%)
+ Subhajit Paul 1 (0.6%)
+ Akshay Bhat 1 (0.6%)
+ Genevieve Chan 1 (0.6%)
+ Ebony Zhu 1 (0.6%)
+ Raghav Dogra 1 (0.6%)
+ Harninder Rai 1 (0.6%)
+ Bai Ping 1 (0.6%)
+ Jagannadha Sutradharudu Teki 1 (0.6%)
+ Maxime Ripard 1 (0.6%)
+ Anurag Kumar Vulisha 1 (0.6%)
+ Vignesh R 1 (0.6%)
+ Tomas Melin 1 (0.6%)
+ Yehuda Yitschak 1 (0.6%)
+ Marcel Ziswiler 1 (0.6%)
+ Peng Fan 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 393)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 120 (30.5%)
+ Simon Glass 109 (27.7%)
+ York Sun 45 (11.5%)
+ Jagan Teki 43 (10.9%)
+ Fabio Estevam 10 (2.5%)
+ Hans de Goede 8 (2.0%)
+ Bin Meng 8 (2.0%)
+ Marek Vasut 8 (2.0%)
+ Stefan Roese 7 (1.8%)
+ Siva Durga Prasad Paladugu 7 (1.8%)
+ Jaehoon Chung 6 (1.5%)
+ George McCollister 5 (1.3%)
+ Lokesh Vutla 3 (0.8%)
+ Andrew F. Davis 2 (0.5%)
+ Benoît Thébaudeau 2 (0.5%)
+ Chen-Yu Tsai 2 (0.5%)
+ Stefano Babic 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ Paul Burton 1 (0.3%)
+ Kedareswara rao Appana 1 (0.3%)
+ Eric Nelson 1 (0.3%)
+ Mugunthan V N 1 (0.3%)
+ Sebastien Bourdelin 1 (0.3%)
+ Alison Wang 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 34)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 11 (32.4%)
+ Jagan Teki 10 (29.4%)
+ George McCollister 4 (11.8%)
+ Hyun Kwon 2 (5.9%)
+ Simon Glass 1 (2.9%)
+ Paul Burton 1 (2.9%)
+ Sekhar Nori 1 (2.9%)
+ Carlos Hernandez 1 (2.9%)
+ Ravi Babu 1 (2.9%)
+ Dinh Nguyen 1 (2.9%)
+ Kever Yang 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 34)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 11 (32.4%)
+ Jagan Teki 10 (29.4%)
+ Sven Ebenfeld 4 (11.8%)
+ Marek Vasut 1 (2.9%)
+ Andrew F. Davis 1 (2.9%)
+ Mugunthan V N 1 (2.9%)
+ Michal Simek 1 (2.9%)
+ Anurag Kumar Vulisha 1 (2.9%)
+ Stefan Brüns 1 (2.9%)
+ Yann E. MORIN 1 (2.9%)
+ Stefan Agner 1 (2.9%)
+ Daniel Schwierzeck 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Phani Kiran Kara 2 (20.0%)
+ Sai Pavan Boddu 2 (20.0%)
+ Sekhar Nori 1 (10.0%)
+ Kever Yang 1 (10.0%)
+ Vignesh R 1 (10.0%)
+ frostybytes@protonmail.com 1 (10.0%)
+ Yan Liu 1 (10.0%)
+ Jason Brown 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 2 (20.0%)
+ Stefan Brüns 2 (20.0%)
+ Kedareswara rao Appana 2 (20.0%)
+ Jagan Teki 1 (10.0%)
+ Mugunthan V N 1 (10.0%)
+ Mario Six 1 (10.0%)
+ Jean-Jacques Hiblot 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 382 (43.3%)
+ Texas Instruments 76 (8.6%)
+ Google, Inc. 73 (8.3%)
+ AMD 54 (6.1%)
+ Amarula Solutions 42 (4.8%)
+ DENX Software Engineering 36 (4.1%)
+ Toradex 27 (3.1%)
+ Openedev 26 (2.9%)
+ Xilinx 22 (2.5%)
+ BayLibre SAS 21 (2.4%)
+ Konsulko Group 19 (2.2%)
+ Socionext Inc. 16 (1.8%)
+ Marvell 12 (1.4%)
+ Novell 12 (1.4%)
+ Renesas Electronics 11 (1.2%)
+ ARM 10 (1.1%)
+ Samsung 10 (1.1%)
+ Linaro 9 (1.0%)
+ Rockchip 6 (0.7%)
+ CompuLab 4 (0.5%)
+ Free Electrons 4 (0.5%)
+ NXP 3 (0.3%)
+ MIPS 2 (0.2%)
+ Atmel 1 (0.1%)
+ Red Hat 1 (0.1%)
+ Guntermann & Drunck 1 (0.1%)
+ Intel 1 (0.1%)
+ NVidia 1 (0.1%)
+ ST Microelectronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Konsulko Group 55400 (31.8%)
+ AMD 55205 (31.7%)
+ (Unknown) 27537 (15.8%)
+ Google, Inc. 9330 (5.4%)
+ Texas Instruments 5935 (3.4%)
+ Amarula Solutions 3848 (2.2%)
+ Socionext Inc. 3790 (2.2%)
+ DENX Software Engineering 2892 (1.7%)
+ Marvell 2597 (1.5%)
+ Toradex 1431 (0.8%)
+ Xilinx 1403 (0.8%)
+ Novell 1184 (0.7%)
+ Openedev 1176 (0.7%)
+ CompuLab 908 (0.5%)
+ NXP 471 (0.3%)
+ Samsung 293 (0.2%)
+ Linaro 245 (0.1%)
+ BayLibre SAS 177 (0.1%)
+ Renesas Electronics 124 (0.1%)
+ Atmel 63 (0.0%)
+ Rockchip 47 (0.0%)
+ ARM 21 (0.0%)
+ NVidia 18 (0.0%)
+ Free Electrons 17 (0.0%)
+ ST Microelectronics 6 (0.0%)
+ Intel 4 (0.0%)
+ MIPS 2 (0.0%)
+ Red Hat 2 (0.0%)
+ Guntermann & Drunck 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 156)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Xilinx 39 (25.0%)
+ (Unknown) 27 (17.3%)
+ Texas Instruments 22 (14.1%)
+ DENX Software Engineering 18 (11.5%)
+ Novell 16 (10.3%)
+ Konsulko Group 8 (5.1%)
+ NVidia 6 (3.8%)
+ Google, Inc. 4 (2.6%)
+ Red Hat 4 (2.6%)
+ CompuLab 3 (1.9%)
+ Samsung 3 (1.9%)
+ Openedev 2 (1.3%)
+ Marvell 1 (0.6%)
+ Toradex 1 (0.6%)
+ ARM 1 (0.6%)
+ Free Electrons 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 139)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 71 (51.1%)
+ Texas Instruments 14 (10.1%)
+ Xilinx 10 (7.2%)
+ DENX Software Engineering 5 (3.6%)
+ Samsung 4 (2.9%)
+ Toradex 4 (2.9%)
+ Marvell 3 (2.2%)
+ BayLibre SAS 3 (2.2%)
+ Novell 2 (1.4%)
+ CompuLab 2 (1.4%)
+ ARM 2 (1.4%)
+ Rockchip 2 (1.4%)
+ Konsulko Group 1 (0.7%)
+ NVidia 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Red Hat 1 (0.7%)
+ Openedev 1 (0.7%)
+ Free Electrons 1 (0.7%)
+ AMD 1 (0.7%)
+ Amarula Solutions 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ NXP 1 (0.7%)
+ Linaro 1 (0.7%)
+ Renesas Electronics 1 (0.7%)
+ Atmel 1 (0.7%)
+ ST Microelectronics 1 (0.7%)
+ Intel 1 (0.7%)
+ MIPS 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.03.rst b/doc/develop/statistics/u-boot-stats-v2017.03.rst
new file mode 100644
index 0000000..733c975
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.03.rst
@@ -0,0 +1,591 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.03
+======================================
+
+* Processed 664 csets from 126 developers
+
+* 29 employers found
+
+* A total of 41330 lines added, 31385 removed (delta 9945)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 102 (15.4%)
+ Simon Glass 82 (12.3%)
+ Tom Rini 42 (6.3%)
+ Jaehoon Chung 25 (3.8%)
+ Andre Przywara 19 (2.9%)
+ Michal Simek 19 (2.9%)
+ Hou Zhiqiang 17 (2.6%)
+ Minghuan Lian 15 (2.3%)
+ Andrew F. Davis 14 (2.1%)
+ Patrick Delaunay 13 (2.0%)
+ Bin Meng 13 (2.0%)
+ Mario Six 13 (2.0%)
+ Stefan Roese 10 (1.5%)
+ Moritz Fischer 9 (1.4%)
+ Michael Kurz 9 (1.4%)
+ Emmanuel Vadot 8 (1.2%)
+ Prabhakar Kushwaha 8 (1.2%)
+ Ladislav Michl 7 (1.1%)
+ Kever Yang 7 (1.1%)
+ Peng Fan 7 (1.1%)
+ Yangbo Lu 7 (1.1%)
+ Sjoerd Simons 7 (1.1%)
+ Markus Niebel 6 (0.9%)
+ Phil Edworthy 6 (0.9%)
+ Olliver Schinagl 6 (0.9%)
+ Tang Yuantian 6 (0.9%)
+ Adam Ford 5 (0.8%)
+ Lokesh Vutla 5 (0.8%)
+ Jacob Chen 5 (0.8%)
+ Maxim Sloyko 5 (0.8%)
+ Mugunthan V N 5 (0.8%)
+ Jagan Teki 5 (0.8%)
+ Siva Durga Prasad Paladugu 5 (0.8%)
+ Wenyou Yang 4 (0.6%)
+ Andy Shevchenko 4 (0.6%)
+ Fabio Estevam 4 (0.6%)
+ Chris Packham 4 (0.6%)
+ Mike Looijmans 4 (0.6%)
+ Stefan Agner 4 (0.6%)
+ Philipp Tomsich 3 (0.5%)
+ Nickey Yang Nickey Yang 3 (0.5%)
+ Felipe Balbi 3 (0.5%)
+ Vincent Tinelli 3 (0.5%)
+ Peter Robinson 3 (0.5%)
+ Breno Lima 3 (0.5%)
+ Romain Perier 3 (0.5%)
+ Robert P. J. Day 3 (0.5%)
+ York Sun 3 (0.5%)
+ Marcin Niestroj 3 (0.5%)
+ Uri Mashiach 3 (0.5%)
+ Andreas Färber 3 (0.5%)
+ Fabien Parent 3 (0.5%)
+ Tomas Melin 3 (0.5%)
+ Jens Kuske 3 (0.5%)
+ Kotaro Hayashi 2 (0.3%)
+ Dalon Westergreen 2 (0.3%)
+ Mark Marshall 2 (0.3%)
+ Dirk Eibach 2 (0.3%)
+ Lukasz Majewski 2 (0.3%)
+ Gary Bisson 2 (0.3%)
+ Tony O'Brien 2 (0.3%)
+ Wenbin Song 2 (0.3%)
+ Udit Agarwal 2 (0.3%)
+ Icenowy Zheng 2 (0.3%)
+ Oded Gabbay 2 (0.3%)
+ Matthijs van Duin 1 (0.2%)
+ Jörg Krause 1 (0.2%)
+ Ryan Harkin 1 (0.2%)
+ Rask Ingemann Lambertsen 1 (0.2%)
+ Nathan Rossi 1 (0.2%)
+ Heiko Schocher 1 (0.2%)
+ Albert ARIBAUD 1 (0.2%)
+ Jonathan Golder 1 (0.2%)
+ J. Tang 1 (0.2%)
+ Andrey Yurovsky 1 (0.2%)
+ Axel Haslam 1 (0.2%)
+ Semen Protsenko 1 (0.2%)
+ Eddie Cai 1 (0.2%)
+ Fiach Antaw 1 (0.2%)
+ John Haechten 1 (0.2%)
+ Lars Poeschel 1 (0.2%)
+ Keerthy 1 (0.2%)
+ Jean-Jacques Hiblot 1 (0.2%)
+ Albert ARIBAUD (3ADEV) 1 (0.2%)
+ Joe Hershberger 1 (0.2%)
+ Grygorii Strashko 1 (0.2%)
+ Dan Murphy 1 (0.2%)
+ Dinh Nguyen 1 (0.2%)
+ Alex 1 (0.2%)
+ Daniel Strnad 1 (0.2%)
+ Heiner Kallweit 1 (0.2%)
+ Anatolij Gustschin 1 (0.2%)
+ Reinhard Pfau 1 (0.2%)
+ Bogdan Purcareata 1 (0.2%)
+ Patrick Bruenn 1 (0.2%)
+ Scott Wood 1 (0.2%)
+ Stefan Brüns 1 (0.2%)
+ Alexey Brodkin 1 (0.2%)
+ Martin Kaiser 1 (0.2%)
+ Konstantin Porotchkin 1 (0.2%)
+ Darwin Dingel 1 (0.2%)
+ Cédric Schieli 1 (0.2%)
+ Rick Altherr 1 (0.2%)
+ Tuomas Tynkkynen 1 (0.2%)
+ Stefan Herbrechtsmeier 1 (0.2%)
+ Wataru Okoshi 1 (0.2%)
+ Sven Ebenfeld 1 (0.2%)
+ Heinrich Schuchardt 1 (0.2%)
+ Sébastien Szymanski 1 (0.2%)
+ Alison Wang 1 (0.2%)
+ Mingkai Hu 1 (0.2%)
+ Priyanka Jain 1 (0.2%)
+ Changming Huang 1 (0.2%)
+ Javier Martinez Canillas 1 (0.2%)
+ Priit Laes 1 (0.2%)
+ Jelle van der Waa 1 (0.2%)
+ Meng Yi 1 (0.2%)
+ Mark Kettenis 1 (0.2%)
+ George McCollister 1 (0.2%)
+ David Gibson 1 (0.2%)
+ Martin Michlmayr 1 (0.2%)
+ Kamensky Ivan 1 (0.2%)
+ Stefan Krsmanovic 1 (0.2%)
+ Shubhrajyoti Datta 1 (0.2%)
+ Sudeep Holla 1 (0.2%)
+ Sai Pavan Boddu 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 21331 (35.5%)
+ Masahiro Yamada 8216 (13.7%)
+ Peng Fan 3658 (6.1%)
+ Simon Glass 3338 (5.6%)
+ Michael Kurz 2570 (4.3%)
+ Maxim Sloyko 1954 (3.2%)
+ Mario Six 1951 (3.2%)
+ Minghuan Lian 1945 (3.2%)
+ Patrick Delaunay 1825 (3.0%)
+ Hou Zhiqiang 1406 (2.3%)
+ Lukasz Majewski 1246 (2.1%)
+ Jagan Teki 1108 (1.8%)
+ Jaehoon Chung 862 (1.4%)
+ Uri Mashiach 844 (1.4%)
+ Marcin Niestroj 757 (1.3%)
+ Stefan Roese 608 (1.0%)
+ John Haechten 517 (0.9%)
+ George McCollister 408 (0.7%)
+ Wenbin Song 307 (0.5%)
+ Siva Durga Prasad Paladugu 300 (0.5%)
+ Andre Przywara 282 (0.5%)
+ Prabhakar Kushwaha 279 (0.5%)
+ Moritz Fischer 275 (0.5%)
+ Jens Kuske 265 (0.4%)
+ Michal Simek 231 (0.4%)
+ Mugunthan V N 228 (0.4%)
+ Sjoerd Simons 197 (0.3%)
+ Icenowy Zheng 164 (0.3%)
+ Andrew F. Davis 154 (0.3%)
+ Jacob Chen 148 (0.2%)
+ Bin Meng 145 (0.2%)
+ Tomas Melin 145 (0.2%)
+ Adam Ford 143 (0.2%)
+ Olliver Schinagl 131 (0.2%)
+ Emmanuel Vadot 129 (0.2%)
+ Yangbo Lu 111 (0.2%)
+ Stefan Agner 102 (0.2%)
+ Bogdan Purcareata 101 (0.2%)
+ Alex 92 (0.2%)
+ Lokesh Vutla 85 (0.1%)
+ Dan Murphy 81 (0.1%)
+ Philipp Tomsich 77 (0.1%)
+ Kever Yang 75 (0.1%)
+ Tang Yuantian 71 (0.1%)
+ Dirk Eibach 68 (0.1%)
+ Robert P. J. Day 67 (0.1%)
+ Ladislav Michl 66 (0.1%)
+ Dalon Westergreen 64 (0.1%)
+ Wenyou Yang 63 (0.1%)
+ Udit Agarwal 54 (0.1%)
+ Stefan Herbrechtsmeier 52 (0.1%)
+ Nickey Yang Nickey Yang 51 (0.1%)
+ Alison Wang 47 (0.1%)
+ Heiko Schocher 46 (0.1%)
+ Fabien Parent 40 (0.1%)
+ Joe Hershberger 36 (0.1%)
+ Fabio Estevam 33 (0.1%)
+ Mingkai Hu 29 (0.0%)
+ Andy Shevchenko 28 (0.0%)
+ Tuomas Tynkkynen 27 (0.0%)
+ Meng Yi 27 (0.0%)
+ Axel Haslam 23 (0.0%)
+ Eddie Cai 23 (0.0%)
+ Markus Niebel 22 (0.0%)
+ Martin Kaiser 22 (0.0%)
+ Konstantin Porotchkin 22 (0.0%)
+ Andreas Färber 21 (0.0%)
+ Tony O'Brien 21 (0.0%)
+ Phil Edworthy 20 (0.0%)
+ Priyanka Jain 20 (0.0%)
+ Chris Packham 18 (0.0%)
+ Darwin Dingel 17 (0.0%)
+ Stefan Krsmanovic 17 (0.0%)
+ Rick Altherr 16 (0.0%)
+ Changming Huang 13 (0.0%)
+ Vincent Tinelli 12 (0.0%)
+ Peter Robinson 12 (0.0%)
+ Fiach Antaw 12 (0.0%)
+ Jelle van der Waa 11 (0.0%)
+ Patrick Bruenn 10 (0.0%)
+ Kotaro Hayashi 9 (0.0%)
+ Oded Gabbay 9 (0.0%)
+ Dinh Nguyen 9 (0.0%)
+ Felipe Balbi 8 (0.0%)
+ York Sun 8 (0.0%)
+ Lars Poeschel 7 (0.0%)
+ Mike Looijmans 6 (0.0%)
+ Cédric Schieli 6 (0.0%)
+ David Gibson 6 (0.0%)
+ Mark Marshall 5 (0.0%)
+ Gary Bisson 5 (0.0%)
+ Albert ARIBAUD (3ADEV) 5 (0.0%)
+ Sai Pavan Boddu 5 (0.0%)
+ Jean-Jacques Hiblot 4 (0.0%)
+ Anatolij Gustschin 4 (0.0%)
+ Stefan Brüns 4 (0.0%)
+ Javier Martinez Canillas 4 (0.0%)
+ Shubhrajyoti Datta 4 (0.0%)
+ Breno Lima 3 (0.0%)
+ Romain Perier 3 (0.0%)
+ Ryan Harkin 2 (0.0%)
+ Jonathan Golder 2 (0.0%)
+ Semen Protsenko 2 (0.0%)
+ Grygorii Strashko 2 (0.0%)
+ Reinhard Pfau 2 (0.0%)
+ Wataru Okoshi 2 (0.0%)
+ Kamensky Ivan 2 (0.0%)
+ Sudeep Holla 2 (0.0%)
+ Matthijs van Duin 1 (0.0%)
+ Jörg Krause 1 (0.0%)
+ Rask Ingemann Lambertsen 1 (0.0%)
+ Nathan Rossi 1 (0.0%)
+ Albert ARIBAUD 1 (0.0%)
+ J. Tang 1 (0.0%)
+ Andrey Yurovsky 1 (0.0%)
+ Keerthy 1 (0.0%)
+ Daniel Strnad 1 (0.0%)
+ Heiner Kallweit 1 (0.0%)
+ Scott Wood 1 (0.0%)
+ Alexey Brodkin 1 (0.0%)
+ Sven Ebenfeld 1 (0.0%)
+ Heinrich Schuchardt 1 (0.0%)
+ Sébastien Szymanski 1 (0.0%)
+ Priit Laes 1 (0.0%)
+ Mark Kettenis 1 (0.0%)
+ Martin Michlmayr 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 10466 (33.3%)
+ Jagan Teki 687 (2.2%)
+ Lokesh Vutla 47 (0.1%)
+ Jacob Chen 28 (0.1%)
+ Fabio Estevam 21 (0.1%)
+ Emmanuel Vadot 20 (0.1%)
+ Rick Altherr 13 (0.0%)
+ Peter Robinson 8 (0.0%)
+ Lars Poeschel 7 (0.0%)
+ Martin Kaiser 6 (0.0%)
+ Robert P. J. Day 5 (0.0%)
+ Reinhard Pfau 2 (0.0%)
+ Phil Edworthy 1 (0.0%)
+ Daniel Strnad 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Hou Zhiqiang 19 (17.1%)
+ Michal Simek 16 (14.4%)
+ Stefan Roese 15 (13.5%)
+ Minkyu Kang 13 (11.7%)
+ Simon Glass 9 (8.1%)
+ Romain Perier 6 (5.4%)
+ Andre Przywara 5 (4.5%)
+ Andy Shevchenko 4 (3.6%)
+ Masahiro Yamada 3 (2.7%)
+ Olliver Schinagl 2 (1.8%)
+ Abhimanyu Saini 2 (1.8%)
+ Sumit Garg 2 (1.8%)
+ Mingkai Hu 2 (1.8%)
+ Mario Six 2 (1.8%)
+ Tom Rini 1 (0.9%)
+ Reinhard Pfau 1 (0.9%)
+ Grygorii Strashko 1 (0.9%)
+ Brennan Ashton 1 (0.9%)
+ Gong Qianyu 1 (0.9%)
+ Mateusz Kulikowski 1 (0.9%)
+ Pratiyush Srivastava 1 (0.9%)
+ Ladislav Michl 1 (0.9%)
+ Stefan Agner 1 (0.9%)
+ Dirk Eibach 1 (0.9%)
+ Prabhakar Kushwaha 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 361)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 86 (23.8%)
+ Bin Meng 71 (19.7%)
+ York Sun 70 (19.4%)
+ Tom Rini 41 (11.4%)
+ Jagan Teki 27 (7.5%)
+ Stefan Roese 16 (4.4%)
+ Jaehoon Chung 10 (2.8%)
+ Alexander Graf 7 (1.9%)
+ Marek Vasut 7 (1.9%)
+ Joe Hershberger 3 (0.8%)
+ Lokesh Vutla 2 (0.6%)
+ Thomas Graziadei 2 (0.6%)
+ Chris Packham 2 (0.6%)
+ Javier Martinez Canillas 2 (0.6%)
+ Michal Simek 1 (0.3%)
+ Andre Przywara 1 (0.3%)
+ Prabhakar Kushwaha 1 (0.3%)
+ Rick Altherr 1 (0.3%)
+ Linus Walleij 1 (0.3%)
+ Joakim Tjernlund 1 (0.3%)
+ Stefano Babic 1 (0.3%)
+ Vikas Manocha 1 (0.3%)
+ Hamish Martin 1 (0.3%)
+ Joel Stanley 1 (0.3%)
+ Eric Nelson 1 (0.3%)
+ Chen-Yu Tsai 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Gary Bisson 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 3 (14.3%)
+ Lokesh Vutla 2 (9.5%)
+ Heiko Schocher 2 (9.5%)
+ Ryan Harkin 2 (9.5%)
+ Adam Ford 2 (9.5%)
+ Bin Meng 1 (4.8%)
+ Michal Simek 1 (4.8%)
+ Masahiro Yamada 1 (4.8%)
+ Ladislav Michl 1 (4.8%)
+ Breno Lima 1 (4.8%)
+ Priit Laes 1 (4.8%)
+ Arno Steffens 1 (4.8%)
+ Aparna Balasubramanian 1 (4.8%)
+ Oleksandr Tymoshenko 1 (4.8%)
+ Steve Rae 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (14.3%)
+ Masahiro Yamada 2 (9.5%)
+ Andre Przywara 2 (9.5%)
+ Alison Wang 2 (9.5%)
+ Moritz Fischer 2 (9.5%)
+ Lokesh Vutla 1 (4.8%)
+ Heiko Schocher 1 (4.8%)
+ Adam Ford 1 (4.8%)
+ Peter Robinson 1 (4.8%)
+ Nathan Rossi 1 (4.8%)
+ Stefan Brüns 1 (4.8%)
+ Cédric Schieli 1 (4.8%)
+ Wenyou Yang 1 (4.8%)
+ Andrew F. Davis 1 (4.8%)
+ Mugunthan V N 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Dan Murphy 3 (30.0%)
+ Heiko Schocher 1 (10.0%)
+ Arno Steffens 1 (10.0%)
+ Oleksandr Tymoshenko 1 (10.0%)
+ Yogesh Siraswar 1 (10.0%)
+ Thomas Schaefer 1 (10.0%)
+ Ken Ma 1 (10.0%)
+ Jens Kuske 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 3 (30.0%)
+ Tom Rini 2 (20.0%)
+ Andre Przywara 1 (10.0%)
+ Nathan Rossi 1 (10.0%)
+ Stefan Brüns 1 (10.0%)
+ Andrew F. Davis 1 (10.0%)
+ Michal Simek 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 215 (32.4%)
+ Socionext Inc. 105 (15.8%)
+ Google, Inc. 88 (13.3%)
+ Konsulko Group 42 (6.3%)
+ Texas Instruments 28 (4.2%)
+ Samsung 26 (3.9%)
+ ARM 20 (3.0%)
+ AMD 19 (2.9%)
+ Guntermann & Drunck 16 (2.4%)
+ Rockchip 15 (2.3%)
+ DENX Software Engineering 14 (2.1%)
+ ST Microelectronics 12 (1.8%)
+ Collabora Ltd. 10 (1.5%)
+ Intel 10 (1.5%)
+ Xilinx 7 (1.1%)
+ Renesas Electronics 6 (0.9%)
+ Atmel 4 (0.6%)
+ BayLibre SAS 4 (0.6%)
+ Openedev 4 (0.6%)
+ Toradex 4 (0.6%)
+ CompuLab 3 (0.5%)
+ Novell 3 (0.5%)
+ Boundary Devices 2 (0.3%)
+ Linaro 2 (0.3%)
+ Amarula Solutions 1 (0.2%)
+ NXP 1 (0.2%)
+ Marvell 1 (0.2%)
+ National Instruments 1 (0.2%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.2%)
+ ================================== =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ Konsulko Group 21331 (35.5%)
+ (Unknown) 14394 (23.9%)
+ Socionext Inc. 8227 (13.7%)
+ Google, Inc. 5308 (8.8%)
+ Guntermann & Drunck 2021 (3.4%)
+ DENX Software Engineering 1904 (3.2%)
+ ST Microelectronics 1801 (3.0%)
+ Openedev 1105 (1.8%)
+ Samsung 866 (1.4%)
+ CompuLab 844 (1.4%)
+ Texas Instruments 555 (0.9%)
+ Xilinx 309 (0.5%)
+ ARM 284 (0.5%)
+ Rockchip 274 (0.5%)
+ AMD 231 (0.4%)
+ Collabora Ltd. 200 (0.3%)
+ Toradex 102 (0.2%)
+ Atmel 63 (0.1%)
+ BayLibre SAS 63 (0.1%)
+ Weidmüller Interface GmbH & Co. KG 52 (0.1%)
+ Intel 48 (0.1%)
+ NXP 47 (0.1%)
+ National Instruments 36 (0.1%)
+ Marvell 22 (0.0%)
+ Novell 21 (0.0%)
+ Renesas Electronics 20 (0.0%)
+ Boundary Devices 5 (0.0%)
+ Linaro 4 (0.0%)
+ Amarula Solutions 3 (0.0%)
+ ================================== =====
+
+
+.. table:: Employers with the most signoffs (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 33 (29.7%)
+ Xilinx 16 (14.4%)
+ DENX Software Engineering 15 (13.5%)
+ Samsung 13 (11.7%)
+ Google, Inc. 9 (8.1%)
+ Collabora Ltd. 6 (5.4%)
+ ARM 5 (4.5%)
+ Guntermann & Drunck 4 (3.6%)
+ Intel 4 (3.6%)
+ Socionext Inc. 3 (2.7%)
+ Konsulko Group 1 (0.9%)
+ Texas Instruments 1 (0.9%)
+ Toradex 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 128)
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 74 (57.8%)
+ Texas Instruments 7 (5.5%)
+ DENX Software Engineering 4 (3.1%)
+ Xilinx 3 (2.3%)
+ Google, Inc. 3 (2.3%)
+ Guntermann & Drunck 3 (2.3%)
+ Intel 3 (2.3%)
+ Socionext Inc. 3 (2.3%)
+ Rockchip 3 (2.3%)
+ Samsung 2 (1.6%)
+ Collabora Ltd. 2 (1.6%)
+ ARM 2 (1.6%)
+ BayLibre SAS 2 (1.6%)
+ Linaro 2 (1.6%)
+ Konsulko Group 1 (0.8%)
+ Toradex 1 (0.8%)
+ ST Microelectronics 1 (0.8%)
+ Openedev 1 (0.8%)
+ CompuLab 1 (0.8%)
+ AMD 1 (0.8%)
+ Atmel 1 (0.8%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.8%)
+ NXP 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Marvell 1 (0.8%)
+ Novell 1 (0.8%)
+ Renesas Electronics 1 (0.8%)
+ Boundary Devices 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ ================================== =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.05.rst b/doc/develop/statistics/u-boot-stats-v2017.05.rst
new file mode 100644
index 0000000..bae4788
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.05.rst
@@ -0,0 +1,651 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.05
+======================================
+
+* Processed 915 csets from 139 developers
+
+* 29 employers found
+
+* A total of 86135 lines added, 116801 removed (delta -30666)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 86 (9.4%)
+ Stefan Roese 37 (4.0%)
+ Philipp Tomsich 34 (3.7%)
+ Konstantin Porotchkin 34 (3.7%)
+ Heiko Stuebner 33 (3.6%)
+ Wenyou Yang 30 (3.3%)
+ Jagan Teki 27 (3.0%)
+ Tom Rini 25 (2.7%)
+ Thomas Petazzoni 23 (2.5%)
+ Peng Fan 21 (2.3%)
+ Heinrich Schuchardt 20 (2.2%)
+ Kever Yang 20 (2.2%)
+ Masahiro Yamada 19 (2.1%)
+ Andrew F. Davis 17 (1.9%)
+ Tim Harvey 17 (1.9%)
+ Andre Przywara 16 (1.7%)
+ Lokesh Vutla 15 (1.6%)
+ Maxime Ripard 15 (1.6%)
+ York Sun 15 (1.6%)
+ Chen-Yu Tsai 15 (1.6%)
+ Vikas Manocha 15 (1.6%)
+ Hou Zhiqiang 14 (1.5%)
+ Jean-Jacques Hiblot 14 (1.5%)
+ Stefan Agner 14 (1.5%)
+ Jaehoon Chung 13 (1.4%)
+ Patrice Chotard 12 (1.3%)
+ Eddie Cai 11 (1.2%)
+ Stefan Herbrechtsmeier 10 (1.1%)
+ Dalon Westergreen 9 (1.0%)
+ Mylène Josserand 9 (1.0%)
+ Lukasz Majewski 9 (1.0%)
+ Vinitha Pillai 8 (0.9%)
+ Jernej Skrabec 8 (0.9%)
+ Felipe Balbi 8 (0.9%)
+ Markus Niebel 8 (0.9%)
+ Alexey Brodkin 7 (0.8%)
+ Bharat Bhushan 7 (0.8%)
+ Roger Quadros 7 (0.8%)
+ Sumit Garg 6 (0.7%)
+ Marek Vasut 6 (0.7%)
+ Yung-Ching LIN 6 (0.7%)
+ Sekhar Nori 6 (0.7%)
+ Vlad Zakharov 6 (0.7%)
+ Liam Beguin 6 (0.7%)
+ Stefano Babic 5 (0.5%)
+ Alexandru Gagniuc 5 (0.5%)
+ Madan Srinivas 5 (0.5%)
+ Mario Six 5 (0.5%)
+ Fabio Estevam 4 (0.4%)
+ Icenowy Zheng 4 (0.4%)
+ Santan Kumar 4 (0.4%)
+ Priyanka Jain 4 (0.4%)
+ Ruchika Gupta 4 (0.4%)
+ Eric Gao 4 (0.4%)
+ Ye Li 4 (0.4%)
+ Jacob Chen 4 (0.4%)
+ Adam Ford 3 (0.3%)
+ Udit Agarwal 3 (0.3%)
+ Tyler Hall 3 (0.3%)
+ George McCollister 3 (0.3%)
+ Vignesh R 3 (0.3%)
+ Andy Shevchenko 3 (0.3%)
+ Vitaly Andrianov 3 (0.3%)
+ Robert Nelson 3 (0.3%)
+ Boris Brezillon 3 (0.3%)
+ Marcel Ziswiler 3 (0.3%)
+ Sébastien Szymanski 3 (0.3%)
+ Yuantian Tang 2 (0.2%)
+ Kyle Edwards 2 (0.2%)
+ Bin Meng 2 (0.2%)
+ Jelle van der Waa 2 (0.2%)
+ Shengzhou Liu 2 (0.2%)
+ Ashish kumar 2 (0.2%)
+ Prabhakar Kushwaha 2 (0.2%)
+ Songjun Wu 2 (0.2%)
+ Ley Foon Tan 2 (0.2%)
+ Heiner Kallweit 2 (0.2%)
+ Cooper Jr., Franklin 2 (0.2%)
+ Nobuhiro Iwamatsu 2 (0.2%)
+ Dirk Eibach 2 (0.2%)
+ Rabeeh Khoury 2 (0.2%)
+ Xu Ziyuan 2 (0.2%)
+ Kevin Liu 2 (0.2%)
+ Suresh Gupta 2 (0.2%)
+ Olliver Schinagl 2 (0.2%)
+ Ladislav Michl 2 (0.2%)
+ Siarhei Siamashka 2 (0.2%)
+ Hannes Schmelzer 1 (0.1%)
+ Suniel Mahesh 1 (0.1%)
+ Moritz Fischer 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Andreas Färber 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Josua Mayer 1 (0.1%)
+ Michal Simek 1 (0.1%)
+ Mike Looijmans 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Thomas Schaefer 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ Troy Kisky 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Georges Savoundararadj 1 (0.1%)
+ Stephen Arnold 1 (0.1%)
+ Sanchayan Maity 1 (0.1%)
+ Alex Deymo 1 (0.1%)
+ Jocelyn Bohr 1 (0.1%)
+ Carlo Caione 1 (0.1%)
+ Alyssa Rosenzweig 1 (0.1%)
+ tim.chick 1 (0.1%)
+ Breno Lima 1 (0.1%)
+ Joel Stanley 1 (0.1%)
+ Vincent Tinelli 1 (0.1%)
+ Misael Lopez Cruz 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Robert Clausecker 1 (0.1%)
+ Florent Jacquet 1 (0.1%)
+ Rask Ingemann Lambertsen 1 (0.1%)
+ Hans de Goede 1 (0.1%)
+ Jakob Unterwurzacher 1 (0.1%)
+ Yingxi Yu 1 (0.1%)
+ Wenbin Song 1 (0.1%)
+ yuan linyu 1 (0.1%)
+ Sylvain Lemieux 1 (0.1%)
+ Felix Brack 1 (0.1%)
+ James Balean 1 (0.1%)
+ Tuomas Tynkkynen 1 (0.1%)
+ Alexandre Messier 1 (0.1%)
+ Suji Velupillai 1 (0.1%)
+ Jon Mason 1 (0.1%)
+ Axel Haslam 1 (0.1%)
+ Max Filippov 1 (0.1%)
+ Tero Kristo 1 (0.1%)
+ Robert P. J. Day 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Sebastien Colleur 1 (0.1%)
+ Phil Edworthy 1 (0.1%)
+ Tang Yuantian 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 101228 (52.1%)
+ Peng Fan 12134 (6.3%)
+ Wenyou Yang 8585 (4.4%)
+ Kever Yang 7187 (3.7%)
+ Heiko Stuebner 5956 (3.1%)
+ Patrice Chotard 5445 (2.8%)
+ Dirk Eibach 5152 (2.7%)
+ Masahiro Yamada 5117 (2.6%)
+ Simon Glass 3435 (1.8%)
+ Philipp Tomsich 3289 (1.7%)
+ Marcel Ziswiler 3125 (1.6%)
+ Jernej Skrabec 2535 (1.3%)
+ Maxime Ripard 2191 (1.1%)
+ Dalon Westergreen 1730 (0.9%)
+ Stefan Roese 1546 (0.8%)
+ Jagan Teki 1408 (0.7%)
+ Sébastien Szymanski 1399 (0.7%)
+ Konstantin Porotchkin 1380 (0.7%)
+ Stefan Herbrechtsmeier 1311 (0.7%)
+ Heiner Kallweit 1207 (0.6%)
+ Adam Ford 1157 (0.6%)
+ Ye Li 1067 (0.5%)
+ Vikas Manocha 994 (0.5%)
+ Tim Harvey 886 (0.5%)
+ York Sun 828 (0.4%)
+ Vlad Zakharov 754 (0.4%)
+ Thomas Petazzoni 683 (0.4%)
+ Icenowy Zheng 620 (0.3%)
+ Rabeeh Khoury 588 (0.3%)
+ Chen-Yu Tsai 561 (0.3%)
+ Mario Six 516 (0.3%)
+ Songjun Wu 459 (0.2%)
+ Felipe Balbi 436 (0.2%)
+ Stefan Agner 417 (0.2%)
+ Rask Ingemann Lambertsen 410 (0.2%)
+ Andre Przywara 402 (0.2%)
+ Carlo Caione 387 (0.2%)
+ Jaehoon Chung 361 (0.2%)
+ Hou Zhiqiang 339 (0.2%)
+ Chris Packham 283 (0.1%)
+ Klaus Goger 281 (0.1%)
+ Markus Niebel 278 (0.1%)
+ Sumit Garg 272 (0.1%)
+ Ruchika Gupta 270 (0.1%)
+ Jean-Jacques Hiblot 268 (0.1%)
+ Roger Quadros 254 (0.1%)
+ Andrew F. Davis 237 (0.1%)
+ Priyanka Jain 227 (0.1%)
+ Liam Beguin 224 (0.1%)
+ Andy Shevchenko 211 (0.1%)
+ Vignesh R 192 (0.1%)
+ Lokesh Vutla 187 (0.1%)
+ Mylène Josserand 178 (0.1%)
+ Lukasz Majewski 172 (0.1%)
+ Vinitha Pillai 170 (0.1%)
+ Jon Mason 160 (0.1%)
+ Felix Brack 153 (0.1%)
+ Stefano Babic 151 (0.1%)
+ Hannes Schmelzer 146 (0.1%)
+ Eddie Cai 143 (0.1%)
+ Stephen Arnold 136 (0.1%)
+ Bharat Bhushan 133 (0.1%)
+ Alexandru Gagniuc 133 (0.1%)
+ Vitaly Andrianov 125 (0.1%)
+ Jelle van der Waa 121 (0.1%)
+ Phil Edworthy 118 (0.1%)
+ Sekhar Nori 114 (0.1%)
+ Udit Agarwal 105 (0.1%)
+ Alexey Brodkin 70 (0.0%)
+ Nishanth Menon 70 (0.0%)
+ Prabhakar Kushwaha 66 (0.0%)
+ Yung-Ching LIN 64 (0.0%)
+ Eric Gao 64 (0.0%)
+ Tyler Hall 62 (0.0%)
+ Suji Velupillai 60 (0.0%)
+ Bin Meng 56 (0.0%)
+ Cooper Jr., Franklin 47 (0.0%)
+ Breno Lima 47 (0.0%)
+ Heinrich Schuchardt 45 (0.0%)
+ Jacob Chen 45 (0.0%)
+ Axel Haslam 41 (0.0%)
+ Marek Vasut 39 (0.0%)
+ Madan Srinivas 39 (0.0%)
+ Yuantian Tang 37 (0.0%)
+ Thomas Schaefer 36 (0.0%)
+ Boris Brezillon 32 (0.0%)
+ Olliver Schinagl 31 (0.0%)
+ Siarhei Siamashka 31 (0.0%)
+ Sanchayan Maity 30 (0.0%)
+ Ashish kumar 29 (0.0%)
+ Ley Foon Tan 28 (0.0%)
+ Nobuhiro Iwamatsu 28 (0.0%)
+ Santan Kumar 27 (0.0%)
+ yuan linyu 27 (0.0%)
+ Moritz Fischer 24 (0.0%)
+ Mugunthan V N 23 (0.0%)
+ Robert Nelson 21 (0.0%)
+ Ladislav Michl 20 (0.0%)
+ Florent Jacquet 19 (0.0%)
+ Wenbin Song 16 (0.0%)
+ Tien Fong Chee 14 (0.0%)
+ Alex Deymo 11 (0.0%)
+ James Balean 10 (0.0%)
+ Fabio Estevam 9 (0.0%)
+ George McCollister 8 (0.0%)
+ Shengzhou Liu 8 (0.0%)
+ Xu Ziyuan 8 (0.0%)
+ Kevin Liu 8 (0.0%)
+ Georges Savoundararadj 8 (0.0%)
+ tim.chick 8 (0.0%)
+ Joel Stanley 8 (0.0%)
+ Robert P. J. Day 8 (0.0%)
+ Andreas Färber 7 (0.0%)
+ Hans de Goede 7 (0.0%)
+ Tuomas Tynkkynen 7 (0.0%)
+ Tero Kristo 7 (0.0%)
+ Kyle Edwards 6 (0.0%)
+ Jocelyn Bohr 6 (0.0%)
+ Suresh Gupta 5 (0.0%)
+ Josua Mayer 5 (0.0%)
+ Robert Clausecker 4 (0.0%)
+ Troy Kisky 3 (0.0%)
+ Sylvain Lemieux 3 (0.0%)
+ Yangbo Lu 2 (0.0%)
+ Vincent Tinelli 2 (0.0%)
+ Jakob Unterwurzacher 2 (0.0%)
+ Yingxi Yu 2 (0.0%)
+ Sebastien Colleur 2 (0.0%)
+ Tang Yuantian 2 (0.0%)
+ Suniel Mahesh 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Michal Simek 1 (0.0%)
+ Mike Looijmans 1 (0.0%)
+ Alison Wang 1 (0.0%)
+ Alyssa Rosenzweig 1 (0.0%)
+ Misael Lopez Cruz 1 (0.0%)
+ Joakim Tjernlund 1 (0.0%)
+ Alexandre Messier 1 (0.0%)
+ Max Filippov 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 100727 (86.2%)
+ Masahiro Yamada 2626 (2.2%)
+ Jaehoon Chung 220 (0.2%)
+ Alexandru Gagniuc 110 (0.1%)
+ Stefan Herbrechtsmeier 65 (0.1%)
+ York Sun 29 (0.0%)
+ Nobuhiro Iwamatsu 27 (0.0%)
+ Mugunthan V N 11 (0.0%)
+ Xu Ziyuan 8 (0.0%)
+ Tien Fong Chee 4 (0.0%)
+ Sylvain Lemieux 3 (0.0%)
+ Kyle Edwards 2 (0.0%)
+ Troy Kisky 2 (0.0%)
+ Jakob Unterwurzacher 2 (0.0%)
+ Tang Yuantian 2 (0.0%)
+ Suniel Mahesh 1 (0.0%)
+ Michal Simek 1 (0.0%)
+ Joakim Tjernlund 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 278)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 63 (22.7%)
+ Simon Glass 24 (8.6%)
+ Tom Rini 22 (7.9%)
+ Maxime Ripard 21 (7.6%)
+ Minkyu Kang 13 (4.7%)
+ Sumit Garg 12 (4.3%)
+ Michal Simek 11 (4.0%)
+ Andrew F. Davis 9 (3.2%)
+ Ye Li 8 (2.9%)
+ Sylvain Lemieux 7 (2.5%)
+ William Zhang 7 (2.5%)
+ Vinitha Pillai 6 (2.2%)
+ Sanchayan Maity 5 (1.8%)
+ Andy Shevchenko 5 (1.8%)
+ Priyanka Jain 4 (1.4%)
+ Jagan Teki 4 (1.4%)
+ Peng Fan 4 (1.4%)
+ Vincent Tinelli 3 (1.1%)
+ Tom Warren 3 (1.1%)
+ Arpit Goel 3 (1.1%)
+ Andreas Färber 3 (1.1%)
+ Madan Srinivas 3 (1.1%)
+ Udit Agarwal 3 (1.1%)
+ Roger Quadros 3 (1.1%)
+ Tien Fong Chee 2 (0.7%)
+ Terry Zhou 2 (0.7%)
+ Ashish kumar 2 (0.7%)
+ Mario Six 2 (0.7%)
+ Rabeeh Khoury 2 (0.7%)
+ Konstantin Porotchkin 2 (0.7%)
+ Philipp Tomsich 2 (0.7%)
+ York Sun 1 (0.4%)
+ Suman Anna 1 (0.4%)
+ Chenhui Zhao 1 (0.4%)
+ Steve Arnold 1 (0.4%)
+ Neil Armstrong 1 (0.4%)
+ Abhimanyu Saini 1 (0.4%)
+ Minghuan Lian 1 (0.4%)
+ Aneesh Bansal 1 (0.4%)
+ Saksham Jain 1 (0.4%)
+ Steve Rae 1 (0.4%)
+ Alex Deymo 1 (0.4%)
+ Prabhakar Kushwaha 1 (0.4%)
+ Jean-Jacques Hiblot 1 (0.4%)
+ Lokesh Vutla 1 (0.4%)
+ Carlo Caione 1 (0.4%)
+ Rask Ingemann Lambertsen 1 (0.4%)
+ Felipe Balbi 1 (0.4%)
+ Heiner Kallweit 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 459)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 118 (25.7%)
+ Tom Rini 81 (17.6%)
+ York Sun 77 (16.8%)
+ Jagan Teki 30 (6.5%)
+ Stefan Roese 22 (4.8%)
+ Stefano Babic 19 (4.1%)
+ Lokesh Vutla 14 (3.1%)
+ Bin Meng 13 (2.8%)
+ Andreas Bießmann 10 (2.2%)
+ Ziping Chen 9 (2.0%)
+ Kever Yang 9 (2.0%)
+ Lukasz Majewski 6 (1.3%)
+ Jaehoon Chung 5 (1.1%)
+ Joe Hershberger 5 (1.1%)
+ Heiko Schocher 4 (0.9%)
+ Alison Wang 4 (0.9%)
+ Hans de Goede 4 (0.9%)
+ Eddie Cai 4 (0.9%)
+ Heiko Stuebner 3 (0.7%)
+ Michal Simek 2 (0.4%)
+ Alexander Graf 2 (0.4%)
+ Fabio Estevam 2 (0.4%)
+ Ruchika Gupta 2 (0.4%)
+ Maxime Ripard 1 (0.2%)
+ Sumit Garg 1 (0.2%)
+ Andreas Färber 1 (0.2%)
+ Prabhakar Kushwaha 1 (0.2%)
+ Dinh Nguyen 1 (0.2%)
+ Stefan Brüns 1 (0.2%)
+ Christian Gmeiner 1 (0.2%)
+ Arun Parameswaran 1 (0.2%)
+ JD Zheng 1 (0.2%)
+ Shamez Kurji 1 (0.2%)
+ Hannes Schmelzer 1 (0.2%)
+ Andre Przywara 1 (0.2%)
+ Stefan Agner 1 (0.2%)
+ Vikas Manocha 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 41)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kever Yang 16 (39.0%)
+ Klaus Goger 7 (17.1%)
+ Heiko Stuebner 3 (7.3%)
+ Vinitha Pillai 3 (7.3%)
+ Vagrant Cascadian 3 (7.3%)
+ Andreas Färber 2 (4.9%)
+ Bin Meng 1 (2.4%)
+ Philipp Tomsich 1 (2.4%)
+ Masahiro Yamada 1 (2.4%)
+ Jakob Unterwurzacher 1 (2.4%)
+ Nickey Yang 1 (2.4%)
+ Suji Velupillai 1 (2.4%)
+ Chen-Yu Tsai 1 (2.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 41)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Stuebner 15 (36.6%)
+ Philipp Tomsich 8 (19.5%)
+ Simon Glass 4 (9.8%)
+ Sumit Garg 3 (7.3%)
+ Heinrich Schuchardt 3 (7.3%)
+ Kever Yang 1 (2.4%)
+ Masahiro Yamada 1 (2.4%)
+ Jakob Unterwurzacher 1 (2.4%)
+ Suji Velupillai 1 (2.4%)
+ Maxime Ripard 1 (2.4%)
+ Carlo Caione 1 (2.4%)
+ Eric Gao 1 (2.4%)
+ Jernej Skrabec 1 (2.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 7)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Chen-Yu Tsai 1 (14.3%)
+ Lokesh Vutla 1 (14.3%)
+ Vishal Mahaveer 1 (14.3%)
+ Michael Krummsdorf 1 (14.3%)
+ Richard Purdie 1 (14.3%)
+ Shunji Sato 1 (14.3%)
+ Sekhar Nori 1 (14.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 7)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 2 (28.6%)
+ Lokesh Vutla 1 (14.3%)
+ Maxime Ripard 1 (14.3%)
+ Tom Rini 1 (14.3%)
+ Tero Kristo 1 (14.3%)
+ Markus Niebel 1 (14.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 364 (39.8%)
+ Google, Inc. 88 (9.6%)
+ Texas Instruments 76 (8.3%)
+ DENX Software Engineering 57 (6.2%)
+ Free Electrons 48 (5.2%)
+ Marvell 34 (3.7%)
+ Atmel 30 (3.3%)
+ Rockchip 29 (3.2%)
+ ST Microelectronics 27 (3.0%)
+ Konsulko Group 25 (2.7%)
+ Amarula Solutions 21 (2.3%)
+ Socionext Inc. 19 (2.1%)
+ Toradex 18 (2.0%)
+ ARM 16 (1.7%)
+ Intel 16 (1.7%)
+ Samsung 13 (1.4%)
+ Weidmüller Interface GmbH & Co. KG 10 (1.1%)
+ Guntermann & Drunck 7 (0.8%)
+ Openedev 6 (0.7%)
+ Nobuhiro Iwamatsu 2 (0.2%)
+ AMD 1 (0.1%)
+ BayLibre SAS 1 (0.1%)
+ Boundary Devices 1 (0.1%)
+ Broadcom 1 (0.1%)
+ Debian.org 1 (0.1%)
+ NXP 1 (0.1%)
+ Red Hat 1 (0.1%)
+ Novell 1 (0.1%)
+ Renesas Electronics 1 (0.1%)
+ ================================== =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ Konsulko Group 101228 (52.1%)
+ (Unknown) 40402 (20.8%)
+ Atmel 8585 (4.4%)
+ Rockchip 7303 (3.8%)
+ ST Microelectronics 6439 (3.3%)
+ Guntermann & Drunck 5668 (2.9%)
+ Socionext Inc. 5117 (2.6%)
+ Toradex 3572 (1.8%)
+ Google, Inc. 3452 (1.8%)
+ Free Electrons 3071 (1.6%)
+ DENX Software Engineering 1908 (1.0%)
+ Texas Instruments 1564 (0.8%)
+ Marvell 1380 (0.7%)
+ Weidmüller Interface GmbH & Co. KG 1311 (0.7%)
+ Amarula Solutions 1261 (0.6%)
+ Intel 693 (0.4%)
+ ARM 402 (0.2%)
+ Samsung 361 (0.2%)
+ Openedev 147 (0.1%)
+ Renesas Electronics 118 (0.1%)
+ Broadcom 60 (0.0%)
+ BayLibre SAS 41 (0.0%)
+ Nobuhiro Iwamatsu 28 (0.0%)
+ Red Hat 7 (0.0%)
+ Novell 7 (0.0%)
+ Boundary Devices 3 (0.0%)
+ AMD 1 (0.0%)
+ Debian.org 1 (0.0%)
+ NXP 1 (0.0%)
+ ================================== =====
+
+
+.. table:: Employers with the most signoffs (total 278)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65 (23.4%)
+ DENX Software Engineering 63 (22.7%)
+ Google, Inc. 25 (9.0%)
+ Konsulko Group 22 (7.9%)
+ Free Electrons 21 (7.6%)
+ Texas Instruments 18 (6.5%)
+ Samsung 13 (4.7%)
+ Intel 11 (4.0%)
+ Xilinx 11 (4.0%)
+ Rockchip 7 (2.5%)
+ Toradex 5 (1.8%)
+ Marvell 4 (1.4%)
+ Openedev 4 (1.4%)
+ Novell 3 (1.1%)
+ NVidia 3 (1.1%)
+ Guntermann & Drunck 2 (0.7%)
+ BayLibre SAS 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 141)
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 81 (57.4%)
+ Texas Instruments 13 (9.2%)
+ Intel 6 (4.3%)
+ DENX Software Engineering 4 (2.8%)
+ Free Electrons 4 (2.8%)
+ Rockchip 4 (2.8%)
+ Google, Inc. 3 (2.1%)
+ Toradex 3 (2.1%)
+ Guntermann & Drunck 2 (1.4%)
+ ST Microelectronics 2 (1.4%)
+ Konsulko Group 1 (0.7%)
+ Samsung 1 (0.7%)
+ Marvell 1 (0.7%)
+ Openedev 1 (0.7%)
+ Novell 1 (0.7%)
+ BayLibre SAS 1 (0.7%)
+ Atmel 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.7%)
+ Amarula Solutions 1 (0.7%)
+ ARM 1 (0.7%)
+ Renesas Electronics 1 (0.7%)
+ Broadcom 1 (0.7%)
+ Nobuhiro Iwamatsu 1 (0.7%)
+ Red Hat 1 (0.7%)
+ Boundary Devices 1 (0.7%)
+ AMD 1 (0.7%)
+ Debian.org 1 (0.7%)
+ NXP 1 (0.7%)
+ ================================== =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.07.rst b/doc/develop/statistics/u-boot-stats-v2017.07.rst
new file mode 100644
index 0000000..9956378
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.07.rst
@@ -0,0 +1,637 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.07
+======================================
+
+* Processed 1371 csets from 129 developers
+
+* 31 employers found
+
+* A total of 100569 lines added, 201667 removed (delta -101098)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 293 (21.4%)
+ Tom Rini 81 (5.9%)
+ Álvaro Fernández Rojas 78 (5.7%)
+ Philipp Tomsich 68 (5.0%)
+ Jagan Teki 49 (3.6%)
+ Wenyou Yang 44 (3.2%)
+ Marek Vasut 38 (2.8%)
+ Bin Meng 34 (2.5%)
+ Vikas Manocha 33 (2.4%)
+ Lokesh Vutla 31 (2.3%)
+ Kever Yang 29 (2.1%)
+ Peng Fan 26 (1.9%)
+ York Sun 24 (1.8%)
+ Masahiro Yamada 21 (1.5%)
+ Andre Przywara 20 (1.5%)
+ Stefan Roese 17 (1.2%)
+ Ley Foon Tan 17 (1.2%)
+ Heiko Schocher 16 (1.2%)
+ Michal Simek 16 (1.2%)
+ Maxim Sloyko 16 (1.2%)
+ Jernej Skrabec 15 (1.1%)
+ Icenowy Zheng 15 (1.1%)
+ Fabio Estevam 14 (1.0%)
+ Adam Ford 14 (1.0%)
+ Christophe Leroy 13 (0.9%)
+ Eric Gao 13 (0.9%)
+ Uri Mashiach 12 (0.9%)
+ Ladislav Michl 11 (0.8%)
+ Andy Yan 11 (0.8%)
+ Jean-Jacques Hiblot 11 (0.8%)
+ Sekhar Nori 11 (0.8%)
+ Heinrich Schuchardt 10 (0.7%)
+ Alexey Brodkin 10 (0.7%)
+ Semen Protsenko 10 (0.7%)
+ Lothar Waßmann 9 (0.7%)
+ Cooper Jr., Franklin 9 (0.7%)
+ Paul Burton 9 (0.7%)
+ Konstantin Porotchkin 9 (0.7%)
+ Hannes Schmelzer 7 (0.5%)
+ Siva Durga Prasad Paladugu 7 (0.5%)
+ Chris Packham 7 (0.5%)
+ Keerthy 7 (0.5%)
+ Peter Robinson 6 (0.4%)
+ Meng Dongyang 6 (0.4%)
+ Jacob Chen 6 (0.4%)
+ Jaehoon Chung 5 (0.4%)
+ Kouei Abe 5 (0.4%)
+ Priyanka Jain 5 (0.4%)
+ B, Ravi 5 (0.4%)
+ Xu Ziyuan 5 (0.4%)
+ Igal Liberman 5 (0.4%)
+ Patrice Chotard 4 (0.3%)
+ Alison Wang 4 (0.3%)
+ Phil Edworthy 4 (0.3%)
+ Benoît Thébaudeau 4 (0.3%)
+ Gregory CLEMENT 4 (0.3%)
+ rick 4 (0.3%)
+ Andy Duan 4 (0.3%)
+ Andreas Fenkart 4 (0.3%)
+ Andy Shevchenko 3 (0.2%)
+ Daniel Schwierzeck 3 (0.2%)
+ Santan Kumar 3 (0.2%)
+ Tim Harvey 3 (0.2%)
+ Patrick Wildt 3 (0.2%)
+ Alex Deymo 3 (0.2%)
+ Holger Brunck 2 (0.1%)
+ Stephen Warren 2 (0.1%)
+ Enric Balletbo i Serra 2 (0.1%)
+ Rob Clark 2 (0.1%)
+ Alexander Graf 2 (0.1%)
+ Jonathan Gray 2 (0.1%)
+ Kunihiko Hayashi 2 (0.1%)
+ Emmanuel Vadot 2 (0.1%)
+ Ken Ma 2 (0.1%)
+ Mike Looijmans 2 (0.1%)
+ Jean-Francois Dagenais 2 (0.1%)
+ Chen-Yu Tsai 2 (0.1%)
+ Hiroyuki Yokoyama 2 (0.1%)
+ Klaus Goger 2 (0.1%)
+ Andreas Färber 2 (0.1%)
+ Heiko Stübner 2 (0.1%)
+ Pantelis Antoniou 2 (0.1%)
+ Madalin Bucur 2 (0.1%)
+ Bogdan Purcareata 2 (0.1%)
+ Mylene JOSSERAND 2 (0.1%)
+ Suresh Gupta 2 (0.1%)
+ Jelle van der Waa 2 (0.1%)
+ Jonas Karlman 2 (0.1%)
+ Pau Pajuelo 2 (0.1%)
+ Baruch Siach 1 (0.1%)
+ Martin Böh 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Andrew F. Davis 1 (0.1%)
+ Michael Welling 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ Manfred Schlaegl 1 (0.1%)
+ Mario Six 1 (0.1%)
+ Axel Lin 1 (0.1%)
+ Marek Behún 1 (0.1%)
+ Chakra Divi 1 (0.1%)
+ Toshifumi NISHINAGA 1 (0.1%)
+ Brock Zheng Techyauld Ltd 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ Romain Perier 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Anna, Suman 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Stefan Chulski 1 (0.1%)
+ Olliver Schinagl 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Daniel Thompson 1 (0.1%)
+ Vanessa Maegima 1 (0.1%)
+ Heiner Kallweit 1 (0.1%)
+ Udit Agarwal 1 (0.1%)
+ Yogesh Gaur 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Liam Beguin 1 (0.1%)
+ Siarhei Siamashka 1 (0.1%)
+ Paulo Zaneti 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Dinh Nguyen 1 (0.1%)
+ James Balean 1 (0.1%)
+ Nicolas Le Bayon 1 (0.1%)
+ Eddie Cai 1 (0.1%)
+ Jakob Unterwurzacher 1 (0.1%)
+ Paolo Pisati 1 (0.1%)
+ Uwe Kleine-König 1 (0.1%)
+ Nisal Menuka 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Schocher 157342 (55.7%)
+ Simon Glass 23832 (8.4%)
+ Marek Vasut 8410 (3.0%)
+ Wenyou Yang 8187 (2.9%)
+ Christophe Leroy 7484 (2.7%)
+ Ley Foon Tan 6148 (2.2%)
+ Andy Shevchenko 5885 (2.1%)
+ Philipp Tomsich 5365 (1.9%)
+ Álvaro Fernández Rojas 5302 (1.9%)
+ Adam Ford 5043 (1.8%)
+ Jagan Teki 4860 (1.7%)
+ Andy Yan 4225 (1.5%)
+ Tom Rini 4123 (1.5%)
+ Kever Yang 2912 (1.0%)
+ Maxim Sloyko 2878 (1.0%)
+ Peng Fan 2389 (0.8%)
+ Andreas Färber 2114 (0.7%)
+ Vikas Manocha 1882 (0.7%)
+ rick 1746 (0.6%)
+ Lokesh Vutla 1739 (0.6%)
+ York Sun 1637 (0.6%)
+ Bin Meng 1386 (0.5%)
+ Jernej Skrabec 1319 (0.5%)
+ Jean-Jacques Hiblot 1306 (0.5%)
+ Andre Przywara 1203 (0.4%)
+ Eric Gao 1149 (0.4%)
+ Masahiro Yamada 942 (0.3%)
+ Gregory CLEMENT 712 (0.3%)
+ Fabio Estevam 672 (0.2%)
+ Vanessa Maegima 650 (0.2%)
+ Igal Liberman 627 (0.2%)
+ Konstantin Porotchkin 529 (0.2%)
+ Semen Protsenko 521 (0.2%)
+ Icenowy Zheng 513 (0.2%)
+ Priyanka Jain 513 (0.2%)
+ Keerthy 385 (0.1%)
+ Mike Looijmans 370 (0.1%)
+ Jaehoon Chung 364 (0.1%)
+ Alexey Brodkin 361 (0.1%)
+ Jacob Chen 358 (0.1%)
+ Cooper Jr., Franklin 321 (0.1%)
+ Mylene JOSSERAND 301 (0.1%)
+ Chris Packham 300 (0.1%)
+ Stefan Roese 297 (0.1%)
+ Ladislav Michl 283 (0.1%)
+ Stephen Warren 272 (0.1%)
+ Bogdan Purcareata 239 (0.1%)
+ Santan Kumar 162 (0.1%)
+ Pau Pajuelo 145 (0.1%)
+ Kunihiko Hayashi 142 (0.1%)
+ Siva Durga Prasad Paladugu 117 (0.0%)
+ Hiroyuki Yokoyama 117 (0.0%)
+ Michal Simek 103 (0.0%)
+ Paul Burton 103 (0.0%)
+ Kouei Abe 100 (0.0%)
+ Patrick Wildt 100 (0.0%)
+ Sekhar Nori 93 (0.0%)
+ Meng Dongyang 93 (0.0%)
+ Jonas Karlman 88 (0.0%)
+ Hannes Schmelzer 87 (0.0%)
+ Uri Mashiach 77 (0.0%)
+ Alex Deymo 72 (0.0%)
+ Paolo Pisati 70 (0.0%)
+ Jelle van der Waa 68 (0.0%)
+ Daniel Thompson 67 (0.0%)
+ Siarhei Siamashka 67 (0.0%)
+ Tim Harvey 66 (0.0%)
+ Andreas Fenkart 62 (0.0%)
+ B, Ravi 60 (0.0%)
+ Phil Edworthy 59 (0.0%)
+ Patrice Chotard 51 (0.0%)
+ Alison Wang 51 (0.0%)
+ Lothar Waßmann 50 (0.0%)
+ Benoît Thébaudeau 48 (0.0%)
+ Liam Beguin 46 (0.0%)
+ Klaus Goger 42 (0.0%)
+ Stefan Chulski 40 (0.0%)
+ Zhao Qiang 40 (0.0%)
+ Xu Ziyuan 39 (0.0%)
+ Peter Robinson 27 (0.0%)
+ Chakra Divi 25 (0.0%)
+ Heinrich Schuchardt 24 (0.0%)
+ Stefano Babic 24 (0.0%)
+ Daniel Schwierzeck 23 (0.0%)
+ Andy Duan 22 (0.0%)
+ Chen-Yu Tsai 19 (0.0%)
+ Nisal Menuka 18 (0.0%)
+ Rob Clark 17 (0.0%)
+ Jonathan Gray 16 (0.0%)
+ Enric Balletbo i Serra 13 (0.0%)
+ Yogesh Gaur 13 (0.0%)
+ Holger Brunck 12 (0.0%)
+ Udit Agarwal 12 (0.0%)
+ Andrew F. Davis 11 (0.0%)
+ Hou Zhiqiang 10 (0.0%)
+ Nicolas Le Bayon 10 (0.0%)
+ Emmanuel Vadot 9 (0.0%)
+ Jean-Francois Dagenais 9 (0.0%)
+ Martin Böh 8 (0.0%)
+ James Balean 8 (0.0%)
+ Uwe Kleine-König 8 (0.0%)
+ Alexander Graf 7 (0.0%)
+ Paulo Zaneti 6 (0.0%)
+ Pantelis Antoniou 5 (0.0%)
+ Baruch Siach 5 (0.0%)
+ Olliver Schinagl 5 (0.0%)
+ Ken Ma 4 (0.0%)
+ Madalin Bucur 4 (0.0%)
+ Suresh Gupta 4 (0.0%)
+ Michael Welling 4 (0.0%)
+ Mark Kettenis 4 (0.0%)
+ Eddie Cai 4 (0.0%)
+ Heiko Stübner 3 (0.0%)
+ Nobuhiro Iwamatsu 3 (0.0%)
+ Lukasz Majewski 2 (0.0%)
+ Mugunthan V N 2 (0.0%)
+ Mario Six 2 (0.0%)
+ Axel Lin 2 (0.0%)
+ Angelo Dureghello 2 (0.0%)
+ Dinh Nguyen 2 (0.0%)
+ Manfred Schlaegl 1 (0.0%)
+ Marek Behún 1 (0.0%)
+ Toshifumi NISHINAGA 1 (0.0%)
+ Brock Zheng Techyauld Ltd 1 (0.0%)
+ Romain Perier 1 (0.0%)
+ Anna, Suman 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Heiner Kallweit 1 (0.0%)
+ Jakob Unterwurzacher 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Schocher 157194 (77.9%)
+ Andy Shevchenko 5862 (2.9%)
+ Simon Glass 3259 (1.6%)
+ York Sun 1334 (0.7%)
+ Jagan Teki 928 (0.5%)
+ Fabio Estevam 307 (0.2%)
+ Stephen Warren 268 (0.1%)
+ Tom Rini 111 (0.1%)
+ Andreas Fenkart 20 (0.0%)
+ Holger Brunck 12 (0.0%)
+ Hannes Schmelzer 6 (0.0%)
+ Enric Balletbo i Serra 5 (0.0%)
+ Uwe Kleine-König 3 (0.0%)
+ Suresh Gupta 3 (0.0%)
+ Olliver Schinagl 2 (0.0%)
+ Eddie Cai 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 163)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 16 (9.8%)
+ Stefan Roese 15 (9.2%)
+ Michal Simek 12 (7.4%)
+ Tien Fong Chee 11 (6.7%)
+ Maxime Ripard 10 (6.1%)
+ Daniel Schwierzeck 9 (5.5%)
+ Philipp Tomsich 9 (5.5%)
+ Igal Liberman 8 (4.9%)
+ Simon Glass 7 (4.3%)
+ Minkyu Kang 5 (3.1%)
+ Alexander Graf 5 (3.1%)
+ Priyanka Jain 4 (2.5%)
+ Peng Fan 4 (2.5%)
+ Jagan Teki 3 (1.8%)
+ Hiroyuki Yokoyama 3 (1.8%)
+ Santan Kumar 3 (1.8%)
+ Mugunthan V N 2 (1.2%)
+ Tom Warren 2 (1.2%)
+ Abhimanyu Saini 2 (1.2%)
+ Heinz Wrobel 2 (1.2%)
+ Yehuda Yitschak 2 (1.2%)
+ Ladislav Michl 2 (1.2%)
+ Masahiro Yamada 2 (1.2%)
+ B, Ravi 2 (1.2%)
+ Jaehoon Chung 2 (1.2%)
+ Andy Yan 2 (1.2%)
+ Marek Vasut 2 (1.2%)
+ York Sun 1 (0.6%)
+ Suresh Gupta 1 (0.6%)
+ Sriramakrishnan 1 (0.6%)
+ Vitaly Wool 1 (0.6%)
+ Grygorii Strashko 1 (0.6%)
+ Sylvain Lemieux 1 (0.6%)
+ George McCollister 1 (0.6%)
+ Elaine Zhang 1 (0.6%)
+ Yoav Gvili 1 (0.6%)
+ Hanna Hawa 1 (0.6%)
+ Rabeeh Khoury 1 (0.6%)
+ zachary 1 (0.6%)
+ Haim Boot 1 (0.6%)
+ Lokesh Vutla 1 (0.6%)
+ Andre Przywara 1 (0.6%)
+ Konstantin Porotchkin 1 (0.6%)
+ Álvaro Fernández Rojas 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 656)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 313 (47.7%)
+ Tom Rini 109 (16.6%)
+ Stefan Roese 35 (5.3%)
+ Jagan Teki 35 (5.3%)
+ Heiko Schocher 35 (5.3%)
+ York Sun 21 (3.2%)
+ Lokesh Vutla 17 (2.6%)
+ Jaehoon Chung 12 (1.8%)
+ Bin Meng 12 (1.8%)
+ Marek Vasut 9 (1.4%)
+ Philipp Tomsich 8 (1.2%)
+ Kever Yang 7 (1.1%)
+ Fabio Estevam 6 (0.9%)
+ Nobuhiro Iwamatsu 6 (0.9%)
+ Stefano Babic 6 (0.9%)
+ Lukasz Majewski 4 (0.6%)
+ Daniel Schwierzeck 2 (0.3%)
+ Peng Fan 2 (0.3%)
+ Christophe KERELLO 2 (0.3%)
+ Patrick DELAUNAY 2 (0.3%)
+ Roger Quadros 2 (0.3%)
+ Alexander Graf 1 (0.2%)
+ Andre Przywara 1 (0.2%)
+ Stephen Warren 1 (0.2%)
+ Hannes Schmelzer 1 (0.2%)
+ Alexandru Gagniuc 1 (0.2%)
+ Christian Gmeiner 1 (0.2%)
+ Felix Brack 1 (0.2%)
+ Andreas Bießmann 1 (0.2%)
+ Igor Grinberg 1 (0.2%)
+ Semen Protsenko 1 (0.2%)
+ Jean-Jacques Hiblot 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 104)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 28 (26.9%)
+ Stefan Roese 24 (23.1%)
+ Philipp Tomsich 10 (9.6%)
+ Kever Yang 7 (6.7%)
+ Pau Pajuelo 7 (6.7%)
+ Heiko Stübner 6 (5.8%)
+ Bin Meng 5 (4.8%)
+ Klaus Goger 5 (4.8%)
+ Jakob Unterwurzacher 3 (2.9%)
+ Simon Glass 1 (1.0%)
+ Heiko Schocher 1 (1.0%)
+ Felix Brack 1 (1.0%)
+ Jean-Jacques Hiblot 1 (1.0%)
+ Peter Chubb 1 (1.0%)
+ Thierry Reding 1 (1.0%)
+ Peter Senna Tschudin 1 (1.0%)
+ Pantelis Antoniou 1 (1.0%)
+ Peter Robinson 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 104)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 24 (23.1%)
+ Andre Przywara 18 (17.3%)
+ Simon Glass 15 (14.4%)
+ Icenowy Zheng 12 (11.5%)
+ Philipp Tomsich 9 (8.7%)
+ Ladislav Michl 5 (4.8%)
+ Jagan Teki 4 (3.8%)
+ Andreas Fenkart 4 (3.8%)
+ Paul Burton 4 (3.8%)
+ Pau Pajuelo 2 (1.9%)
+ Tom Rini 2 (1.9%)
+ Kever Yang 1 (1.0%)
+ Jakob Unterwurzacher 1 (1.0%)
+ Lukasz Majewski 1 (1.0%)
+ James Balean 1 (1.0%)
+ Tim Harvey 1 (1.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stephen Warren 2 (18.2%)
+ Pantelis Antoniou 1 (9.1%)
+ Peter Robinson 1 (9.1%)
+ Manfred Schlaegl 1 (9.1%)
+ Nathan Rossi 1 (9.1%)
+ Yan Liu 1 (9.1%)
+ Steve Kipisz 1 (9.1%)
+ Thomas Doerfler 1 (9.1%)
+ Emmanuel Vadot 1 (9.1%)
+ Sekhar Nori 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 11)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (27.3%)
+ Michal Simek 3 (27.3%)
+ Lokesh Vutla 2 (18.2%)
+ Simon Glass 1 (9.1%)
+ Cooper Jr., Franklin 1 (9.1%)
+ Keerthy 1 (9.1%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 456 (33.3%)
+ Google, Inc. 312 (22.8%)
+ Konsulko Group 83 (6.1%)
+ Texas Instruments 77 (5.6%)
+ DENX Software Engineering 73 (5.3%)
+ Rockchip 65 (4.7%)
+ Amarula Solutions 49 (3.6%)
+ Atmel 44 (3.2%)
+ ST Microelectronics 38 (2.8%)
+ Socionext Inc. 23 (1.7%)
+ ARM 20 (1.5%)
+ Intel 20 (1.5%)
+ Marvell 17 (1.2%)
+ AMD 16 (1.2%)
+ CompuLab 12 (0.9%)
+ Linaro 11 (0.8%)
+ Renesas Electronics 11 (0.8%)
+ MIPS 9 (0.7%)
+ Xilinx 7 (0.5%)
+ Free Electrons 6 (0.4%)
+ Samsung 5 (0.4%)
+ NXP 4 (0.3%)
+ Collabora Ltd. 3 (0.2%)
+ Keymile 2 (0.1%)
+ Novell 2 (0.1%)
+ Debian.org 1 (0.1%)
+ Guntermann & Drunck 1 (0.1%)
+ NVidia 1 (0.1%)
+ Openedev 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 166075 (58.8%)
+ (Unknown) 37351 (13.2%)
+ Google, Inc. 26782 (9.5%)
+ Intel 12033 (4.3%)
+ Rockchip 8435 (3.0%)
+ Atmel 8187 (2.9%)
+ Amarula Solutions 4860 (1.7%)
+ Konsulko Group 4128 (1.5%)
+ Texas Instruments 3918 (1.4%)
+ Novell 2114 (0.7%)
+ ST Microelectronics 1943 (0.7%)
+ ARM 1203 (0.4%)
+ Marvell 1200 (0.4%)
+ Socionext Inc. 1084 (0.4%)
+ Free Electrons 1013 (0.4%)
+ Linaro 588 (0.2%)
+ Samsung 364 (0.1%)
+ Renesas Electronics 276 (0.1%)
+ NVidia 268 (0.1%)
+ Xilinx 117 (0.0%)
+ AMD 103 (0.0%)
+ MIPS 103 (0.0%)
+ CompuLab 77 (0.0%)
+ NXP 51 (0.0%)
+ Openedev 25 (0.0%)
+ Collabora Ltd. 14 (0.0%)
+ Keymile 12 (0.0%)
+ Pengutronix 8 (0.0%)
+ Nobuhiro Iwamatsu 3 (0.0%)
+ Guntermann & Drunck 2 (0.0%)
+ Debian.org 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 163)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 43 (26.4%)
+ Konsulko Group 17 (10.4%)
+ DENX Software Engineering 15 (9.2%)
+ Marvell 15 (9.2%)
+ Xilinx 12 (7.4%)
+ Intel 11 (6.7%)
+ Free Electrons 10 (6.1%)
+ Google, Inc. 7 (4.3%)
+ Texas Instruments 7 (4.3%)
+ Samsung 7 (4.3%)
+ Novell 5 (3.1%)
+ Rockchip 3 (1.8%)
+ Renesas Electronics 3 (1.8%)
+ Socionext Inc. 2 (1.2%)
+ NVidia 2 (1.2%)
+ Openedev 2 (1.2%)
+ Amarula Solutions 1 (0.6%)
+ ARM 1 (0.6%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 131)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 69 (52.7%)
+ Texas Instruments 9 (6.9%)
+ Rockchip 6 (4.6%)
+ DENX Software Engineering 5 (3.8%)
+ Marvell 4 (3.1%)
+ Google, Inc. 3 (2.3%)
+ Renesas Electronics 3 (2.3%)
+ ST Microelectronics 3 (2.3%)
+ Konsulko Group 2 (1.5%)
+ Intel 2 (1.5%)
+ Free Electrons 2 (1.5%)
+ Socionext Inc. 2 (1.5%)
+ Linaro 2 (1.5%)
+ Collabora Ltd. 2 (1.5%)
+ Xilinx 1 (0.8%)
+ Samsung 1 (0.8%)
+ Novell 1 (0.8%)
+ NVidia 1 (0.8%)
+ Openedev 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ ARM 1 (0.8%)
+ Atmel 1 (0.8%)
+ AMD 1 (0.8%)
+ MIPS 1 (0.8%)
+ CompuLab 1 (0.8%)
+ NXP 1 (0.8%)
+ Keymile 1 (0.8%)
+ Pengutronix 1 (0.8%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Guntermann & Drunck 1 (0.8%)
+ Debian.org 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.09.rst b/doc/develop/statistics/u-boot-stats-v2017.09.rst
new file mode 100644
index 0000000..09b4bf8
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.09.rst
@@ -0,0 +1,680 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.09
+======================================
+
+* Processed 1308 csets from 130 developers
+
+* 27 employers found
+
+* A total of 64047 lines added, 36307 removed (delta 27740)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 246 (18.8%)
+ Bin Meng 126 (9.6%)
+ Philipp Tomsich 102 (7.8%)
+ Heinrich Schuchardt 56 (4.3%)
+ Kever Yang 54 (4.1%)
+ Tom Rini 49 (3.7%)
+ Masahiro Yamada 42 (3.2%)
+ Patrice Chotard 41 (3.1%)
+ Marek Vasut 38 (2.9%)
+ Franklin S Cooper Jr 31 (2.4%)
+ Jagan Teki 17 (1.3%)
+ Rob Clark 17 (1.3%)
+ Grygorii Strashko 17 (1.3%)
+ Stefan Roese 16 (1.2%)
+ Thomas Petazzoni 15 (1.1%)
+ Adam Ford 15 (1.1%)
+ Wenyou Yang 15 (1.1%)
+ Peng Fan 15 (1.1%)
+ Christophe Leroy 14 (1.1%)
+ Stefan Agner 13 (1.0%)
+ Andy Shevchenko 13 (1.0%)
+ Andy Yan 13 (1.0%)
+ Alison Chaiken 12 (0.9%)
+ Fabio Estevam 12 (0.9%)
+ Siva Durga Prasad Paladugu 12 (0.9%)
+ Keerthy 12 (0.9%)
+ Anatolij Gustschin 10 (0.8%)
+ Stefan Chulski 10 (0.8%)
+ Andrew F. Davis 10 (0.8%)
+ Alexandru Gagniuc 9 (0.7%)
+ Eric Gao 9 (0.7%)
+ Meng Dongyang 9 (0.7%)
+ Chris Packham 8 (0.6%)
+ Wadim Egorov 8 (0.6%)
+ Santan Kumar 8 (0.6%)
+ Tien Fong Chee 8 (0.6%)
+ Maxime Ripard 7 (0.5%)
+ Marek Behún 7 (0.5%)
+ Michal Simek 7 (0.5%)
+ Alexander Graf 6 (0.5%)
+ Sam Protsenko 5 (0.4%)
+ Angelo Dureghello 5 (0.4%)
+ Lokesh Vutla 5 (0.4%)
+ Karl Beldan 5 (0.4%)
+ Jorge Ramirez-Ortiz 4 (0.3%)
+ Stefano Babic 4 (0.3%)
+ Marcel Ziswiler 4 (0.3%)
+ Zhikang Zhang 4 (0.3%)
+ Hou Zhiqiang 4 (0.3%)
+ Patrick Delaunay 4 (0.3%)
+ Srinivas, Madan 4 (0.3%)
+ Baruch Siach 4 (0.3%)
+ Nobuhiro Iwamatsu 3 (0.2%)
+ Madalin Bucur 3 (0.2%)
+ Lukasz Majewski 3 (0.2%)
+ Derald D. Woods 3 (0.2%)
+ Breno Lima 3 (0.2%)
+ Sumit Garg 3 (0.2%)
+ Nishanth Menon 3 (0.2%)
+ Icenowy Zheng 3 (0.2%)
+ Alison Wang 3 (0.2%)
+ Qianyu Gong 3 (0.2%)
+ Jean-Jacques Hiblot 3 (0.2%)
+ Leo Wen 3 (0.2%)
+ Romain Perier 3 (0.2%)
+ Beniamino Galvani 3 (0.2%)
+ Paul Burton 3 (0.2%)
+ Fabio Berton 3 (0.2%)
+ Heiko Schocher 2 (0.2%)
+ Niko Mauno 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Christophe Kerello 2 (0.2%)
+ Clément Bœsch 2 (0.2%)
+ Sébastien Szymanski 2 (0.2%)
+ Yuiko Oshino 2 (0.2%)
+ Jon Nettleton 2 (0.2%)
+ Emmanuel Vadot 2 (0.2%)
+ Joe Hershberger 2 (0.2%)
+ Christian Gmeiner 2 (0.2%)
+ Felipe Balbi 2 (0.2%)
+ Lothar Waßmann 2 (0.2%)
+ Holger Brunck 2 (0.2%)
+ Fiach Antaw 2 (0.2%)
+ Patrick Bruenn 2 (0.2%)
+ Vanessa Maegima 2 (0.2%)
+ Paul Barker 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Clemens Gruber 1 (0.1%)
+ Dave Prue 1 (0.1%)
+ Chen-Yu Tsai 1 (0.1%)
+ Dai Okamura 1 (0.1%)
+ Wilson Lee 1 (0.1%)
+ Stephen Boyd 1 (0.1%)
+ Vikas Manocha 1 (0.1%)
+ Pau Pajuelo 1 (0.1%)
+ Ladislav Michl 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Reno Farnesi 1 (0.1%)
+ Suniel Mahesh 1 (0.1%)
+ John Keeping 1 (0.1%)
+ Peter Chubb 1 (0.1%)
+ Vladimir Zapolskiy 1 (0.1%)
+ Peter Griffin 1 (0.1%)
+ Prabhakar Kushwaha 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Olliver Schinagl 1 (0.1%)
+ Igal Liberman 1 (0.1%)
+ York Sun 1 (0.1%)
+ Rajesh Bhagat 1 (0.1%)
+ Yang Li 1 (0.1%)
+ Sebastien Bourdelin 1 (0.1%)
+ Denis Pynkin 1 (0.1%)
+ Holger Dengler 1 (0.1%)
+ Arun Parameswaran 1 (0.1%)
+ Suji Velupillai 1 (0.1%)
+ Jimmy Du 1 (0.1%)
+ VINITHA PILLAI 1 (0.1%)
+ Zhang Ying-22455 1 (0.1%)
+ Shengzhou Liu 1 (0.1%)
+ Alexander Stein 1 (0.1%)
+ Kishon Vijay Abraham I 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Zubair Lutfullah Kakakhel 1 (0.1%)
+ Michael Heimpold 1 (0.1%)
+ Diego Dorta 1 (0.1%)
+ Gautam Bhat 1 (0.1%)
+ Florian Fainelli 1 (0.1%)
+ Mugunthan V N 1 (0.1%)
+ Sjoerd Simons 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 15119 (18.7%)
+ Marek Vasut 6778 (8.4%)
+ Bin Meng 5289 (6.5%)
+ Tom Rini 4891 (6.0%)
+ Philipp Tomsich 4645 (5.7%)
+ Masahiro Yamada 4108 (5.1%)
+ Kever Yang 4042 (5.0%)
+ Patrice Chotard 3266 (4.0%)
+ Zhikang Zhang 2142 (2.6%)
+ Marek Behún 1999 (2.5%)
+ Yuiko Oshino 1565 (1.9%)
+ Alexandru Gagniuc 1479 (1.8%)
+ Thomas Petazzoni 1456 (1.8%)
+ Wenyou Yang 1453 (1.8%)
+ Stefano Babic 1441 (1.8%)
+ Jorge Ramirez-Ortiz 1387 (1.7%)
+ Wadim Egorov 1200 (1.5%)
+ Vanessa Maegima 1136 (1.4%)
+ Heinrich Schuchardt 1105 (1.4%)
+ Stefan Agner 1016 (1.3%)
+ Tien Fong Chee 949 (1.2%)
+ Stefan Roese 817 (1.0%)
+ Angelo Dureghello 796 (1.0%)
+ Siva Durga Prasad Paladugu 764 (0.9%)
+ Franklin S Cooper Jr 741 (0.9%)
+ Paul Burton 674 (0.8%)
+ Beniamino Galvani 606 (0.7%)
+ Sam Protsenko 596 (0.7%)
+ Christophe Leroy 594 (0.7%)
+ Andy Shevchenko 590 (0.7%)
+ Andrew F. Davis 576 (0.7%)
+ Jagan Teki 566 (0.7%)
+ Alison Chaiken 547 (0.7%)
+ Eric Gao 433 (0.5%)
+ Adam Ford 420 (0.5%)
+ Derald D. Woods 398 (0.5%)
+ Felipe Balbi 383 (0.5%)
+ Chris Packham 354 (0.4%)
+ Alexander Graf 324 (0.4%)
+ Sjoerd Simons 296 (0.4%)
+ Peng Fan 270 (0.3%)
+ Andy Yan 215 (0.3%)
+ Breno Lima 204 (0.3%)
+ Stefan Chulski 169 (0.2%)
+ Fiach Antaw 166 (0.2%)
+ Rob Clark 163 (0.2%)
+ Meng Dongyang 152 (0.2%)
+ Ladislav Michl 149 (0.2%)
+ Ruchika Gupta 142 (0.2%)
+ Igal Liberman 142 (0.2%)
+ Pau Pajuelo 124 (0.2%)
+ Alison Wang 111 (0.1%)
+ Grygorii Strashko 103 (0.1%)
+ Jean-Jacques Hiblot 100 (0.1%)
+ Sumit Garg 90 (0.1%)
+ Patrick Delaunay 88 (0.1%)
+ Maxime Ripard 83 (0.1%)
+ Diego Dorta 83 (0.1%)
+ Santan Kumar 77 (0.1%)
+ Nishanth Menon 73 (0.1%)
+ Fabio Estevam 68 (0.1%)
+ Mugunthan V N 65 (0.1%)
+ Arun Parameswaran 63 (0.1%)
+ Baruch Siach 61 (0.1%)
+ Qianyu Gong 55 (0.1%)
+ VINITHA PILLAI 53 (0.1%)
+ Shengzhou Liu 50 (0.1%)
+ Christophe Kerello 49 (0.1%)
+ Zhang Ying-22455 48 (0.1%)
+ Anatolij Gustschin 47 (0.1%)
+ Olliver Schinagl 41 (0.1%)
+ Joe Hershberger 40 (0.0%)
+ Michal Simek 38 (0.0%)
+ Peter Griffin 37 (0.0%)
+ Lokesh Vutla 33 (0.0%)
+ Srinivas, Madan 33 (0.0%)
+ Suji Velupillai 31 (0.0%)
+ Hou Zhiqiang 28 (0.0%)
+ Sebastien Bourdelin 28 (0.0%)
+ Lothar Waßmann 27 (0.0%)
+ Holger Brunck 27 (0.0%)
+ Keerthy 23 (0.0%)
+ Marcel Ziswiler 23 (0.0%)
+ Florian Fainelli 22 (0.0%)
+ Madalin Bucur 19 (0.0%)
+ Sébastien Szymanski 19 (0.0%)
+ Peter Robinson 17 (0.0%)
+ Romain Perier 16 (0.0%)
+ Nobuhiro Iwamatsu 14 (0.0%)
+ Lukasz Majewski 13 (0.0%)
+ Icenowy Zheng 13 (0.0%)
+ Patrick Bruenn 12 (0.0%)
+ Michael Heimpold 12 (0.0%)
+ Denis Pynkin 11 (0.0%)
+ Niko Mauno 10 (0.0%)
+ Fabio Berton 9 (0.0%)
+ Hannes Schmelzer 8 (0.0%)
+ Christian Gmeiner 8 (0.0%)
+ Alexander Stein 8 (0.0%)
+ Leo Wen 7 (0.0%)
+ Karl Beldan 6 (0.0%)
+ Dave Prue 6 (0.0%)
+ Suniel Mahesh 6 (0.0%)
+ Gautam Bhat 6 (0.0%)
+ Heiko Schocher 4 (0.0%)
+ Clément Bœsch 4 (0.0%)
+ Emmanuel Vadot 4 (0.0%)
+ Paul Barker 4 (0.0%)
+ Stephen Boyd 4 (0.0%)
+ Rajesh Bhagat 4 (0.0%)
+ Zubair Lutfullah Kakakhel 4 (0.0%)
+ Jon Nettleton 3 (0.0%)
+ Dai Okamura 3 (0.0%)
+ Prabhakar Kushwaha 3 (0.0%)
+ Kishon Vijay Abraham I 3 (0.0%)
+ Clemens Gruber 2 (0.0%)
+ Wilson Lee 2 (0.0%)
+ Vladimir Zapolskiy 2 (0.0%)
+ Klaus Goger 2 (0.0%)
+ York Sun 2 (0.0%)
+ Yang Li 2 (0.0%)
+ Holger Dengler 2 (0.0%)
+ Jimmy Du 2 (0.0%)
+ Jonathan Gray 1 (0.0%)
+ Chen-Yu Tsai 1 (0.0%)
+ Vikas Manocha 1 (0.0%)
+ Reno Farnesi 1 (0.0%)
+ John Keeping 1 (0.0%)
+ Peter Chubb 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 3221 (8.9%)
+ Masahiro Yamada 2888 (8.0%)
+ Thomas Petazzoni 1407 (3.9%)
+ Christophe Leroy 371 (1.0%)
+ Tom Rini 207 (0.6%)
+ Breno Lima 181 (0.5%)
+ Igal Liberman 89 (0.2%)
+ Derald D. Woods 67 (0.2%)
+ Vanessa Maegima 51 (0.1%)
+ Fiach Antaw 38 (0.1%)
+ Hou Zhiqiang 10 (0.0%)
+ Stefan Chulski 9 (0.0%)
+ Suniel Mahesh 6 (0.0%)
+ Patrick Delaunay 4 (0.0%)
+ Yang Li 2 (0.0%)
+ Zhang Ying-22455 1 (0.0%)
+ Dave Prue 1 (0.0%)
+ Heiko Schocher 1 (0.0%)
+ Kishon Vijay Abraham I 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 224)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 52 (23.2%)
+ Nobuhiro Iwamatsu 29 (12.9%)
+ Stefan Roese 26 (11.6%)
+ Tom Rini 16 (7.1%)
+ Michal Simek 16 (7.1%)
+ Philipp Tomsich 13 (5.8%)
+ Bin Meng 8 (3.6%)
+ Tom Warren 4 (1.8%)
+ Wenbin Song 4 (1.8%)
+ Priyanka Jain 4 (1.8%)
+ Jaehoon Chung 4 (1.8%)
+ Jagan Teki 4 (1.8%)
+ Vincent Tinelli 3 (1.3%)
+ Otavio Salvador 3 (1.3%)
+ Tomas Hlavacek 3 (1.3%)
+ Masahiro Yamada 2 (0.9%)
+ Anatolij Gustschin 2 (0.9%)
+ Shengzhou Liu 2 (0.9%)
+ Andy Shevchenko 2 (0.9%)
+ Simon Glass 2 (0.9%)
+ Hou Zhiqiang 1 (0.4%)
+ Keerthy 1 (0.4%)
+ Steve Rae 1 (0.4%)
+ Ashish Kumar 1 (0.4%)
+ Ziyuan Xu 1 (0.4%)
+ Rajat Srivastava 1 (0.4%)
+ yinbo.zhu 1 (0.4%)
+ Thanh Tran 1 (0.4%)
+ Jason Zhu 1 (0.4%)
+ Sriramakrishnan 1 (0.4%)
+ Vitaly Wool 1 (0.4%)
+ Tero Kristo 1 (0.4%)
+ Jon Nettleton 1 (0.4%)
+ Romain Perier 1 (0.4%)
+ Ladislav Michl 1 (0.4%)
+ Grygorii Strashko 1 (0.4%)
+ Christophe Kerello 1 (0.4%)
+ Olliver Schinagl 1 (0.4%)
+ Maxime Ripard 1 (0.4%)
+ Sumit Garg 1 (0.4%)
+ Jean-Jacques Hiblot 1 (0.4%)
+ Meng Dongyang 1 (0.4%)
+ Felipe Balbi 1 (0.4%)
+ Franklin S Cooper Jr 1 (0.4%)
+ Patrice Chotard 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 865)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 283 (32.7%)
+ Philipp Tomsich 133 (15.4%)
+ Tom Rini 124 (14.3%)
+ Bin Meng 121 (14.0%)
+ Stefan Roese 32 (3.7%)
+ York Sun 27 (3.1%)
+ Jagan Teki 16 (1.8%)
+ Lukasz Majewski 12 (1.4%)
+ Stefano Babic 12 (1.4%)
+ Igal Liberman 10 (1.2%)
+ Fabio Estevam 10 (1.2%)
+ Andy Shevchenko 9 (1.0%)
+ Dinh Nguyen 8 (0.9%)
+ Ley Foon Tan 8 (0.9%)
+ Lokesh Vutla 8 (0.9%)
+ Heiko Schocher 7 (0.8%)
+ Nadav Haklai 6 (0.7%)
+ Nobuhiro Iwamatsu 3 (0.3%)
+ Joe Hershberger 3 (0.3%)
+ Marek Vasut 3 (0.3%)
+ Vikas Manocha 2 (0.2%)
+ Wolfgang Denk 2 (0.2%)
+ Daniel Schwierzeck 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Jaehoon Chung 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Sumit Garg 1 (0.1%)
+ Franklin S Cooper Jr 1 (0.1%)
+ Vladimir Zapolskiy 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Jason Cooper 1 (0.1%)
+ Stefan Brüns 1 (0.1%)
+ Jakob Unterwurzacher 1 (0.1%)
+ Kostya Porotchkin 1 (0.1%)
+ Yauheni Kaliuta 1 (0.1%)
+ JD Zheng 1 (0.1%)
+ Scott Branden 1 (0.1%)
+ Moritz Fischer 1 (0.1%)
+ Andreas Färber 1 (0.1%)
+ Marcel Ziswiler 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ Sam Protsenko 1 (0.1%)
+ Rob Clark 1 (0.1%)
+ Heinrich Schuchardt 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 133)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marcel Ziswiler 36 (27.1%)
+ Stephen Warren 26 (19.5%)
+ Stefan Roese 19 (14.3%)
+ iSoC Platform CI 10 (7.5%)
+ Bin Meng 8 (6.0%)
+ Jagan Teki 4 (3.0%)
+ Chen-Yu Tsai 3 (2.3%)
+ VINITHA PILLAI 3 (2.3%)
+ Simon Glass 2 (1.5%)
+ Daniel Schwierzeck 2 (1.5%)
+ Jonathan Gray 2 (1.5%)
+ Pau Pajuelo 2 (1.5%)
+ Philipp Tomsich 1 (0.8%)
+ Dinh Nguyen 1 (0.8%)
+ Heiko Schocher 1 (0.8%)
+ Marek Vasut 1 (0.8%)
+ Hannes Schmelzer 1 (0.8%)
+ Mark Kettenis 1 (0.8%)
+ Heinrich Schuchardt 1 (0.8%)
+ Steve Rae 1 (0.8%)
+ Joël Esponde 1 (0.8%)
+ Vagrant Cascadian 1 (0.8%)
+ Paul Barker 1 (0.8%)
+ Peter Robinson 1 (0.8%)
+ Suji Velupillai 1 (0.8%)
+ Adam Ford 1 (0.8%)
+ Peng Fan 1 (0.8%)
+ Kever Yang 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 133)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 70 (52.6%)
+ Bin Meng 22 (16.5%)
+ Stefan Chulski 10 (7.5%)
+ Jagan Teki 3 (2.3%)
+ Tom Rini 3 (2.3%)
+ Sumit Garg 3 (2.3%)
+ Maxime Ripard 2 (1.5%)
+ Icenowy Zheng 2 (1.5%)
+ Paul Burton 2 (1.5%)
+ Stefan Roese 1 (0.8%)
+ Pau Pajuelo 1 (0.8%)
+ Philipp Tomsich 1 (0.8%)
+ Paul Barker 1 (0.8%)
+ Suji Velupillai 1 (0.8%)
+ Peng Fan 1 (0.8%)
+ Kever Yang 1 (0.8%)
+ Andy Shevchenko 1 (0.8%)
+ Christian Gmeiner 1 (0.8%)
+ Sam Protsenko 1 (0.8%)
+ Jon Nettleton 1 (0.8%)
+ Ladislav Michl 1 (0.8%)
+ Dave Prue 1 (0.8%)
+ John Keeping 1 (0.8%)
+ Alison Chaiken 1 (0.8%)
+ Stefan Agner 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 2 (8.0%)
+ Patrick Delaunay 2 (8.0%)
+ Ran Wang 2 (8.0%)
+ Sumit Garg 1 (4.0%)
+ Maxime Ripard 1 (4.0%)
+ Stefan Roese 1 (4.0%)
+ Andy Shevchenko 1 (4.0%)
+ Heiko Schocher 1 (4.0%)
+ Marek Vasut 1 (4.0%)
+ Heinrich Schuchardt 1 (4.0%)
+ Joël Esponde 1 (4.0%)
+ Peter Robinson 1 (4.0%)
+ Stefano Babic 1 (4.0%)
+ Alexander Graf 1 (4.0%)
+ Jean-Jacques Hiblot 1 (4.0%)
+ Måns Rullgård 1 (4.0%)
+ Artturi Alm 1 (4.0%)
+ Bo Shen 1 (4.0%)
+ Miquel RAYNAL 1 (4.0%)
+ Takashi Matsuzawa 1 (4.0%)
+ Kevin Hilman 1 (4.0%)
+ Andy Yan 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Patrice Chotard 5 (20.0%)
+ Tom Rini 4 (16.0%)
+ Simon Glass 4 (16.0%)
+ Bin Meng 3 (12.0%)
+ Philipp Tomsich 3 (12.0%)
+ Fabio Estevam 3 (12.0%)
+ Heinrich Schuchardt 1 (4.0%)
+ Alexander Graf 1 (4.0%)
+ Stefan Agner 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 520 (39.8%)
+ Google, Inc. 246 (18.8%)
+ Rockchip 87 (6.7%)
+ Texas Instruments 87 (6.7%)
+ DENX Software Engineering 73 (5.6%)
+ Konsulko Group 49 (3.7%)
+ ST Microelectronics 48 (3.7%)
+ Socionext Inc. 43 (3.3%)
+ Intel 23 (1.8%)
+ Free Electrons 22 (1.7%)
+ Amarula Solutions 17 (1.3%)
+ Toradex 17 (1.3%)
+ Xilinx 12 (0.9%)
+ Linaro 11 (0.8%)
+ Marvell 11 (0.8%)
+ Phytec 8 (0.6%)
+ AMD 7 (0.5%)
+ Collabora Ltd. 5 (0.4%)
+ National Instruments 4 (0.3%)
+ NXP 3 (0.2%)
+ MIPS 3 (0.2%)
+ O.S. Systems 3 (0.2%)
+ Nobuhiro Iwamatsu 3 (0.2%)
+ Broadcom 2 (0.2%)
+ Keymile 2 (0.2%)
+ Debian.org 1 (0.1%)
+ linutronix 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 26993 (33.4%)
+ Google, Inc. 15119 (18.7%)
+ DENX Software Engineering 9100 (11.2%)
+ Konsulko Group 4891 (6.0%)
+ Rockchip 4848 (6.0%)
+ Socionext Inc. 4111 (5.1%)
+ ST Microelectronics 3404 (4.2%)
+ Linaro 2024 (2.5%)
+ Intel 1922 (2.4%)
+ Texas Instruments 1750 (2.2%)
+ Free Electrons 1539 (1.9%)
+ Phytec 1200 (1.5%)
+ Toradex 1039 (1.3%)
+ Xilinx 764 (0.9%)
+ MIPS 674 (0.8%)
+ Amarula Solutions 566 (0.7%)
+ Collabora Ltd. 323 (0.4%)
+ Marvell 311 (0.4%)
+ NXP 111 (0.1%)
+ Broadcom 94 (0.1%)
+ National Instruments 44 (0.1%)
+ AMD 38 (0.0%)
+ Keymile 27 (0.0%)
+ Nobuhiro Iwamatsu 14 (0.0%)
+ O.S. Systems 9 (0.0%)
+ linutronix 2 (0.0%)
+ Debian.org 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 224)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Novell 52 (23.2%)
+ (Unknown) 43 (19.2%)
+ Nobuhiro Iwamatsu 29 (12.9%)
+ DENX Software Engineering 28 (12.5%)
+ Konsulko Group 17 (7.6%)
+ Xilinx 16 (7.1%)
+ Texas Instruments 7 (3.1%)
+ Intel 6 (2.7%)
+ NVidia 4 (1.8%)
+ Samsung 4 (1.8%)
+ Rockchip 3 (1.3%)
+ O.S. Systems 3 (1.3%)
+ Google, Inc. 2 (0.9%)
+ Socionext Inc. 2 (0.9%)
+ ST Microelectronics 2 (0.9%)
+ Amarula Solutions 2 (0.9%)
+ Openedev 2 (0.9%)
+ Free Electrons 1 (0.4%)
+ Collabora Ltd. 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 131)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 70 (53.4%)
+ Texas Instruments 10 (7.6%)
+ DENX Software Engineering 6 (4.6%)
+ Rockchip 5 (3.8%)
+ ST Microelectronics 4 (3.1%)
+ Linaro 4 (3.1%)
+ Intel 3 (2.3%)
+ Collabora Ltd. 3 (2.3%)
+ National Instruments 3 (2.3%)
+ Socionext Inc. 2 (1.5%)
+ Free Electrons 2 (1.5%)
+ Toradex 2 (1.5%)
+ Marvell 2 (1.5%)
+ Broadcom 2 (1.5%)
+ Nobuhiro Iwamatsu 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Xilinx 1 (0.8%)
+ O.S. Systems 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ Phytec 1 (0.8%)
+ MIPS 1 (0.8%)
+ NXP 1 (0.8%)
+ AMD 1 (0.8%)
+ Keymile 1 (0.8%)
+ linutronix 1 (0.8%)
+ Debian.org 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2017.11.rst b/doc/develop/statistics/u-boot-stats-v2017.11.rst
new file mode 100644
index 0000000..700e09d
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2017.11.rst
@@ -0,0 +1,637 @@
+:orphan:
+
+Release Statistics for U-Boot v2017.11
+======================================
+
+* Processed 989 csets from 123 developers
+
+* 28 employers found
+
+* A total of 107828 lines added, 22718 removed (delta 85110)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 77 (7.8%)
+ Heinrich Schuchardt 68 (6.9%)
+ Bin Meng 64 (6.5%)
+ Philipp Tomsich 51 (5.2%)
+ Rob Clark 47 (4.8%)
+ Patrice Chotard 45 (4.6%)
+ Marek Vasut 44 (4.4%)
+ Tom Rini 39 (3.9%)
+ Simon Glass 31 (3.1%)
+ Wenyou Yang 29 (2.9%)
+ Fabio Estevam 28 (2.8%)
+ Kever Yang 27 (2.7%)
+ Maxime Ripard 25 (2.5%)
+ Tuomas Tynkkynen 25 (2.5%)
+ Adam Ford 20 (2.0%)
+ York Sun 17 (1.7%)
+ Ran Wang 16 (1.6%)
+ Lokesh Vutla 15 (1.5%)
+ Jean-Jacques Hiblot 14 (1.4%)
+ David Wu 14 (1.4%)
+ Marek Behún 13 (1.3%)
+ Paul Burton 13 (1.3%)
+ Jagan Teki 12 (1.2%)
+ Pantelis Antoniou 12 (1.2%)
+ Klaus Goger 9 (0.9%)
+ Ashish Kumar 9 (0.9%)
+ Diego Dorta 9 (0.9%)
+ rick 9 (0.9%)
+ Lukasz Majewski 8 (0.8%)
+ Patrick Delaunay 8 (0.8%)
+ Sam Protsenko 8 (0.8%)
+ Icenowy Zheng 7 (0.7%)
+ Chris Packham 7 (0.7%)
+ Stephen Warren 6 (0.6%)
+ Andrew F. Davis 6 (0.6%)
+ Stefan Agner 5 (0.5%)
+ Vasily Khoruzhick 5 (0.5%)
+ Stefan Roese 5 (0.5%)
+ Alexander Graf 4 (0.4%)
+ Sumit Garg 4 (0.4%)
+ Anatolij Gustschin 4 (0.4%)
+ Uri Mashiach 4 (0.4%)
+ Alison Chaiken 4 (0.4%)
+ Andy Yan 4 (0.4%)
+ Chen-Yu Tsai 3 (0.3%)
+ Andre Przywara 3 (0.3%)
+ Christophe Kerello 3 (0.3%)
+ Praneeth Bajjuri 3 (0.3%)
+ Vishal Mahaveer 3 (0.3%)
+ zijun_hu 3 (0.3%)
+ Elaine Zhang 3 (0.3%)
+ Suresh Gupta 3 (0.3%)
+ Yangbo Lu 3 (0.3%)
+ Priyanka Jain 3 (0.3%)
+ Hou Zhiqiang 3 (0.3%)
+ Angelo Dureghello 2 (0.2%)
+ Artturi Alm 2 (0.2%)
+ Otavio Salvador 2 (0.2%)
+ Dongjin Kim 2 (0.2%)
+ Peng Fan 2 (0.2%)
+ Jonathan Gray 2 (0.2%)
+ Prabhakar Kushwaha 2 (0.2%)
+ Andy Shevchenko 2 (0.2%)
+ Felix Brack 2 (0.2%)
+ Suman Anna 2 (0.2%)
+ Seung-Woo Kim 2 (0.2%)
+ Baruch Siach 2 (0.2%)
+ Sriram Dash 2 (0.2%)
+ Santan Kumar 2 (0.2%)
+ Peter Jones 2 (0.2%)
+ William Wu 2 (0.2%)
+ Udit Agarwal 2 (0.2%)
+ Soeren Moch 1 (0.1%)
+ Werner Böllmann 1 (0.1%)
+ Goldschmidt Simon 1 (0.1%)
+ Benoît Thébaudeau 1 (0.1%)
+ Chris Brandt 1 (0.1%)
+ Jan Kundrát 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ Michal Simek 1 (0.1%)
+ Niko Mauno 1 (0.1%)
+ Yuantian Tang 1 (0.1%)
+ Benjamin Young 1 (0.1%)
+ Quentin Schulz 1 (0.1%)
+ Michal Oleszczyk 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Engling, Uwe 1 (0.1%)
+ Jon Smith 1 (0.1%)
+ Mirza 1 (0.1%)
+ Vasily Gurevich 1 (0.1%)
+ Sven-Ola Tuecke 1 (0.1%)
+ Ilya Ledvich 1 (0.1%)
+ Bogdan Purcareata 1 (0.1%)
+ Gong Qianyu 1 (0.1%)
+ Faiz Abbas 1 (0.1%)
+ Bo Shen 1 (0.1%)
+ Lee Jones 1 (0.1%)
+ Nicolas Le Bayon 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Karthik Tummala 1 (0.1%)
+ Madan Srinivas 1 (0.1%)
+ Ulf Magnusson 1 (0.1%)
+ Joshua Scott 1 (0.1%)
+ Vsevolod Gribov 1 (0.1%)
+ Yogesh Gaur 1 (0.1%)
+ Frank Kunz 1 (0.1%)
+ Bharat Bhushan 1 (0.1%)
+ Jörg Krause 1 (0.1%)
+ Ian Ray 1 (0.1%)
+ Dennis Gilmore 1 (0.1%)
+ Vanessa Maegima 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Harinarayan Bhatta 1 (0.1%)
+ Franklin S Cooper Jr 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Keng Soon Cheah 1 (0.1%)
+ Moritz Fischer 1 (0.1%)
+ Tomas Melin 1 (0.1%)
+ Philippe CORNU 1 (0.1%)
+ Holger Dengler 1 (0.1%)
+ Steve Kipisz 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 17143 (14.8%)
+ Bin Meng 16572 (14.3%)
+ Marek Vasut 15780 (13.6%)
+ Heinrich Schuchardt 6522 (5.6%)
+ Patrice Chotard 6155 (5.3%)
+ Adam Ford 5520 (4.8%)
+ Rob Clark 4926 (4.2%)
+ Wenyou Yang 4547 (3.9%)
+ Masahiro Yamada 4398 (3.8%)
+ Marek Behún 3793 (3.3%)
+ Lokesh Vutla 3722 (3.2%)
+ Tuomas Tynkkynen 3380 (2.9%)
+ Ashish Kumar 3372 (2.9%)
+ Maxime Ripard 2188 (1.9%)
+ Kever Yang 1617 (1.4%)
+ Lukasz Majewski 1471 (1.3%)
+ Ilya Ledvich 1067 (0.9%)
+ Simon Glass 1003 (0.9%)
+ Vasily Khoruzhick 867 (0.7%)
+ Pantelis Antoniou 825 (0.7%)
+ Alexander Graf 814 (0.7%)
+ Jagan Teki 796 (0.7%)
+ Jean-Jacques Hiblot 770 (0.7%)
+ rick 622 (0.5%)
+ Philipp Tomsich 504 (0.4%)
+ York Sun 502 (0.4%)
+ Uri Mashiach 483 (0.4%)
+ Andy Shevchenko 481 (0.4%)
+ Fabio Estevam 464 (0.4%)
+ Philippe CORNU 463 (0.4%)
+ David Wu 454 (0.4%)
+ Ran Wang 394 (0.3%)
+ Paul Burton 391 (0.3%)
+ Ian Ray 378 (0.3%)
+ Stephen Warren 214 (0.2%)
+ Peng Fan 198 (0.2%)
+ Ulf Magnusson 194 (0.2%)
+ Patrick Delaunay 190 (0.2%)
+ Sumit Garg 184 (0.2%)
+ Icenowy Zheng 174 (0.2%)
+ Alison Chaiken 163 (0.1%)
+ Klaus Goger 140 (0.1%)
+ Elaine Zhang 125 (0.1%)
+ Angelo Dureghello 103 (0.1%)
+ Peter Jones 101 (0.1%)
+ Andrew F. Davis 98 (0.1%)
+ Stefan Mavrodiev 97 (0.1%)
+ Chris Packham 92 (0.1%)
+ Franklin S Cooper Jr 87 (0.1%)
+ Keerthy 76 (0.1%)
+ Anatolij Gustschin 74 (0.1%)
+ William Wu 70 (0.1%)
+ Christophe Kerello 67 (0.1%)
+ Suman Anna 67 (0.1%)
+ Udit Agarwal 67 (0.1%)
+ Hou Zhiqiang 66 (0.1%)
+ Stefan Roese 65 (0.1%)
+ Keng Soon Cheah 56 (0.0%)
+ Sam Protsenko 55 (0.0%)
+ Prabhakar Kushwaha 55 (0.0%)
+ Suresh Gupta 45 (0.0%)
+ Joshua Scott 45 (0.0%)
+ Praneeth Bajjuri 43 (0.0%)
+ Soeren Moch 42 (0.0%)
+ Moritz Fischer 39 (0.0%)
+ Stefan Agner 37 (0.0%)
+ Dennis Gilmore 37 (0.0%)
+ Andre Przywara 35 (0.0%)
+ Steve Kipisz 34 (0.0%)
+ Diego Dorta 27 (0.0%)
+ Baruch Siach 24 (0.0%)
+ Priyanka Jain 22 (0.0%)
+ Bogdan Purcareata 22 (0.0%)
+ Vanessa Maegima 17 (0.0%)
+ Felix Brack 16 (0.0%)
+ Andy Yan 15 (0.0%)
+ Vishal Mahaveer 14 (0.0%)
+ Benoît Thébaudeau 14 (0.0%)
+ Bharat Bhushan 14 (0.0%)
+ Jonathan Gray 13 (0.0%)
+ Sriram Dash 13 (0.0%)
+ Otavio Salvador 11 (0.0%)
+ Benjamin Young 10 (0.0%)
+ Eric Nelson 9 (0.0%)
+ Santan Kumar 8 (0.0%)
+ Jon Smith 8 (0.0%)
+ Chen-Yu Tsai 7 (0.0%)
+ Michal Simek 6 (0.0%)
+ Madan Srinivas 6 (0.0%)
+ Harinarayan Bhatta 6 (0.0%)
+ zijun_hu 5 (0.0%)
+ Seung-Woo Kim 5 (0.0%)
+ Holger Dengler 5 (0.0%)
+ Dongjin Kim 4 (0.0%)
+ Jan Kundrát 4 (0.0%)
+ Niko Mauno 4 (0.0%)
+ Vagrant Cascadian 4 (0.0%)
+ Sven-Ola Tuecke 4 (0.0%)
+ Karthik Tummala 4 (0.0%)
+ Yangbo Lu 3 (0.0%)
+ Artturi Alm 3 (0.0%)
+ Frank Kunz 3 (0.0%)
+ Tomas Melin 3 (0.0%)
+ Werner Böllmann 2 (0.0%)
+ Michal Oleszczyk 2 (0.0%)
+ Engling, Uwe 2 (0.0%)
+ Mirza 2 (0.0%)
+ Gong Qianyu 2 (0.0%)
+ Jörg Krause 2 (0.0%)
+ Zhao Qiang 2 (0.0%)
+ Goldschmidt Simon 1 (0.0%)
+ Chris Brandt 1 (0.0%)
+ Shawn Guo 1 (0.0%)
+ Yuantian Tang 1 (0.0%)
+ Quentin Schulz 1 (0.0%)
+ Vasily Gurevich 1 (0.0%)
+ Faiz Abbas 1 (0.0%)
+ Bo Shen 1 (0.0%)
+ Lee Jones 1 (0.0%)
+ Nicolas Le Bayon 1 (0.0%)
+ Vsevolod Gribov 1 (0.0%)
+ Yogesh Gaur 1 (0.0%)
+ Tien Fong Chee 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tuomas Tynkkynen 1809 (8.0%)
+ Masahiro Yamada 630 (2.8%)
+ Paul Burton 109 (0.5%)
+ Stefan Roese 56 (0.2%)
+ Anatolij Gustschin 34 (0.1%)
+ Suman Anna 13 (0.1%)
+ Andy Yan 8 (0.0%)
+ Santan Kumar 5 (0.0%)
+ Harinarayan Bhatta 4 (0.0%)
+ Karthik Tummala 4 (0.0%)
+ Yangbo Lu 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 223)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 81 (36.3%)
+ Nobuhiro Iwamatsu 28 (12.6%)
+ Stefan Roese 9 (4.0%)
+ Sriram Dash 7 (3.1%)
+ Suresh Gupta 7 (3.1%)
+ Prabhakar Kushwaha 7 (3.1%)
+ Philipp Tomsich 7 (3.1%)
+ Tom Rini 7 (3.1%)
+ Rajesh Bhagat 6 (2.7%)
+ Maxime Ripard 6 (2.7%)
+ Anatolij Gustschin 5 (2.2%)
+ Amrita Kumari 4 (1.8%)
+ Ashish Kumar 4 (1.8%)
+ Shaohui Xie 3 (1.3%)
+ Jagan Teki 3 (1.3%)
+ Kever Yang 3 (1.3%)
+ Lokesh Vutla 3 (1.3%)
+ Patrice Chotard 3 (1.3%)
+ Boris Brezillon 2 (0.9%)
+ Alison Wang 2 (0.9%)
+ Raghav Dogra 2 (0.9%)
+ Priyanka Jain 2 (0.9%)
+ Praneeth Bajjuri 2 (0.9%)
+ Andrew F. Davis 2 (0.9%)
+ Rob Clark 2 (0.9%)
+ Masahiro Yamada 1 (0.4%)
+ Suman Anna 1 (0.4%)
+ Joe Hershberger 1 (0.4%)
+ Minkyu Kang 1 (0.4%)
+ Joe Perches 1 (0.4%)
+ Ben Young 1 (0.4%)
+ Adrian Bunk 1 (0.4%)
+ Anupam Kumar 1 (0.4%)
+ Ioana Ciornei 1 (0.4%)
+ Jose Alarcon 1 (0.4%)
+ David Gibson 1 (0.4%)
+ Vignesh R 1 (0.4%)
+ Yogesh Gaur 1 (0.4%)
+ Christophe Kerello 1 (0.4%)
+ Chris Packham 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 554)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 217 (39.2%)
+ Philipp Tomsich 64 (11.6%)
+ York Sun 58 (10.5%)
+ Tom Rini 48 (8.7%)
+ Bin Meng 32 (5.8%)
+ Jagan Teki 27 (4.9%)
+ Lukasz Majewski 26 (4.7%)
+ Stefan Roese 10 (1.8%)
+ Stefano Babic 10 (1.8%)
+ Vikas Manocha 9 (1.6%)
+ Rob Clark 6 (1.1%)
+ Fabio Estevam 6 (1.1%)
+ Jaehoon Chung 4 (0.7%)
+ Heiko Schocher 4 (0.7%)
+ Heinrich Schuchardt 4 (0.7%)
+ Lokesh Vutla 3 (0.5%)
+ Joe Hershberger 3 (0.5%)
+ Eric Nelson 3 (0.5%)
+ Andre Przywara 3 (0.5%)
+ Alexander Graf 2 (0.4%)
+ Daniel Schwierzeck 2 (0.4%)
+ Stephen Warren 2 (0.4%)
+ Kever Yang 1 (0.2%)
+ Chris Packham 1 (0.2%)
+ Benoît Thébaudeau 1 (0.2%)
+ Christian Gmeiner 1 (0.2%)
+ Stefan Agner 1 (0.2%)
+ Peng Fan 1 (0.2%)
+ Patrick Delaunay 1 (0.2%)
+ David Wu 1 (0.2%)
+ Andy Shevchenko 1 (0.2%)
+ Marek Behún 1 (0.2%)
+ Marek Vasut 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kever Yang 15 (24.6%)
+ Stephen Warren 6 (9.8%)
+ Derald D. Woods 4 (6.6%)
+ Bin Meng 3 (4.9%)
+ Klaus Goger 3 (4.9%)
+ Philipp Tomsich 2 (3.3%)
+ Fabio Estevam 2 (3.3%)
+ Heinrich Schuchardt 2 (3.3%)
+ Peter Robinson 2 (3.3%)
+ Angelo Dureghello 2 (3.3%)
+ Chen-Yu Tsai 2 (3.3%)
+ Adam Ford 2 (3.3%)
+ Simon Glass 1 (1.6%)
+ York Sun 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Jagan Teki 1 (1.6%)
+ Lukasz Majewski 1 (1.6%)
+ Stefan Roese 1 (1.6%)
+ Rob Clark 1 (1.6%)
+ Andre Przywara 1 (1.6%)
+ Zhao Qiang 1 (1.6%)
+ Uwe Scheffler 1 (1.6%)
+ Mian Yousaf Kaukab 1 (1.6%)
+ Sébastien Szymanski 1 (1.6%)
+ David Müller 1 (1.6%)
+ Aparna Balasubramanian 1 (1.6%)
+ Vinitha Pillai 1 (1.6%)
+ Otavio Salvador 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 20 (32.8%)
+ Patrick Delaunay 6 (9.8%)
+ Fabio Estevam 5 (8.2%)
+ Adam Ford 4 (6.6%)
+ Philipp Tomsich 3 (4.9%)
+ Maxime Ripard 3 (4.9%)
+ Bin Meng 2 (3.3%)
+ York Sun 2 (3.3%)
+ Tom Rini 2 (3.3%)
+ Rob Clark 2 (3.3%)
+ Stefan Agner 2 (3.3%)
+ Paul Burton 2 (3.3%)
+ Stephen Warren 1 (1.6%)
+ Heinrich Schuchardt 1 (1.6%)
+ Lokesh Vutla 1 (1.6%)
+ Sven-Ola Tuecke 1 (1.6%)
+ Jonathan Gray 1 (1.6%)
+ Michal Simek 1 (1.6%)
+ Soeren Moch 1 (1.6%)
+ Sumit Garg 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 30)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefano Babic 6 (20.0%)
+ Simon Glass 3 (10.0%)
+ Adam Ford 3 (10.0%)
+ Heinrich Schuchardt 2 (6.7%)
+ Jonathan Gray 2 (6.7%)
+ Philipp Tomsich 1 (3.3%)
+ Stephen Warren 1 (3.3%)
+ Kever Yang 1 (3.3%)
+ Klaus Goger 1 (3.3%)
+ Stefan Roese 1 (3.3%)
+ Uwe Scheffler 1 (3.3%)
+ Eric Nelson 1 (3.3%)
+ Chris Packham 1 (3.3%)
+ Walt Feasel 1 (3.3%)
+ Gou, Hongmei 1 (3.3%)
+ Yan Liu 1 (3.3%)
+ Peter Kosa 1 (3.3%)
+ Ebony Zhu 1 (3.3%)
+ Joshua Scott 1 (3.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 30)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 8 (26.7%)
+ Simon Glass 6 (20.0%)
+ Heinrich Schuchardt 4 (13.3%)
+ York Sun 2 (6.7%)
+ Lokesh Vutla 2 (6.7%)
+ Philipp Tomsich 1 (3.3%)
+ Chris Packham 1 (3.3%)
+ Bin Meng 1 (3.3%)
+ Tom Rini 1 (3.3%)
+ Rob Clark 1 (3.3%)
+ Soeren Moch 1 (3.3%)
+ Andre Przywara 1 (3.3%)
+ Alexander Graf 1 (3.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 510 (51.6%)
+ Socionext Inc. 77 (7.8%)
+ DENX Software Engineering 61 (6.2%)
+ ST Microelectronics 58 (5.9%)
+ Konsulko Group 51 (5.2%)
+ Rockchip 50 (5.1%)
+ Texas Instruments 49 (5.0%)
+ Google, Inc. 31 (3.1%)
+ Free Electrons 26 (2.6%)
+ MIPS 13 (1.3%)
+ Linaro 10 (1.0%)
+ Amarula Solutions 9 (0.9%)
+ Atmel 9 (0.9%)
+ NVidia 6 (0.6%)
+ CompuLab 5 (0.5%)
+ Toradex 5 (0.5%)
+ ARM 3 (0.3%)
+ Intel 3 (0.3%)
+ Red Hat 2 (0.2%)
+ O.S. Systems 2 (0.2%)
+ Samsung 2 (0.2%)
+ AMD 1 (0.1%)
+ Debian.org 1 (0.1%)
+ General Electric 1 (0.1%)
+ linutronix 1 (0.1%)
+ National Instruments 1 (0.1%)
+ Pepperl+Fuchs 1 (0.1%)
+ Renesas Electronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 51049 (44.0%)
+ Konsulko Group 17968 (15.5%)
+ DENX Software Engineering 17390 (15.0%)
+ ST Microelectronics 6876 (5.9%)
+ Texas Instruments 4924 (4.2%)
+ Socionext Inc. 4398 (3.8%)
+ Atmel 3786 (3.3%)
+ Rockchip 2281 (2.0%)
+ Free Electrons 2189 (1.9%)
+ CompuLab 1550 (1.3%)
+ Google, Inc. 1003 (0.9%)
+ Amarula Solutions 781 (0.7%)
+ Intel 482 (0.4%)
+ MIPS 391 (0.3%)
+ General Electric 378 (0.3%)
+ NVidia 214 (0.2%)
+ Red Hat 101 (0.1%)
+ Linaro 57 (0.0%)
+ National Instruments 56 (0.0%)
+ Toradex 37 (0.0%)
+ ARM 35 (0.0%)
+ O.S. Systems 11 (0.0%)
+ AMD 6 (0.0%)
+ Samsung 5 (0.0%)
+ linutronix 5 (0.0%)
+ Debian.org 4 (0.0%)
+ Pepperl+Fuchs 1 (0.0%)
+ Renesas Electronics 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 223)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Novell 81 (36.3%)
+ (Unknown) 61 (27.4%)
+ Nobuhiro Iwamatsu 28 (12.6%)
+ DENX Software Engineering 14 (6.3%)
+ Texas Instruments 9 (4.0%)
+ Free Electrons 8 (3.6%)
+ Konsulko Group 7 (3.1%)
+ ST Microelectronics 4 (1.8%)
+ Rockchip 3 (1.3%)
+ Openedev 2 (0.9%)
+ Socionext Inc. 1 (0.4%)
+ Amarula Solutions 1 (0.4%)
+ General Electric 1 (0.4%)
+ National Instruments 1 (0.4%)
+ Samsung 1 (0.4%)
+ Debian.org 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 125)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 70 (56.0%)
+ Texas Instruments 12 (9.6%)
+ ST Microelectronics 5 (4.0%)
+ Rockchip 5 (4.0%)
+ DENX Software Engineering 4 (3.2%)
+ Linaro 3 (2.4%)
+ Free Electrons 2 (1.6%)
+ Konsulko Group 2 (1.6%)
+ CompuLab 2 (1.6%)
+ Intel 2 (1.6%)
+ Socionext Inc. 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ General Electric 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Samsung 1 (0.8%)
+ Debian.org 1 (0.8%)
+ Atmel 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ MIPS 1 (0.8%)
+ NVidia 1 (0.8%)
+ Red Hat 1 (0.8%)
+ Toradex 1 (0.8%)
+ ARM 1 (0.8%)
+ O.S. Systems 1 (0.8%)
+ AMD 1 (0.8%)
+ linutronix 1 (0.8%)
+ Pepperl+Fuchs 1 (0.8%)
+ Renesas Electronics 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.01.rst b/doc/develop/statistics/u-boot-stats-v2018.01.rst
new file mode 100644
index 0000000..b2b3d0f
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.01.rst
@@ -0,0 +1,660 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.01
+======================================
+
+* Processed 785 csets from 132 developers
+
+* 32 employers found
+
+* A total of 46990 lines added, 31695 removed (delta 15295)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Heinrich Schuchardt 90 (11.5%)
+ Michal Simek 71 (9.0%)
+ Simon Glass 56 (7.1%)
+ Marek Vasut 54 (6.9%)
+ Philipp Tomsich 51 (6.5%)
+ Masahiro Yamada 39 (5.0%)
+ Kever Yang 23 (2.9%)
+ Patrice Chotard 18 (2.3%)
+ Jagan Teki 15 (1.9%)
+ Rick Chen 15 (1.9%)
+ Neil Armstrong 14 (1.8%)
+ Tom Rini 13 (1.7%)
+ Fabio Estevam 11 (1.4%)
+ Siva Durga Prasad Paladugu 11 (1.4%)
+ Tuomas Tynkkynen 11 (1.4%)
+ Ashish Kumar 9 (1.1%)
+ Paul Burton 9 (1.1%)
+ Boris Brezillon 9 (1.1%)
+ Peng Fan 7 (0.9%)
+ Christopher Spinrath 7 (0.9%)
+ Eugeniy Paltsev 7 (0.9%)
+ Adam Ford 6 (0.8%)
+ York Sun 6 (0.8%)
+ Prabhakar Kushwaha 6 (0.8%)
+ Sean Nyekjaer 6 (0.8%)
+ Alexander Graf 6 (0.8%)
+ Beniamino Galvani 6 (0.8%)
+ Anurag Kumar Vulisha 6 (0.8%)
+ Fabio Berton 6 (0.8%)
+ Breno Lima 5 (0.6%)
+ Derald D. Woods 5 (0.6%)
+ Maxime Ripard 5 (0.6%)
+ Sascha Hauer 5 (0.6%)
+ André Draszik 5 (0.6%)
+ Stefan Agner 4 (0.5%)
+ Felix Brack 4 (0.5%)
+ Martyn Welch 4 (0.5%)
+ Yangbo Lu 4 (0.5%)
+ Stefan Roese 4 (0.5%)
+ Baruch Siach 4 (0.5%)
+ Alexey Brodkin 4 (0.5%)
+ Andy Yan 4 (0.5%)
+ Ludovic Desroches 4 (0.5%)
+ Jon Nettleton 4 (0.5%)
+ Shengzhou Liu 4 (0.5%)
+ Andy Shevchenko 3 (0.4%)
+ Jakob Unterwurzacher 3 (0.4%)
+ Stephen Warren 3 (0.4%)
+ Yogesh Gaur 3 (0.4%)
+ Jorge Ramirez-Ortiz 3 (0.4%)
+ Udit Agarwal 3 (0.4%)
+ Ran Wang 3 (0.4%)
+ Manish Narani 3 (0.4%)
+ Nava kishore Manne 3 (0.4%)
+ Tien Fong Chee 3 (0.4%)
+ Faiz Abbas 3 (0.4%)
+ Anatolij Gustschin 2 (0.3%)
+ Sam Protsenko 2 (0.3%)
+ Goldschmidt Simon 2 (0.3%)
+ Wenbin song 2 (0.3%)
+ Rajesh Bhagat 2 (0.3%)
+ Patrick Delaunay 2 (0.3%)
+ Chris Brandt 2 (0.3%)
+ Alan Ott 2 (0.3%)
+ Icenowy Zheng 2 (0.3%)
+ Ben Whitten 2 (0.3%)
+ Wenyou Yang 2 (0.3%)
+ S. Lockwood-Childs 2 (0.3%)
+ Wilson Lee 2 (0.3%)
+ Shubhrajyoti Datta 2 (0.3%)
+ Chirag Parekh 2 (0.3%)
+ Rob Herring 2 (0.3%)
+ Antony Antony 2 (0.3%)
+ Ian Ray 2 (0.3%)
+ Nandor Han 2 (0.3%)
+ Clemens Gruber 1 (0.1%)
+ Bin Meng 1 (0.1%)
+ Eran Matityahu 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Patrick Bruenn 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Emmanuel Vadot 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Jerome Brunet 1 (0.1%)
+ Hans Verkuil 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Joe Hershberger 1 (0.1%)
+ Javier Martinez Canillas 1 (0.1%)
+ Bhaskar Upadhaya 1 (0.1%)
+ Dai Okamura 1 (0.1%)
+ Chen-Yu Tsai 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Vinitha Pillai-B57223 1 (0.1%)
+ Marek Szyprowski 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Dmitry Korunov 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Vasily Khoruzhick 1 (0.1%)
+ Rob Clark 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Anton Gerasimov 1 (0.1%)
+ Jean-Francois Dagenais 1 (0.1%)
+ Marc Gonzalez 1 (0.1%)
+ Bharat Kumar Gogada 1 (0.1%)
+ Jyotheeswar Reddy Mutthareddyvari 1 (0.1%)
+ Naga Sureshkumar Relli 1 (0.1%)
+ Hyun Kwon 1 (0.1%)
+ Madhurkiran Harikrishnan 1 (0.1%)
+ Soren Brinkmann 1 (0.1%)
+ Jolly Shah 1 (0.1%)
+ Jyotheeswar Reddy 1 (0.1%)
+ Sai Pavan Boddu 1 (0.1%)
+ Jeff Westfahl 1 (0.1%)
+ Tom McLeod 1 (0.1%)
+ Vincent Prince 1 (0.1%)
+ Dirk Behme 1 (0.1%)
+ Suneel Garapati 1 (0.1%)
+ M. Vefa Bicakci 1 (0.1%)
+ Praneeth Bajjuri 1 (0.1%)
+ Peter Senna Tschudin 1 (0.1%)
+ Dongjin Kim 1 (0.1%)
+ Landheer-Cieslak, Ronald 1 (0.1%)
+ Minghuan Lian 1 (0.1%)
+ Gan, Yau Wai 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Bernhard Messerklinger 1 (0.1%)
+ VlaoMao 1 (0.1%)
+ Kurt Kanzenbach 1 (0.1%)
+ ================================= =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Marek Vasut 20756 (29.9%)
+ Masahiro Yamada 5822 (8.4%)
+ Michal Simek 4873 (7.0%)
+ Heinrich Schuchardt 4043 (5.8%)
+ Kever Yang 3956 (5.7%)
+ Neil Armstrong 3425 (4.9%)
+ Simon Glass 3411 (4.9%)
+ Tuomas Tynkkynen 2970 (4.3%)
+ Yogesh Gaur 1333 (1.9%)
+ Peter Senna Tschudin 1105 (1.6%)
+ Philipp Tomsich 1067 (1.5%)
+ Derald D. Woods 980 (1.4%)
+ Eric Nelson 894 (1.3%)
+ Ben Whitten 826 (1.2%)
+ Jagan Teki 817 (1.2%)
+ Patrice Chotard 816 (1.2%)
+ Eugeniy Paltsev 807 (1.2%)
+ Felix Brack 761 (1.1%)
+ Boris Brezillon 741 (1.1%)
+ Tom McLeod 730 (1.1%)
+ Ludovic Desroches 643 (0.9%)
+ Tom Rini 621 (0.9%)
+ Jaehoon Chung 558 (0.8%)
+ Rick Chen 489 (0.7%)
+ Christopher Spinrath 467 (0.7%)
+ Adam Ford 437 (0.6%)
+ Sascha Hauer 421 (0.6%)
+ Nandor Han 390 (0.6%)
+ Martyn Welch 365 (0.5%)
+ Ashish Kumar 357 (0.5%)
+ Beniamino Galvani 314 (0.5%)
+ S. Lockwood-Childs 262 (0.4%)
+ Faiz Abbas 259 (0.4%)
+ Fabio Estevam 181 (0.3%)
+ Udit Agarwal 177 (0.3%)
+ Prabhakar Kushwaha 172 (0.2%)
+ Andy Yan 172 (0.2%)
+ Antony Antony 162 (0.2%)
+ Ian Ray 149 (0.2%)
+ Siva Durga Prasad Paladugu 141 (0.2%)
+ Maxime Ripard 134 (0.2%)
+ Stephen Warren 122 (0.2%)
+ Stefan Roese 121 (0.2%)
+ Yangbo Lu 106 (0.2%)
+ Rajesh Bhagat 102 (0.1%)
+ Clemens Gruber 91 (0.1%)
+ Jerome Brunet 87 (0.1%)
+ Peng Fan 82 (0.1%)
+ Jorge Ramirez-Ortiz 78 (0.1%)
+ Alexander Graf 76 (0.1%)
+ Dmitry Korunov 76 (0.1%)
+ André Draszik 74 (0.1%)
+ Chris Brandt 74 (0.1%)
+ Andre Przywara 73 (0.1%)
+ Paul Burton 67 (0.1%)
+ Shengzhou Liu 65 (0.1%)
+ Andy Shevchenko 64 (0.1%)
+ Goldschmidt Simon 64 (0.1%)
+ Vinitha Pillai-B57223 61 (0.1%)
+ Jon Nettleton 52 (0.1%)
+ York Sun 50 (0.1%)
+ Sean Nyekjaer 48 (0.1%)
+ Wenbin song 46 (0.1%)
+ Marc Gonzalez 43 (0.1%)
+ Breno Lima 38 (0.1%)
+ Shubhrajyoti Datta 33 (0.0%)
+ Tien Fong Chee 31 (0.0%)
+ Anurag Kumar Vulisha 29 (0.0%)
+ Ran Wang 26 (0.0%)
+ Naga Sureshkumar Relli 26 (0.0%)
+ Marek Szyprowski 25 (0.0%)
+ Alan Ott 24 (0.0%)
+ Klaus Goger 24 (0.0%)
+ Stefan Agner 21 (0.0%)
+ Jakob Unterwurzacher 21 (0.0%)
+ Fabio Berton 20 (0.0%)
+ Nava kishore Manne 19 (0.0%)
+ Patrick Delaunay 19 (0.0%)
+ Wilson Lee 19 (0.0%)
+ Jonathan Gray 19 (0.0%)
+ Suneel Garapati 19 (0.0%)
+ Chirag Parekh 18 (0.0%)
+ Landheer-Cieslak, Ronald 18 (0.0%)
+ Alexey Brodkin 16 (0.0%)
+ Baruch Siach 15 (0.0%)
+ Stefan Mavrodiev 14 (0.0%)
+ Manish Narani 12 (0.0%)
+ Joe Hershberger 12 (0.0%)
+ Nobuhiro Iwamatsu 12 (0.0%)
+ Jeff Westfahl 12 (0.0%)
+ Dongjin Kim 12 (0.0%)
+ Icenowy Zheng 11 (0.0%)
+ Wenyou Yang 11 (0.0%)
+ Vasily Khoruzhick 9 (0.0%)
+ Kurt Kanzenbach 9 (0.0%)
+ Patrick Bruenn 8 (0.0%)
+ Bin Meng 7 (0.0%)
+ Keerthy 7 (0.0%)
+ Chris Packham 6 (0.0%)
+ Sai Pavan Boddu 6 (0.0%)
+ Minghuan Lian 5 (0.0%)
+ Rob Herring 4 (0.0%)
+ Eran Matityahu 4 (0.0%)
+ Vincent Prince 4 (0.0%)
+ Sam Protsenko 3 (0.0%)
+ Bhaskar Upadhaya 3 (0.0%)
+ Peter Robinson 3 (0.0%)
+ Jyotheeswar Reddy Mutthareddyvari 3 (0.0%)
+ Dirk Behme 3 (0.0%)
+ M. Vefa Bicakci 3 (0.0%)
+ Anatolij Gustschin 2 (0.0%)
+ Lukasz Majewski 2 (0.0%)
+ Emmanuel Vadot 2 (0.0%)
+ Heiko Schocher 2 (0.0%)
+ Hans Verkuil 2 (0.0%)
+ Javier Martinez Canillas 2 (0.0%)
+ Rob Clark 2 (0.0%)
+ Bharat Kumar Gogada 2 (0.0%)
+ Soren Brinkmann 2 (0.0%)
+ Praneeth Bajjuri 2 (0.0%)
+ VlaoMao 2 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Dai Okamura 1 (0.0%)
+ Chen-Yu Tsai 1 (0.0%)
+ Anton Gerasimov 1 (0.0%)
+ Jean-Francois Dagenais 1 (0.0%)
+ Hyun Kwon 1 (0.0%)
+ Madhurkiran Harikrishnan 1 (0.0%)
+ Jolly Shah 1 (0.0%)
+ Jyotheeswar Reddy 1 (0.0%)
+ Gan, Yau Wai 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ ================================= =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Marek Vasut 4742 (15.0%)
+ Tuomas Tynkkynen 2684 (8.5%)
+ Jagan Teki 594 (1.9%)
+ Tom Rini 293 (0.9%)
+ Yogesh Gaur 241 (0.8%)
+ Michal Simek 152 (0.5%)
+ Naga Sureshkumar Relli 25 (0.1%)
+ Alexander Graf 21 (0.1%)
+ Alan Ott 20 (0.1%)
+ Andre Przywara 17 (0.1%)
+ Baruch Siach 6 (0.0%)
+ Vasily Khoruzhick 4 (0.0%)
+ Kurt Kanzenbach 3 (0.0%)
+ ================================= =====
+
+
+.. table:: Developers with the most signoffs (total 235)
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Alexander Graf 74 (31.5%)
+ Michal Simek 43 (18.3%)
+ Masahiro Yamada 17 (7.2%)
+ Stefan Roese 14 (6.0%)
+ Boris Brezillon 10 (4.3%)
+ Alexey Brodkin 7 (3.0%)
+ Otavio Salvador 6 (2.6%)
+ Philipp Tomsich 6 (2.6%)
+ Martyn Welch 5 (2.1%)
+ Baruch Siach 4 (1.7%)
+ Wenyou Yang 4 (1.7%)
+ Tom Rini 2 (0.9%)
+ Bhaskar Upadhaya 2 (0.9%)
+ Minkyu Kang 2 (0.9%)
+ Dan Kephart 2 (0.9%)
+ Christophe Priouzeau 2 (0.9%)
+ Raghav Dogra 2 (0.9%)
+ Vinitha Pillai-B57223 2 (0.9%)
+ Prabhakar Kushwaha 2 (0.9%)
+ Nandor Han 2 (0.9%)
+ Neil Armstrong 2 (0.9%)
+ Sumit Garg 1 (0.4%)
+ Ye Li 1 (0.4%)
+ Priyanka Jain 1 (0.4%)
+ Marcin Niestroj 1 (0.4%)
+ Keng Soon Cheah 1 (0.4%)
+ Rajnikant Bhojani 1 (0.4%)
+ Marc Zyngier 1 (0.4%)
+ Arnd Bergmann 1 (0.4%)
+ Alan Tull 1 (0.4%)
+ Paweł Jarosz 1 (0.4%)
+ Hou Zhiqiang 1 (0.4%)
+ Zhang Ying 1 (0.4%)
+ Amrita Kumari 1 (0.4%)
+ Kushwaha Prabhakar 1 (0.4%)
+ Anatolij Gustschin 1 (0.4%)
+ Jyotheeswar Reddy Mutthareddyvari 1 (0.4%)
+ Rob Herring 1 (0.4%)
+ Bin Meng 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ Chirag Parekh 1 (0.4%)
+ Wilson Lee 1 (0.4%)
+ Ian Ray 1 (0.4%)
+ Sascha Hauer 1 (0.4%)
+ Simon Glass 1 (0.4%)
+ Kever Yang 1 (0.4%)
+ ================================= =====
+
+
+.. table:: Developers with the most reviews (total 299)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 92 (30.8%)
+ York Sun 42 (14.0%)
+ Philipp Tomsich 30 (10.0%)
+ Fabio Estevam 22 (7.4%)
+ Bin Meng 21 (7.0%)
+ Vikas Manocha 12 (4.0%)
+ Jagan Teki 11 (3.7%)
+ Lukasz Majewski 9 (3.0%)
+ Stefano Babic 7 (2.3%)
+ Heiko Schocher 7 (2.3%)
+ Stefan Roese 4 (1.3%)
+ Tom Rini 4 (1.3%)
+ Andre Przywara 4 (1.3%)
+ Heinrich Schuchardt 4 (1.3%)
+ Kever Yang 3 (1.0%)
+ Lokesh Vutla 3 (1.0%)
+ Peng Fan 3 (1.0%)
+ Stephen Warren 3 (1.0%)
+ Beniamino Galvani 3 (1.0%)
+ Stefan Agner 2 (0.7%)
+ Neil Armstrong 1 (0.3%)
+ Sumit Garg 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Sascha Hauer 1 (0.3%)
+ Marek Vasut 1 (0.3%)
+ Hyun Kwon 1 (0.3%)
+ Mark Kettenis 1 (0.3%)
+ Tomas Melin 1 (0.3%)
+ Martin Elshuber 1 (0.3%)
+ Marek Behun 1 (0.3%)
+ Hannes Schmelzer 1 (0.3%)
+ Sam Protsenko 1 (0.3%)
+ Joe Hershberger 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 35)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andy Yan 6 (17.1%)
+ Bin Meng 4 (11.4%)
+ Klaus Goger 3 (8.6%)
+ Jakob Unterwurzacher 3 (8.6%)
+ Philipp Tomsich 2 (5.7%)
+ Marc Gonzalez 2 (5.7%)
+ Heiko Schocher 1 (2.9%)
+ Peng Fan 1 (2.9%)
+ Anatolij Gustschin 1 (2.9%)
+ Marek Vasut 1 (2.9%)
+ Mark Kettenis 1 (2.9%)
+ Hannes Schmelzer 1 (2.9%)
+ Michal Simek 1 (2.9%)
+ Jörg Krause 1 (2.9%)
+ Florian Fainelli 1 (2.9%)
+ Krzysztof Kozlowski 1 (2.9%)
+ Artturi Alm 1 (2.9%)
+ Koteswararao Nayudu 1 (2.9%)
+ Varga Zsolt 1 (2.9%)
+ Peter Robinson 1 (2.9%)
+ Breno Lima 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 35)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Philipp Tomsich 13 (37.1%)
+ Fabio Estevam 4 (11.4%)
+ Boris Brezillon 2 (5.7%)
+ Jakob Unterwurzacher 1 (2.9%)
+ Heiko Schocher 1 (2.9%)
+ Peng Fan 1 (2.9%)
+ Simon Glass 1 (2.9%)
+ York Sun 1 (2.9%)
+ Stefan Roese 1 (2.9%)
+ Kever Yang 1 (2.9%)
+ Stefan Agner 1 (2.9%)
+ Alexander Graf 1 (2.9%)
+ Anton Gerasimov 1 (2.9%)
+ Jolly Shah 1 (2.9%)
+ Bernhard Messerklinger 1 (2.9%)
+ Marek Szyprowski 1 (2.9%)
+ Suneel Garapati 1 (2.9%)
+ Jonathan Gray 1 (2.9%)
+ Goldschmidt Simon 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Agner 1 (7.7%)
+ Jonathan Gray 1 (7.7%)
+ Andy Yan 1 (7.7%)
+ Michal Simek 1 (7.7%)
+ Florian Fainelli 1 (7.7%)
+ Varga Zsolt 1 (7.7%)
+ Jagan Teki 1 (7.7%)
+ Yousaf Kaukab 1 (7.7%)
+ Tobi Wulff 1 (7.7%)
+ Jason Wu 1 (7.7%)
+ John Linn 1 (7.7%)
+ Vladimir Boroda 1 (7.7%)
+ Kyle Yan 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 3 (23.1%)
+ Fabio Estevam 2 (15.4%)
+ Michal Simek 1 (7.7%)
+ Jagan Teki 1 (7.7%)
+ Philipp Tomsich 1 (7.7%)
+ Stephen Warren 1 (7.7%)
+ Alexey Brodkin 1 (7.7%)
+ Rob Herring 1 (7.7%)
+ Chris Packham 1 (7.7%)
+ Siva Durga Prasad Paladugu 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 301 (38.3%)
+ AMD 70 (8.9%)
+ NXP 67 (8.5%)
+ DENX Software Engineering 62 (7.9%)
+ Google, Inc. 56 (7.1%)
+ Socionext Inc. 40 (5.1%)
+ Xilinx 37 (4.7%)
+ Rockchip 27 (3.4%)
+ ST Microelectronics 20 (2.5%)
+ BayLibre SAS 15 (1.9%)
+ Konsulko Group 13 (1.7%)
+ MIPS 9 (1.1%)
+ Intel 7 (0.9%)
+ O.S. Systems 6 (0.8%)
+ Bootlin 5 (0.6%)
+ Collabora Ltd. 5 (0.6%)
+ Linaro 5 (0.6%)
+ Pengutronix 5 (0.6%)
+ Texas Instruments 5 (0.6%)
+ Amarula Solutions 4 (0.5%)
+ General Electric 4 (0.5%)
+ National Instruments 4 (0.5%)
+ Toradex 4 (0.5%)
+ NVidia 3 (0.4%)
+ Pepperl+Fuchs 2 (0.3%)
+ Renesas Electronics 2 (0.3%)
+ Samsung 2 (0.3%)
+ ARM 1 (0.1%)
+ Cisco 1 (0.1%)
+ Debian.org 1 (0.1%)
+ linutronix 1 (0.1%)
+ Nobuhiro Iwamatsu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 20883 (30.1%)
+ (Unknown) 18107 (26.1%)
+ Socionext Inc. 5823 (8.4%)
+ AMD 4868 (7.0%)
+ Rockchip 4128 (5.9%)
+ BayLibre SAS 3512 (5.1%)
+ Google, Inc. 3411 (4.9%)
+ NXP 2774 (4.0%)
+ Collabora Ltd. 1470 (2.1%)
+ ST Microelectronics 835 (1.2%)
+ Konsulko Group 621 (0.9%)
+ Samsung 583 (0.8%)
+ General Electric 539 (0.8%)
+ Pengutronix 421 (0.6%)
+ Xilinx 300 (0.4%)
+ Texas Instruments 268 (0.4%)
+ Bootlin 134 (0.2%)
+ NVidia 122 (0.2%)
+ Intel 96 (0.1%)
+ Linaro 81 (0.1%)
+ Renesas Electronics 74 (0.1%)
+ ARM 73 (0.1%)
+ MIPS 67 (0.1%)
+ Pepperl+Fuchs 64 (0.1%)
+ Amarula Solutions 60 (0.1%)
+ National Instruments 43 (0.1%)
+ Toradex 21 (0.0%)
+ O.S. Systems 20 (0.0%)
+ Nobuhiro Iwamatsu 12 (0.0%)
+ linutronix 9 (0.0%)
+ Cisco 2 (0.0%)
+ Debian.org 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 235)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 74 (31.5%)
+ Xilinx 46 (19.6%)
+ (Unknown) 29 (12.3%)
+ Socionext Inc. 17 (7.2%)
+ NXP 16 (6.8%)
+ DENX Software Engineering 15 (6.4%)
+ Bootlin 10 (4.3%)
+ O.S. Systems 6 (2.6%)
+ Collabora Ltd. 5 (2.1%)
+ General Electric 3 (1.3%)
+ BayLibre SAS 2 (0.9%)
+ ST Microelectronics 2 (0.9%)
+ Konsulko Group 2 (0.9%)
+ Samsung 2 (0.9%)
+ National Instruments 2 (0.9%)
+ Rockchip 1 (0.4%)
+ Google, Inc. 1 (0.4%)
+ Pengutronix 1 (0.4%)
+ ARM 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 135)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 56 (41.5%)
+ Xilinx 16 (11.9%)
+ NXP 16 (11.9%)
+ DENX Software Engineering 5 (3.7%)
+ National Instruments 3 (2.2%)
+ Texas Instruments 3 (2.2%)
+ Intel 3 (2.2%)
+ Socionext Inc. 2 (1.5%)
+ Collabora Ltd. 2 (1.5%)
+ General Electric 2 (1.5%)
+ BayLibre SAS 2 (1.5%)
+ ST Microelectronics 2 (1.5%)
+ Samsung 2 (1.5%)
+ Rockchip 2 (1.5%)
+ Linaro 2 (1.5%)
+ Bootlin 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Pengutronix 1 (0.7%)
+ ARM 1 (0.7%)
+ AMD 1 (0.7%)
+ NVidia 1 (0.7%)
+ Renesas Electronics 1 (0.7%)
+ MIPS 1 (0.7%)
+ Pepperl+Fuchs 1 (0.7%)
+ Amarula Solutions 1 (0.7%)
+ Toradex 1 (0.7%)
+ Nobuhiro Iwamatsu 1 (0.7%)
+ linutronix 1 (0.7%)
+ Cisco 1 (0.7%)
+ Debian.org 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.03.rst b/doc/develop/statistics/u-boot-stats-v2018.03.rst
new file mode 100644
index 0000000..f79c7b6
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.03.rst
@@ -0,0 +1,722 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.03
+======================================
+
+* Processed 1193 csets from 151 developers
+
+* 30 employers found
+
+* A total of 101060 lines added, 25747 removed (delta 75313)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 89 (7.5%)
+ Heinrich Schuchardt 86 (7.2%)
+ Mario Six 72 (6.0%)
+ Jean-Jacques Hiblot 60 (5.0%)
+ Peng Fan 47 (3.9%)
+ Tom Rini 44 (3.7%)
+ Patrice Chotard 33 (2.8%)
+ Tuomas Tynkkynen 32 (2.7%)
+ Bryan O'Donoghue 30 (2.5%)
+ Michal Simek 30 (2.5%)
+ Maxime Ripard 28 (2.3%)
+ Masahiro Yamada 27 (2.3%)
+ Adam Ford 25 (2.1%)
+ Alexander Graf 24 (2.0%)
+ Álvaro Fernández Rojas 24 (2.0%)
+ Kishon Vijay Abraham I 23 (1.9%)
+ David Wu 20 (1.7%)
+ Simon Glass 19 (1.6%)
+ Lokesh Vutla 16 (1.3%)
+ Philipp Tomsich 15 (1.3%)
+ Vipul Kumar 14 (1.2%)
+ Alex Kiernan 14 (1.2%)
+ Goldschmidt Simon 14 (1.2%)
+ Stephen Warren 14 (1.2%)
+ Jorge Ramirez-Ortiz 13 (1.1%)
+ Rick Chen 13 (1.1%)
+ Fabio Estevam 12 (1.0%)
+ Jagan Teki 12 (1.0%)
+ Faiz Abbas 12 (1.0%)
+ Eugeniy Paltsev 12 (1.0%)
+ Lukasz Majewski 12 (1.0%)
+ Rajesh Bhagat 11 (0.9%)
+ York Sun 10 (0.8%)
+ Andre Heider 8 (0.7%)
+ Derald D. Woods 8 (0.7%)
+ Siva Durga Prasad Paladugu 7 (0.6%)
+ Jaehoon Chung 7 (0.6%)
+ Andre Przywara 7 (0.6%)
+ Ashish Kumar 7 (0.6%)
+ Stefan Agner 6 (0.5%)
+ Hannes Schmelzer 6 (0.5%)
+ Alexey Brodkin 6 (0.5%)
+ Chris Packham 6 (0.5%)
+ Breno Lima 5 (0.4%)
+ Nobuhiro Iwamatsu 5 (0.4%)
+ Ian Ray 5 (0.4%)
+ Andrew F. Davis 5 (0.4%)
+ Daniel Schwierzeck 5 (0.4%)
+ Bin Meng 5 (0.4%)
+ Vignesh R 5 (0.4%)
+ Hannu Lounento 5 (0.4%)
+ Eddie Cai 5 (0.4%)
+ Kever Yang 4 (0.3%)
+ Max Filippov 4 (0.3%)
+ Sumit Garg 4 (0.3%)
+ Ulf Magnusson 4 (0.3%)
+ Eran Matityahu 4 (0.3%)
+ Patrick Bruenn 4 (0.3%)
+ Andy Shevchenko 4 (0.3%)
+ Chris Brandt 4 (0.3%)
+ Jason Rush 4 (0.3%)
+ Rob Clark 4 (0.3%)
+ Florian Fainelli 4 (0.3%)
+ Jeremy Boone 3 (0.3%)
+ Bernhard Messerklinger 3 (0.3%)
+ Utkarsh Gupta 3 (0.3%)
+ Eric Nelson 3 (0.3%)
+ Martyn Welch 3 (0.3%)
+ Anson Huang 3 (0.3%)
+ Ezequiel Garcia 3 (0.3%)
+ Joe Hershberger 3 (0.3%)
+ Felix Brack 3 (0.3%)
+ Yuantian Tang 3 (0.3%)
+ Miquel Raynal 3 (0.3%)
+ Ran Wang 3 (0.3%)
+ Marek Behún 2 (0.2%)
+ Masaru Nagai 2 (0.2%)
+ Klaus Goger 2 (0.2%)
+ Thierry Reding 2 (0.2%)
+ Stefano Babic 2 (0.2%)
+ Bin Chen 2 (0.2%)
+ Zhao Qiang 2 (0.2%)
+ Sriram Dash 2 (0.2%)
+ Nandor Han 2 (0.2%)
+ Andreas Färber 2 (0.2%)
+ Priyanka Jain 2 (0.2%)
+ Bhaskar Upadhaya 2 (0.2%)
+ Christopher Spinrath 2 (0.2%)
+ Suniel Mahesh 2 (0.2%)
+ Ahmed Mansour 2 (0.2%)
+ Chen-Yu Tsai 2 (0.2%)
+ Elaine Zhang 2 (0.2%)
+ Stefan Theil 1 (0.1%)
+ Yasushi SHOJI 1 (0.1%)
+ Ed Bartosh 1 (0.1%)
+ Paul Kocialkowski 1 (0.1%)
+ Chin Liang See 1 (0.1%)
+ Arno Steffens 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Karl Beldan 1 (0.1%)
+ Alexander Kochetkov 1 (0.1%)
+ Maxim Yu. Osipov 1 (0.1%)
+ Patrick Delaunay 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Sam Protsenko 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Richard Weinberger 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Lukas Auer 1 (0.1%)
+ Vinitha Pillai-B57223 1 (0.1%)
+ Rajat Srivastava 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Martin Townsend 1 (0.1%)
+ Justin Hibbits 1 (0.1%)
+ Soeren Moch 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Benoît Thébaudeau 1 (0.1%)
+ Ye Li 1 (0.1%)
+ Yogesh Gaur 1 (0.1%)
+ Anders Hedlund 1 (0.1%)
+ Андрей Мозжухин 1 (0.1%)
+ Konstantin Porotchkin 1 (0.1%)
+ Alberto Sánchez Molero 1 (0.1%)
+ Jelle van der Waa 1 (0.1%)
+ Bradley Bolen 1 (0.1%)
+ Martin Etnestad 1 (0.1%)
+ Chris Blake 1 (0.1%)
+ Gustavo A. R. Silva 1 (0.1%)
+ Paul Burton 1 (0.1%)
+ Jun Nie 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Pankaj Bansal 1 (0.1%)
+ Giulio Benetti 1 (0.1%)
+ Stefan Brüns 1 (0.1%)
+ Madan Srinivas 1 (0.1%)
+ Drew Moseley 1 (0.1%)
+ Tero Kristo 1 (0.1%)
+ Tomi Valkeinen 1 (0.1%)
+ Rex Chang 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Zhang Ying-22455 1 (0.1%)
+ Jason Brown 1 (0.1%)
+ Wilson Lee 1 (0.1%)
+ Koen Vandeputte 1 (0.1%)
+ Bao Xiaowei 1 (0.1%)
+ Henry Zhang 1 (0.1%)
+ Siarhei Siamashka 1 (0.1%)
+ Florian Klink 1 (0.1%)
+ Andrey Zhizhikin 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 40903 (36.5%)
+ Peng Fan 8010 (7.1%)
+ Michal Simek 7210 (6.4%)
+ Tom Rini 4695 (4.2%)
+ Heinrich Schuchardt 4594 (4.1%)
+ Patrice Chotard 4319 (3.8%)
+ Masahiro Yamada 3510 (3.1%)
+ Rick Chen 3470 (3.1%)
+ Álvaro Fernández Rojas 2382 (2.1%)
+ David Wu 2274 (2.0%)
+ Jean-Jacques Hiblot 2259 (2.0%)
+ Mario Six 2117 (1.9%)
+ Adam Ford 1930 (1.7%)
+ Jorge Ramirez-Ortiz 1645 (1.5%)
+ Alexander Graf 1583 (1.4%)
+ Felix Brack 1362 (1.2%)
+ Tuomas Tynkkynen 1292 (1.2%)
+ Kishon Vijay Abraham I 1175 (1.0%)
+ Derald D. Woods 1175 (1.0%)
+ Eddie Cai 1101 (1.0%)
+ Lokesh Vutla 889 (0.8%)
+ Florian Fainelli 798 (0.7%)
+ Rajesh Bhagat 757 (0.7%)
+ Jaehoon Chung 708 (0.6%)
+ Stephen Warren 677 (0.6%)
+ Stefano Babic 603 (0.5%)
+ Siva Durga Prasad Paladugu 544 (0.5%)
+ Bryan O'Donoghue 482 (0.4%)
+ Ahmed Mansour 479 (0.4%)
+ Lukasz Majewski 456 (0.4%)
+ Philipp Tomsich 445 (0.4%)
+ Andre Przywara 403 (0.4%)
+ Simon Glass 396 (0.4%)
+ Jagan Teki 395 (0.4%)
+ Nandor Han 394 (0.4%)
+ Eugeniy Paltsev 390 (0.3%)
+ Maxime Ripard 342 (0.3%)
+ Hannu Lounento 314 (0.3%)
+ York Sun 312 (0.3%)
+ Bhaskar Upadhaya 296 (0.3%)
+ Michael Trimarchi 290 (0.3%)
+ Goldschmidt Simon 260 (0.2%)
+ Breno Lima 224 (0.2%)
+ Elaine Zhang 223 (0.2%)
+ Vipul Kumar 214 (0.2%)
+ Chen-Yu Tsai 211 (0.2%)
+ Ian Ray 167 (0.1%)
+ Stefan Agner 162 (0.1%)
+ Nobuhiro Iwamatsu 137 (0.1%)
+ Chris Packham 135 (0.1%)
+ Patrick Bruenn 135 (0.1%)
+ Sumit Garg 127 (0.1%)
+ Alex Kiernan 121 (0.1%)
+ Jason Rush 121 (0.1%)
+ Bin Chen 121 (0.1%)
+ Utkarsh Gupta 119 (0.1%)
+ Konstantin Porotchkin 119 (0.1%)
+ Soeren Moch 116 (0.1%)
+ Vignesh R 113 (0.1%)
+ Rex Chang 106 (0.1%)
+ Fabio Estevam 95 (0.1%)
+ Faiz Abbas 95 (0.1%)
+ Wilson Lee 87 (0.1%)
+ Bin Meng 86 (0.1%)
+ Ashish Kumar 84 (0.1%)
+ Hannes Schmelzer 82 (0.1%)
+ Chris Brandt 64 (0.1%)
+ Lukas Auer 60 (0.1%)
+ Andre Heider 55 (0.0%)
+ Rob Clark 52 (0.0%)
+ Ran Wang 51 (0.0%)
+ Martyn Welch 50 (0.0%)
+ Tero Kristo 50 (0.0%)
+ Yuantian Tang 49 (0.0%)
+ Anson Huang 48 (0.0%)
+ Alexey Brodkin 43 (0.0%)
+ Ye Li 43 (0.0%)
+ Андрей Мозжухин 43 (0.0%)
+ Angelo Dureghello 41 (0.0%)
+ Richard Weinberger 40 (0.0%)
+ Pankaj Bansal 39 (0.0%)
+ Kever Yang 35 (0.0%)
+ Andy Shevchenko 30 (0.0%)
+ Christopher Spinrath 30 (0.0%)
+ Alison Wang 29 (0.0%)
+ Andrew F. Davis 24 (0.0%)
+ Vinitha Pillai-B57223 24 (0.0%)
+ Max Filippov 21 (0.0%)
+ Jeremy Boone 21 (0.0%)
+ Sriram Dash 21 (0.0%)
+ Daniel Schwierzeck 20 (0.0%)
+ Eric Nelson 20 (0.0%)
+ Siarhei Siamashka 20 (0.0%)
+ Bernhard Messerklinger 19 (0.0%)
+ Miquel Raynal 19 (0.0%)
+ Joe Hershberger 18 (0.0%)
+ Florian Klink 17 (0.0%)
+ Patrick Delaunay 16 (0.0%)
+ Thierry Reding 14 (0.0%)
+ Andrey Zhizhikin 12 (0.0%)
+ Arno Steffens 11 (0.0%)
+ Koen Vandeputte 11 (0.0%)
+ Eran Matityahu 9 (0.0%)
+ Anatolij Gustschin 9 (0.0%)
+ Jun Nie 9 (0.0%)
+ Sam Protsenko 8 (0.0%)
+ Karl Beldan 7 (0.0%)
+ Hou Zhiqiang 7 (0.0%)
+ Drew Moseley 7 (0.0%)
+ Masaru Nagai 6 (0.0%)
+ Linus Walleij 6 (0.0%)
+ Sekhar Nori 6 (0.0%)
+ Benoît Thébaudeau 6 (0.0%)
+ Yogesh Gaur 6 (0.0%)
+ Anders Hedlund 6 (0.0%)
+ Ezequiel Garcia 5 (0.0%)
+ Marek Behún 5 (0.0%)
+ Suniel Mahesh 5 (0.0%)
+ Martin Townsend 5 (0.0%)
+ Alberto Sánchez Molero 5 (0.0%)
+ Jason Brown 5 (0.0%)
+ Ulf Magnusson 4 (0.0%)
+ Zhao Qiang 4 (0.0%)
+ Andreas Färber 4 (0.0%)
+ Stefan Mavrodiev 4 (0.0%)
+ Rajat Srivastava 4 (0.0%)
+ Paul Burton 4 (0.0%)
+ Stefan Theil 3 (0.0%)
+ Chin Liang See 3 (0.0%)
+ Jonathan Gray 3 (0.0%)
+ Justin Hibbits 3 (0.0%)
+ Klaus Goger 2 (0.0%)
+ Priyanka Jain 2 (0.0%)
+ Yasushi SHOJI 2 (0.0%)
+ Maxim Yu. Osipov 2 (0.0%)
+ Jelle van der Waa 2 (0.0%)
+ Bradley Bolen 2 (0.0%)
+ Giulio Benetti 2 (0.0%)
+ Stefan Brüns 2 (0.0%)
+ Zhang Ying-22455 2 (0.0%)
+ Bao Xiaowei 2 (0.0%)
+ Ed Bartosh 1 (0.0%)
+ Paul Kocialkowski 1 (0.0%)
+ Alexander Kochetkov 1 (0.0%)
+ Heiko Schocher 1 (0.0%)
+ Martin Etnestad 1 (0.0%)
+ Chris Blake 1 (0.0%)
+ Gustavo A. R. Silva 1 (0.0%)
+ Madan Srinivas 1 (0.0%)
+ Tomi Valkeinen 1 (0.0%)
+ Henry Zhang 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 2451 (9.5%)
+ Masahiro Yamada 2220 (8.6%)
+ Tuomas Tynkkynen 805 (3.1%)
+ Adam Ford 206 (0.8%)
+ Lukasz Majewski 171 (0.7%)
+ Goldschmidt Simon 86 (0.3%)
+ Patrick Bruenn 67 (0.3%)
+ Breno Lima 64 (0.2%)
+ Chris Brandt 54 (0.2%)
+ Bin Meng 45 (0.2%)
+ Ran Wang 31 (0.1%)
+ Alexey Brodkin 26 (0.1%)
+ Ian Ray 19 (0.1%)
+ Pankaj Bansal 14 (0.1%)
+ Yuantian Tang 9 (0.0%)
+ Siarhei Siamashka 8 (0.0%)
+ Martin Townsend 5 (0.0%)
+ Linus Walleij 4 (0.0%)
+ Ulf Magnusson 2 (0.0%)
+ Maxim Yu. Osipov 2 (0.0%)
+ Jelle van der Waa 2 (0.0%)
+ Karl Beldan 1 (0.0%)
+ Zhao Qiang 1 (0.0%)
+ Bao Xiaowei 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 312)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 66 (21.2%)
+ Stefan Roese 41 (13.1%)
+ Michal Simek 25 (8.0%)
+ Jean-Jacques Hiblot 23 (7.4%)
+ Sebastian Reichel 15 (4.8%)
+ Tom Warren 14 (4.5%)
+ Greentime Hu 13 (4.2%)
+ Martyn Welch 12 (3.8%)
+ Siva Durga Prasad Paladugu 11 (3.5%)
+ Tom Rini 10 (3.2%)
+ Ashish Kumar 10 (3.2%)
+ Alexey Brodkin 9 (2.9%)
+ Kishon Vijay Abraham I 9 (2.9%)
+ Breno Lima 3 (1.0%)
+ Ian Ray 3 (1.0%)
+ Vignesh R 3 (1.0%)
+ Marek Vasut 3 (1.0%)
+ Christophe Priouzeau 2 (0.6%)
+ Krunal Bhargav 2 (0.6%)
+ Chih-Mao Chen 2 (0.6%)
+ Ye Li 2 (0.6%)
+ Kever Yang 2 (0.6%)
+ Philipp Tomsich 2 (0.6%)
+ Lokesh Vutla 2 (0.6%)
+ Goldschmidt Simon 1 (0.3%)
+ Bin Meng 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ Hiroyuki Yokoyama 1 (0.3%)
+ Theo Buehler 1 (0.3%)
+ Stuart Henderson 1 (0.3%)
+ Pankit Garg 1 (0.3%)
+ Raghav Dogra 1 (0.3%)
+ Amrita Kumari 1 (0.3%)
+ Dan Murphy 1 (0.3%)
+ Franklin S Cooper Jr 1 (0.3%)
+ Raghu Bharadwaj 1 (0.3%)
+ Karthik Tummala 1 (0.3%)
+ Udit Agarwal 1 (0.3%)
+ Andrea Merello 1 (0.3%)
+ Alexandre Torgue 1 (0.3%)
+ Andrew F. Davis 1 (0.3%)
+ Sekhar Nori 1 (0.3%)
+ Alex Kiernan 1 (0.3%)
+ Faiz Abbas 1 (0.3%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ Sumit Garg 1 (0.3%)
+ Maxime Ripard 1 (0.3%)
+ Jagan Teki 1 (0.3%)
+ Hannu Lounento 1 (0.3%)
+ Simon Glass 1 (0.3%)
+ Jaehoon Chung 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 533)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 106 (19.9%)
+ Fabio Estevam 66 (12.4%)
+ Jagan Teki 52 (9.8%)
+ York Sun 48 (9.0%)
+ Tom Rini 35 (6.6%)
+ Philipp Tomsich 32 (6.0%)
+ Stefano Babic 28 (5.3%)
+ Daniel Schwierzeck 25 (4.7%)
+ Lukasz Majewski 22 (4.1%)
+ Andre Przywara 14 (2.6%)
+ Anatolij Gustschin 12 (2.3%)
+ Jaehoon Chung 11 (2.1%)
+ Bin Meng 10 (1.9%)
+ Lokesh Vutla 9 (1.7%)
+ Stefan Roese 8 (1.5%)
+ Konstantin Porotchkin 6 (1.1%)
+ Marek Vasut 5 (0.9%)
+ Vikas Manocha 5 (0.9%)
+ Heiko Schocher 4 (0.8%)
+ Hannes Schmelzer 4 (0.8%)
+ Jason Rush 3 (0.6%)
+ Joe Hershberger 3 (0.6%)
+ Ian Ray 2 (0.4%)
+ Sam Protsenko 2 (0.4%)
+ Andy Shevchenko 2 (0.4%)
+ Bin Chen 2 (0.4%)
+ Michal Simek 1 (0.2%)
+ Jean-Jacques Hiblot 1 (0.2%)
+ Breno Lima 1 (0.2%)
+ Kever Yang 1 (0.2%)
+ Alex Kiernan 1 (0.2%)
+ Peng Fan 1 (0.2%)
+ Zhao Qiang 1 (0.2%)
+ Paul Kocialkowski 1 (0.2%)
+ Mark Kettenis 1 (0.2%)
+ David Lechner 1 (0.2%)
+ Peter Howard 1 (0.2%)
+ Marek Behún 1 (0.2%)
+ Benoît Thébaudeau 1 (0.2%)
+ Stefan Agner 1 (0.2%)
+ Alison Wang 1 (0.2%)
+ Patrice Chotard 1 (0.2%)
+ Heinrich Schuchardt 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 82)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Breno Lima 26 (31.7%)
+ Klaus Goger 7 (8.5%)
+ Anand Moon 5 (6.1%)
+ David Wu 5 (6.1%)
+ Vignesh R 4 (4.9%)
+ Goldschmidt Simon 4 (4.9%)
+ Adam Ford 4 (4.9%)
+ Alex Kiernan 3 (3.7%)
+ Bin Meng 2 (2.4%)
+ Tuomas Tynkkynen 2 (2.4%)
+ Peter Robinson 2 (2.4%)
+ Robert Nelson 2 (2.4%)
+ Shawn Guo 2 (2.4%)
+ Guillaume GARDET 2 (2.4%)
+ Jonathan Gray 2 (2.4%)
+ Lukas Auer 2 (2.4%)
+ Stephen Warren 2 (2.4%)
+ Lukasz Majewski 1 (1.2%)
+ Michal Simek 1 (1.2%)
+ Alison Wang 1 (1.2%)
+ Vagrant Cascadian 1 (1.2%)
+ Max Krummenacher 1 (1.2%)
+ Bryan O'Donoghue 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 82)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bryan O'Donoghue 27 (32.9%)
+ Philipp Tomsich 12 (14.6%)
+ Jaehoon Chung 8 (9.8%)
+ Jason Rush 8 (9.8%)
+ Jean-Jacques Hiblot 5 (6.1%)
+ Alexander Graf 4 (4.9%)
+ Lukasz Majewski 3 (3.7%)
+ Fabio Estevam 3 (3.7%)
+ Tom Rini 3 (3.7%)
+ Heinrich Schuchardt 3 (3.7%)
+ Alex Kiernan 1 (1.2%)
+ Lukas Auer 1 (1.2%)
+ Anatolij Gustschin 1 (1.2%)
+ Kever Yang 1 (1.2%)
+ Alberto Sánchez Molero 1 (1.2%)
+ Mario Six 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jonathan Gray 3 (14.3%)
+ Peter Robinson 2 (9.5%)
+ Göran Lundberg 2 (9.5%)
+ Thomas Petazzoni 2 (9.5%)
+ Heinrich Schuchardt 1 (4.8%)
+ Anatolij Gustschin 1 (4.8%)
+ Breno Lima 1 (4.8%)
+ Michal Simek 1 (4.8%)
+ Andre Przywara 1 (4.8%)
+ Lokesh Vutla 1 (4.8%)
+ eil Eilmsteiner Heribert 1 (4.8%)
+ Julia Cartwright 1 (4.8%)
+ Ferry Toth 1 (4.8%)
+ Steve Kipisz 1 (4.8%)
+ Denys Dmytriyenko 1 (4.8%)
+ Derald D. Woods 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 6 (28.6%)
+ Fabio Estevam 3 (14.3%)
+ Heinrich Schuchardt 2 (9.5%)
+ Lokesh Vutla 2 (9.5%)
+ Jean-Jacques Hiblot 2 (9.5%)
+ Breno Lima 1 (4.8%)
+ Michal Simek 1 (4.8%)
+ Philipp Tomsich 1 (4.8%)
+ Goldschmidt Simon 1 (4.8%)
+ Andy Shevchenko 1 (4.8%)
+ Masahiro Yamada 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 388 (32.5%)
+ NXP 127 (10.6%)
+ Texas Instruments 126 (10.6%)
+ DENX Software Engineering 105 (8.8%)
+ Guntermann & Drunck 72 (6.0%)
+ Linaro 47 (3.9%)
+ Konsulko Group 44 (3.7%)
+ ST Microelectronics 34 (2.8%)
+ Bootlin 31 (2.6%)
+ AMD 30 (2.5%)
+ Socionext Inc. 27 (2.3%)
+ Rockchip 26 (2.2%)
+ Xilinx 21 (1.8%)
+ Google, Inc. 19 (1.6%)
+ NVidia 16 (1.3%)
+ Pepperl+Fuchs 14 (1.2%)
+ General Electric 12 (1.0%)
+ ARM 7 (0.6%)
+ Samsung 7 (0.6%)
+ Intel 6 (0.5%)
+ Renesas Electronics 6 (0.5%)
+ Toradex 6 (0.5%)
+ Amarula Solutions 5 (0.4%)
+ Nobuhiro Iwamatsu 5 (0.4%)
+ National Instruments 4 (0.3%)
+ Collabora Ltd. 3 (0.3%)
+ SUSE 2 (0.2%)
+ BayLibre SAS 1 (0.1%)
+ Marvell 1 (0.1%)
+ MIPS 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 41972 (37.4%)
+ (Unknown) 22427 (20.0%)
+ NXP 10834 (9.7%)
+ AMD 7210 (6.4%)
+ Texas Instruments 4719 (4.2%)
+ Konsulko Group 4695 (4.2%)
+ ST Microelectronics 4335 (3.9%)
+ Socionext Inc. 3510 (3.1%)
+ Rockchip 2532 (2.3%)
+ Linaro 2269 (2.0%)
+ Guntermann & Drunck 2117 (1.9%)
+ General Electric 875 (0.8%)
+ Xilinx 758 (0.7%)
+ Samsung 708 (0.6%)
+ NVidia 691 (0.6%)
+ Amarula Solutions 425 (0.4%)
+ ARM 403 (0.4%)
+ Google, Inc. 396 (0.4%)
+ Bootlin 361 (0.3%)
+ Pepperl+Fuchs 260 (0.2%)
+ Toradex 162 (0.1%)
+ Nobuhiro Iwamatsu 137 (0.1%)
+ Marvell 119 (0.1%)
+ National Instruments 105 (0.1%)
+ Renesas Electronics 70 (0.1%)
+ Collabora Ltd. 50 (0.0%)
+ Intel 34 (0.0%)
+ SUSE 4 (0.0%)
+ MIPS 4 (0.0%)
+ BayLibre SAS 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 312)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 66 (21.2%)
+ Texas Instruments 44 (14.1%)
+ DENX Software Engineering 43 (13.8%)
+ Xilinx 36 (11.5%)
+ (Unknown) 35 (11.2%)
+ Collabora Ltd. 27 (8.7%)
+ NXP 21 (6.7%)
+ NVidia 14 (4.5%)
+ Konsulko Group 10 (3.2%)
+ General Electric 4 (1.3%)
+ ST Microelectronics 3 (1.0%)
+ Rockchip 2 (0.6%)
+ Samsung 1 (0.3%)
+ Amarula Solutions 1 (0.3%)
+ Google, Inc. 1 (0.3%)
+ Bootlin 1 (0.3%)
+ Pepperl+Fuchs 1 (0.3%)
+ Nobuhiro Iwamatsu 1 (0.3%)
+ Renesas Electronics 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 153)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 68 (44.4%)
+ NXP 25 (16.3%)
+ Texas Instruments 11 (7.2%)
+ Linaro 6 (3.9%)
+ DENX Software Engineering 5 (3.3%)
+ General Electric 3 (2.0%)
+ Rockchip 3 (2.0%)
+ Intel 3 (2.0%)
+ Xilinx 2 (1.3%)
+ NVidia 2 (1.3%)
+ ST Microelectronics 2 (1.3%)
+ Amarula Solutions 2 (1.3%)
+ Bootlin 2 (1.3%)
+ Renesas Electronics 2 (1.3%)
+ National Instruments 2 (1.3%)
+ SUSE 1 (0.7%)
+ Collabora Ltd. 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Samsung 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ Pepperl+Fuchs 1 (0.7%)
+ Nobuhiro Iwamatsu 1 (0.7%)
+ AMD 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ ARM 1 (0.7%)
+ Toradex 1 (0.7%)
+ Marvell 1 (0.7%)
+ MIPS 1 (0.7%)
+ BayLibre SAS 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.05.rst b/doc/develop/statistics/u-boot-stats-v2018.05.rst
new file mode 100644
index 0000000..57a3d83
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.05.rst
@@ -0,0 +1,627 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.05
+======================================
+
+* Processed 977 csets from 128 developers
+
+* 26 employers found
+
+* A total of 72596 lines added, 38379 removed (delta 34217)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 101 (10.3%)
+ Marek Vasut 80 (8.2%)
+ Michal Simek 61 (6.2%)
+ Jagan Teki 39 (4.0%)
+ Patrick Delaunay 38 (3.9%)
+ Bryan O'Donoghue 37 (3.8%)
+ Eugeniy Paltsev 36 (3.7%)
+ Patrice Chotard 33 (3.4%)
+ Tom Rini 26 (2.7%)
+ Álvaro Fernández Rojas 24 (2.5%)
+ Kever Yang 23 (2.4%)
+ Alex Kiernan 22 (2.3%)
+ Bin Meng 20 (2.0%)
+ Miquel Raynal 20 (2.0%)
+ Rick Chen 20 (2.0%)
+ Masahiro Yamada 18 (1.8%)
+ Christophe Leroy 17 (1.7%)
+ Mario Six 15 (1.5%)
+ Andre Przywara 14 (1.4%)
+ Alexander Graf 14 (1.4%)
+ Neil Armstrong 14 (1.4%)
+ Ken Ma 14 (1.4%)
+ Joe Hershberger 12 (1.2%)
+ Calvin Johnson 12 (1.2%)
+ Siva Durga Prasad Paladugu 10 (1.0%)
+ Dinh Nguyen 9 (0.9%)
+ Jean-Jacques Hiblot 8 (0.8%)
+ Alexey Brodkin 8 (0.8%)
+ yannick fertre 8 (0.8%)
+ Tuomas Tynkkynen 7 (0.7%)
+ Philipp Tomsich 7 (0.7%)
+ Liam Beguin 7 (0.7%)
+ Lukasz Majewski 6 (0.6%)
+ Vignesh R 6 (0.6%)
+ Sam Protsenko 6 (0.6%)
+ Peng Fan 5 (0.5%)
+ Simon Glass 5 (0.5%)
+ Mans Rullgard 5 (0.5%)
+ Chris Packham 5 (0.5%)
+ Alexander Kochetkov 5 (0.5%)
+ Vipul Kumar 5 (0.5%)
+ Fabio Estevam 4 (0.4%)
+ Lokesh Vutla 4 (0.4%)
+ Stefan Mavrodiev 4 (0.4%)
+ Stefan Roese 4 (0.4%)
+ Wilson Ding 4 (0.4%)
+ Eran Matityahu 4 (0.4%)
+ Ashish Kumar 4 (0.4%)
+ Adam Ford 3 (0.3%)
+ Christophe Kerello 3 (0.3%)
+ Klaus Goger 3 (0.3%)
+ Sjoerd Simons 3 (0.3%)
+ Ivan Gorinov 3 (0.3%)
+ Rasmus Villemoes 3 (0.3%)
+ Petr Vorel 3 (0.3%)
+ Andrew F. Davis 3 (0.3%)
+ Jason Kridner 3 (0.3%)
+ Wenyou Yang 3 (0.3%)
+ Derald D. Woods 3 (0.3%)
+ Peter Robinson 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Alexander Dahl 2 (0.2%)
+ Sébastien Szymanski 2 (0.2%)
+ Pierre-Jean TEXIER 2 (0.2%)
+ Ezequiel Garcia 2 (0.2%)
+ Kunihiko Hayashi 2 (0.2%)
+ Matt Pelland 2 (0.2%)
+ Christian Gmeiner 2 (0.2%)
+ Ye Li 2 (0.2%)
+ Luca Ceresoli 2 (0.2%)
+ Nitin Jain 2 (0.2%)
+ Anton Gerasimov 2 (0.2%)
+ Jonathan Gray 2 (0.2%)
+ Patrick Wildt 2 (0.2%)
+ Andre Heider 2 (0.2%)
+ Mark Kettenis 2 (0.2%)
+ Jörg Krause 2 (0.2%)
+ Sriram Dash 2 (0.2%)
+ Priyanka Jain 2 (0.2%)
+ Punit Agrawal 2 (0.2%)
+ Faiz Abbas 2 (0.2%)
+ Stephen Warren 2 (0.2%)
+ Kyle Evans 2 (0.2%)
+ Madan Srinivas 2 (0.2%)
+ Kelvin Cheung 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Trevor Woerner 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Eugeniu Rosca 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Mark Jonas 1 (0.1%)
+ Patrick Uiterwijk 1 (0.1%)
+ Wadim Egorov 1 (0.1%)
+ Sean Nyekjaer 1 (0.1%)
+ Chin Liang See 1 (0.1%)
+ Jon Nettleton 1 (0.1%)
+ Trent Piepho 1 (0.1%)
+ Vanessa Maegima 1 (0.1%)
+ Ian Ray 1 (0.1%)
+ Ken Lin 1 (0.1%)
+ Vasyl Vavrychuk 1 (0.1%)
+ Bradley Bolen 1 (0.1%)
+ Kristian Amlie 1 (0.1%)
+ Guillaume GARDET 1 (0.1%)
+ Javier Martinez Canillas 1 (0.1%)
+ Srinivas Goud 1 (0.1%)
+ Jun Nie 1 (0.1%)
+ Hauke Mehrtens 1 (0.1%)
+ Marek Behún 1 (0.1%)
+ Russ Dill 1 (0.1%)
+ Dave Gerlach 1 (0.1%)
+ Tero Kristo 1 (0.1%)
+ Leif Lindholm 1 (0.1%)
+ Andy Yan 1 (0.1%)
+ Igal Liberman 1 (0.1%)
+ Baruch Siach 1 (0.1%)
+ Bernhard Messerklinger 1 (0.1%)
+ Nandor Han 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Shreenidhi Shedi 1 (0.1%)
+ David Lechner 1 (0.1%)
+ Leonid Iziumtsev 1 (0.1%)
+ Prabhakar Kushwaha 1 (0.1%)
+ Vinitha V Pillai 1 (0.1%)
+ Philippe CORNU 1 (0.1%)
+ Ruslan Bilovol 1 (0.1%)
+ Samuel Holland 1 (0.1%)
+ Chen-Yu Tsai 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 21406 (23.2%)
+ Michal Simek 14398 (15.6%)
+ Marek Vasut 7595 (8.2%)
+ Patrick Delaunay 7363 (8.0%)
+ Calvin Johnson 5104 (5.5%)
+ Heinrich Schuchardt 3709 (4.0%)
+ yannick fertre 3448 (3.7%)
+ Eugeniy Paltsev 2605 (2.8%)
+ Patrice Chotard 2026 (2.2%)
+ Mario Six 1692 (1.8%)
+ Álvaro Fernández Rojas 1581 (1.7%)
+ Jagan Teki 1533 (1.7%)
+ Tuomas Tynkkynen 1227 (1.3%)
+ Neil Armstrong 1206 (1.3%)
+ Simon Glass 1191 (1.3%)
+ Masahiro Yamada 1161 (1.3%)
+ Lukasz Majewski 979 (1.1%)
+ Alexander Kochetkov 913 (1.0%)
+ Rick Chen 786 (0.9%)
+ Dinh Nguyen 769 (0.8%)
+ Alex Kiernan 750 (0.8%)
+ Wilson Ding 746 (0.8%)
+ Alexey Brodkin 727 (0.8%)
+ Adam Ford 605 (0.7%)
+ Bin Meng 517 (0.6%)
+ Alexander Graf 478 (0.5%)
+ Stefan Mavrodiev 432 (0.5%)
+ Jean-Jacques Hiblot 431 (0.5%)
+ Bryan O'Donoghue 428 (0.5%)
+ Andre Przywara 415 (0.4%)
+ Lokesh Vutla 386 (0.4%)
+ Christophe Leroy 346 (0.4%)
+ Ken Ma 299 (0.3%)
+ Shreenidhi Shedi 293 (0.3%)
+ Wenyou Yang 276 (0.3%)
+ Tero Kristo 269 (0.3%)
+ Stefan Roese 263 (0.3%)
+ Miquel Raynal 259 (0.3%)
+ Liam Beguin 247 (0.3%)
+ Sriram Dash 245 (0.3%)
+ Siva Durga Prasad Paladugu 241 (0.3%)
+ Kever Yang 215 (0.2%)
+ Derald D. Woods 212 (0.2%)
+ Vignesh R 183 (0.2%)
+ Stephen Warren 179 (0.2%)
+ Joe Hershberger 169 (0.2%)
+ Ashish Kumar 160 (0.2%)
+ Leif Lindholm 130 (0.1%)
+ Philipp Tomsich 116 (0.1%)
+ Vipul Kumar 111 (0.1%)
+ Fabio Estevam 105 (0.1%)
+ Klaus Goger 102 (0.1%)
+ Chris Packham 93 (0.1%)
+ Ivan Gorinov 87 (0.1%)
+ Sébastien Szymanski 84 (0.1%)
+ Sam Protsenko 83 (0.1%)
+ Igal Liberman 58 (0.1%)
+ Madan Srinivas 53 (0.1%)
+ Anton Gerasimov 51 (0.1%)
+ Rasmus Villemoes 50 (0.1%)
+ Jun Nie 48 (0.1%)
+ Kyle Evans 46 (0.0%)
+ Peng Fan 43 (0.0%)
+ Priyanka Jain 42 (0.0%)
+ Christophe Kerello 40 (0.0%)
+ Jonathan Gray 37 (0.0%)
+ Petr Vorel 35 (0.0%)
+ Nitin Jain 34 (0.0%)
+ Chin Liang See 33 (0.0%)
+ Eran Matityahu 32 (0.0%)
+ Russ Dill 30 (0.0%)
+ Ian Ray 29 (0.0%)
+ Mans Rullgard 28 (0.0%)
+ Jason Kridner 27 (0.0%)
+ Ye Li 25 (0.0%)
+ Patrick Wildt 24 (0.0%)
+ Mark Kettenis 20 (0.0%)
+ Christian Gmeiner 18 (0.0%)
+ Jörg Krause 16 (0.0%)
+ Prabhakar Kushwaha 15 (0.0%)
+ Ruslan Bilovol 15 (0.0%)
+ Hannes Schmelzer 14 (0.0%)
+ Ezequiel Garcia 14 (0.0%)
+ Marek Behún 14 (0.0%)
+ Wadim Egorov 13 (0.0%)
+ Kunihiko Hayashi 11 (0.0%)
+ Matt Pelland 11 (0.0%)
+ Andy Yan 11 (0.0%)
+ Andrew F. Davis 10 (0.0%)
+ Luca Ceresoli 10 (0.0%)
+ Vasyl Vavrychuk 10 (0.0%)
+ Philippe CORNU 9 (0.0%)
+ Keerthy 8 (0.0%)
+ Trent Piepho 8 (0.0%)
+ Vinitha V Pillai 7 (0.0%)
+ Sjoerd Simons 6 (0.0%)
+ Peter Robinson 5 (0.0%)
+ Tien Fong Chee 5 (0.0%)
+ Dave Gerlach 5 (0.0%)
+ Pierre-Jean TEXIER 4 (0.0%)
+ Trevor Woerner 4 (0.0%)
+ Jaehoon Chung 4 (0.0%)
+ Eugeniu Rosca 4 (0.0%)
+ Anatolij Gustschin 4 (0.0%)
+ Andre Heider 3 (0.0%)
+ Faiz Abbas 3 (0.0%)
+ Mark Jonas 3 (0.0%)
+ Vanessa Maegima 3 (0.0%)
+ Guillaume GARDET 3 (0.0%)
+ Bernhard Messerklinger 3 (0.0%)
+ David Lechner 3 (0.0%)
+ Alexander Dahl 2 (0.0%)
+ Punit Agrawal 2 (0.0%)
+ Patrick Uiterwijk 2 (0.0%)
+ Jon Nettleton 2 (0.0%)
+ Ken Lin 2 (0.0%)
+ Javier Martinez Canillas 2 (0.0%)
+ Hauke Mehrtens 2 (0.0%)
+ Nandor Han 2 (0.0%)
+ Kelvin Cheung 1 (0.0%)
+ Sean Nyekjaer 1 (0.0%)
+ Bradley Bolen 1 (0.0%)
+ Kristian Amlie 1 (0.0%)
+ Srinivas Goud 1 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Leonid Iziumtsev 1 (0.0%)
+ Samuel Holland 1 (0.0%)
+ Chen-Yu Tsai 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 11751 (30.6%)
+ Tuomas Tynkkynen 1197 (3.1%)
+ Simon Glass 1168 (3.0%)
+ Alexey Brodkin 656 (1.7%)
+ Stefan Roese 263 (0.7%)
+ Rick Chen 247 (0.6%)
+ Christophe Leroy 173 (0.5%)
+ Chris Packham 90 (0.2%)
+ Fabio Estevam 73 (0.2%)
+ Sébastien Szymanski 39 (0.1%)
+ Andre Przywara 38 (0.1%)
+ Anton Gerasimov 37 (0.1%)
+ Marek Behún 14 (0.0%)
+ Ezequiel Garcia 11 (0.0%)
+ Patrick Uiterwijk 2 (0.0%)
+ Guillaume GARDET 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ Jon Nettleton 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 224)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 67 (29.9%)
+ Alexey Brodkin 28 (12.5%)
+ Michal Simek 26 (11.6%)
+ Stefan Roese 24 (10.7%)
+ Maxime Ripard 22 (9.8%)
+ Anjaneyulu Jagarlmudi 10 (4.5%)
+ Patrice Chotard 5 (2.2%)
+ Tom Rini 4 (1.8%)
+ Ken Ma 4 (1.8%)
+ Siva Durga Prasad Paladugu 4 (1.8%)
+ Keerthy 3 (1.3%)
+ Sebastian Reichel 2 (0.9%)
+ Priyanka Jain 2 (0.9%)
+ Christophe Kerello 2 (0.9%)
+ Masahiro Yamada 2 (0.9%)
+ yannick fertre 2 (0.9%)
+ Tuomas Tynkkynen 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ Linus Torvalds 1 (0.4%)
+ Nava kishore Manne 1 (0.4%)
+ Rob Clark 1 (0.4%)
+ Martin Fuzzey 1 (0.4%)
+ Bhaskar Upadhaya 1 (0.4%)
+ Pratiyush Srivastava 1 (0.4%)
+ Christophe Priouzeau 1 (0.4%)
+ Anatolij Gustschin 1 (0.4%)
+ Peter Robinson 1 (0.4%)
+ Bin Meng 1 (0.4%)
+ Jagan Teki 1 (0.4%)
+ Adam Ford 1 (0.4%)
+ Dinh Nguyen 1 (0.4%)
+ Heinrich Schuchardt 1 (0.4%)
+ Calvin Johnson 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 289)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Philipp Tomsich 49 (17.0%)
+ Simon Glass 45 (15.6%)
+ Fabio Estevam 32 (11.1%)
+ Jagan Teki 32 (11.1%)
+ Tom Rini 21 (7.3%)
+ Bin Meng 9 (3.1%)
+ Duncan Hare 7 (2.4%)
+ Hua Jing 7 (2.4%)
+ Stephen Warren 7 (2.4%)
+ Christian Gmeiner 6 (2.1%)
+ Lokesh Vutla 6 (2.1%)
+ Lukasz Majewski 6 (2.1%)
+ Chris Packham 5 (1.7%)
+ Daniel Schwierzeck 5 (1.7%)
+ York Sun 5 (1.7%)
+ Alexander Graf 4 (1.4%)
+ Stefan Roese 4 (1.4%)
+ Stefano Babic 4 (1.4%)
+ Ryan Harkin 3 (1.0%)
+ Petr Vorel 3 (1.0%)
+ Wilson Ding 3 (1.0%)
+ Michal Simek 2 (0.7%)
+ Heinrich Schuchardt 2 (0.7%)
+ Andre Przywara 2 (0.7%)
+ Victor Gu 2 (0.7%)
+ Jun Nie 2 (0.7%)
+ Joe Hershberger 2 (0.7%)
+ Masahiro Yamada 1 (0.3%)
+ Heiko Schocher 1 (0.3%)
+ Andy Shevchenko 1 (0.3%)
+ Eric Nelson 1 (0.3%)
+ Felix Brack 1 (0.3%)
+ Kostya Porotchkin 1 (0.3%)
+ Simon Goldschmidt 1 (0.3%)
+ David Lechner 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ Hannes Schmelzer 1 (0.3%)
+ Igal Liberman 1 (0.3%)
+ Jonathan Gray 1 (0.3%)
+ Leif Lindholm 1 (0.3%)
+ Patrick Delaunay 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Breno Lima 23 (37.7%)
+ iSoC Platform CI 9 (14.8%)
+ Peng Fan 5 (8.2%)
+ Bin Meng 2 (3.3%)
+ Wilson Ding 2 (3.3%)
+ Peter Robinson 2 (3.3%)
+ Sekhar Nori 2 (3.3%)
+ Klaus Goger 2 (3.3%)
+ Fabio Estevam 1 (1.6%)
+ Jagan Teki 1 (1.6%)
+ Hua Jing 1 (1.6%)
+ Alexander Graf 1 (1.6%)
+ Michal Simek 1 (1.6%)
+ Felix Brack 1 (1.6%)
+ Steve Kipisz 1 (1.6%)
+ Anand Moon 1 (1.6%)
+ Mylène Josserand 1 (1.6%)
+ Vagrant Cascadian 1 (1.6%)
+ Sean Nyekjaer 1 (1.6%)
+ Sam Protsenko 1 (1.6%)
+ Alex Kiernan 1 (1.6%)
+ Jean-Jacques Hiblot 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bryan O'Donoghue 26 (42.6%)
+ Ken Ma 10 (16.4%)
+ Tom Rini 3 (4.9%)
+ Lokesh Vutla 3 (4.9%)
+ Rasmus Villemoes 3 (4.9%)
+ Wilson Ding 2 (3.3%)
+ Philipp Tomsich 2 (3.3%)
+ Ruslan Bilovol 2 (3.3%)
+ Alexander Graf 1 (1.6%)
+ Michal Simek 1 (1.6%)
+ Christian Gmeiner 1 (1.6%)
+ Heinrich Schuchardt 1 (1.6%)
+ Joe Hershberger 1 (1.6%)
+ David Lechner 1 (1.6%)
+ Trent Piepho 1 (1.6%)
+ Chen-Yu Tsai 1 (1.6%)
+ Jaehoon Chung 1 (1.6%)
+ Mark Kettenis 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 16)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 3 (18.8%)
+ Peter Robinson 2 (12.5%)
+ Sekhar Nori 2 (12.5%)
+ Jean-Jacques Hiblot 2 (12.5%)
+ Heinrich Schuchardt 1 (6.2%)
+ Vagrant Cascadian 1 (6.2%)
+ Masahiro Yamada 1 (6.2%)
+ Martin Fuzzey 1 (6.2%)
+ James Doublesin 1 (6.2%)
+ Breno Matheus Lima 1 (6.2%)
+ Joe Perches 1 (6.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 16)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 4 (25.0%)
+ Neil Armstrong 3 (18.8%)
+ Tom Rini 2 (12.5%)
+ Heinrich Schuchardt 1 (6.2%)
+ Bryan O'Donoghue 1 (6.2%)
+ Lokesh Vutla 1 (6.2%)
+ David Lechner 1 (6.2%)
+ Fabio Estevam 1 (6.2%)
+ Keerthy 1 (6.2%)
+ Mario Six 1 (6.2%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 399 (40.8%)
+ DENX Software Engineering 91 (9.3%)
+ ST Microelectronics 83 (8.5%)
+ AMD 61 (6.2%)
+ Linaro 45 (4.6%)
+ NXP 34 (3.5%)
+ Amarula Solutions 30 (3.1%)
+ Texas Instruments 30 (3.1%)
+ Konsulko Group 26 (2.7%)
+ Rockchip 24 (2.5%)
+ Bootlin 20 (2.0%)
+ Socionext Inc. 20 (2.0%)
+ Marvell 19 (1.9%)
+ Xilinx 18 (1.8%)
+ ARM 16 (1.6%)
+ Guntermann & Drunck 15 (1.5%)
+ BayLibre SAS 14 (1.4%)
+ National Instruments 12 (1.2%)
+ Google, Inc. 5 (0.5%)
+ Intel 5 (0.5%)
+ Collabora Ltd. 3 (0.3%)
+ General Electric 2 (0.2%)
+ NVidia 2 (0.2%)
+ Bosch 1 (0.1%)
+ Phytec 1 (0.1%)
+ Samsung 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Konsulko Group 21406 (23.2%)
+ (Unknown) 17700 (19.1%)
+ AMD 14398 (15.6%)
+ ST Microelectronics 12886 (13.9%)
+ DENX Software Engineering 8841 (9.6%)
+ NXP 5749 (6.2%)
+ Guntermann & Drunck 1692 (1.8%)
+ Texas Instruments 1381 (1.5%)
+ Amarula Solutions 1227 (1.3%)
+ BayLibre SAS 1206 (1.3%)
+ Google, Inc. 1191 (1.3%)
+ Socionext Inc. 1172 (1.3%)
+ Marvell 1103 (1.2%)
+ Linaro 689 (0.7%)
+ ARM 417 (0.5%)
+ Xilinx 387 (0.4%)
+ Bootlin 259 (0.3%)
+ Rockchip 226 (0.2%)
+ NVidia 179 (0.2%)
+ National Instruments 169 (0.2%)
+ Intel 125 (0.1%)
+ General Electric 31 (0.0%)
+ Phytec 13 (0.0%)
+ Collabora Ltd. 6 (0.0%)
+ Samsung 4 (0.0%)
+ Bosch 3 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 224)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 67 (29.9%)
+ (Unknown) 36 (16.1%)
+ Xilinx 31 (13.8%)
+ DENX Software Engineering 25 (11.2%)
+ Bootlin 22 (9.8%)
+ NXP 16 (7.1%)
+ ST Microelectronics 10 (4.5%)
+ Konsulko Group 4 (1.8%)
+ Marvell 4 (1.8%)
+ Texas Instruments 3 (1.3%)
+ Socionext Inc. 2 (0.9%)
+ Collabora Ltd. 2 (0.9%)
+ Amarula Solutions 1 (0.4%)
+ Linux Foundation 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 130)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65 (50.0%)
+ Texas Instruments 11 (8.5%)
+ NXP 10 (7.7%)
+ ST Microelectronics 5 (3.8%)
+ Xilinx 4 (3.1%)
+ DENX Software Engineering 4 (3.1%)
+ Linaro 4 (3.1%)
+ Marvell 3 (2.3%)
+ Intel 3 (2.3%)
+ Socionext Inc. 2 (1.5%)
+ ARM 2 (1.5%)
+ Rockchip 2 (1.5%)
+ General Electric 2 (1.5%)
+ Bootlin 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Collabora Ltd. 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ AMD 1 (0.8%)
+ Guntermann & Drunck 1 (0.8%)
+ BayLibre SAS 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ NVidia 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Phytec 1 (0.8%)
+ Samsung 1 (0.8%)
+ Bosch 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.07.rst b/doc/develop/statistics/u-boot-stats-v2018.07.rst
new file mode 100644
index 0000000..c17b214
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.07.rst
@@ -0,0 +1,686 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.07
+======================================
+
+* Processed 1055 csets from 141 developers
+
+* 30 employers found
+
+* A total of 88664 lines added, 54500 removed (delta 34164)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 89 (8.4%)
+ Michal Simek 54 (5.1%)
+ Bin Meng 52 (4.9%)
+ Jagan Teki 51 (4.8%)
+ Chris Packham 48 (4.5%)
+ Lukasz Majewski 48 (4.5%)
+ Heinrich Schuchardt 43 (4.1%)
+ Miquel Raynal 32 (3.0%)
+ Simon Glass 28 (2.7%)
+ Alex Kiernan 28 (2.7%)
+ Masahiro Yamada 25 (2.4%)
+ Ramon Fried 25 (2.4%)
+ Tom Rini 24 (2.3%)
+ Alexander Graf 22 (2.1%)
+ Marek Behun 21 (2.0%)
+ Patrice Chotard 19 (1.8%)
+ Patrick Delaunay 19 (1.8%)
+ Siva Durga Prasad Paladugu 18 (1.7%)
+ Álvaro Fernández Rojas 17 (1.6%)
+ Alexey Brodkin 16 (1.5%)
+ Rick Chen 16 (1.5%)
+ Stefan Agner 15 (1.4%)
+ Vasily Khoruzhick 11 (1.0%)
+ Neil Armstrong 11 (1.0%)
+ Tuomas Tynkkynen 11 (1.0%)
+ Marcel Ziswiler 11 (1.0%)
+ Mario Six 10 (0.9%)
+ Eugen Hristev 10 (0.9%)
+ Ley Foon Tan 9 (0.9%)
+ Bryan O'Donoghue 9 (0.9%)
+ Igor Opaniuk 8 (0.8%)
+ Jaehoon Chung 8 (0.8%)
+ Adam Ford 7 (0.7%)
+ Seung-Woo Kim 7 (0.7%)
+ Tien Fong Chee 7 (0.7%)
+ Ivan Gorinov 6 (0.6%)
+ Fabio Estevam 6 (0.6%)
+ Kunihiko Hayashi 6 (0.6%)
+ Chen-Yu Tsai 6 (0.6%)
+ Ian Ray 6 (0.6%)
+ Lokesh Vutla 6 (0.6%)
+ Peter Robinson 5 (0.5%)
+ Hannes Schmelzer 5 (0.5%)
+ Ashish Kumar 5 (0.5%)
+ Jon Nettleton 5 (0.5%)
+ David Lechner 5 (0.5%)
+ Nishanth Menon 4 (0.4%)
+ Jörg Krause 4 (0.4%)
+ Matwey V. Kornilov 4 (0.4%)
+ Eugeniu Rosca 4 (0.4%)
+ Christophe Kerello 4 (0.4%)
+ Ludovic Desroches 4 (0.4%)
+ Patrick Bruenn 4 (0.4%)
+ Andre Przywara 3 (0.3%)
+ Emmanuel Vadot 3 (0.3%)
+ Rabeeh Khoury 3 (0.3%)
+ Baruch Siach 3 (0.3%)
+ Joe Hershberger 3 (0.3%)
+ Eugeniy Paltsev 3 (0.3%)
+ Christian Gmeiner 3 (0.3%)
+ Jagdish Gediya 3 (0.3%)
+ Vagrant Cascadian 3 (0.3%)
+ Ken Ma 3 (0.3%)
+ Mugunthan V N 3 (0.3%)
+ Fabrice Gasnier 3 (0.3%)
+ Praneeth Bajjuri 3 (0.3%)
+ Jassi Brar 3 (0.3%)
+ Philipp Tomsich 2 (0.2%)
+ Guillaume Gardet 2 (0.2%)
+ Michael Trimarchi 2 (0.2%)
+ Vipul Kumar 2 (0.2%)
+ Beniamino Galvani 2 (0.2%)
+ Yevgeny Popovych 2 (0.2%)
+ Mans Rullgard 2 (0.2%)
+ Hauke Mehrtens 2 (0.2%)
+ Tomi Valkeinen 2 (0.2%)
+ Bhaskar Upadhaya 2 (0.2%)
+ Sam Protsenko 2 (0.2%)
+ Michael Walle 2 (0.2%)
+ Takeshi Kihara 2 (0.2%)
+ Rob Herring 2 (0.2%)
+ Rajan Vaja 2 (0.2%)
+ Konstantin Porotchkin 2 (0.2%)
+ Nicolas Ferre 2 (0.2%)
+ Magnus Lilja 2 (0.2%)
+ Nandor Han 2 (0.2%)
+ Jonathan Gray 2 (0.2%)
+ Hou Zhiqiang 2 (0.2%)
+ Lothar Felten 1 (0.1%)
+ Stefan Roese 1 (0.1%)
+ Zeng Tao 1 (0.1%)
+ Andrew Thomas 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Trent Piepho 1 (0.1%)
+ Andrew F. Davis 1 (0.1%)
+ Otavio Salvador 1 (0.1%)
+ Ye Li 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ Quentin Schulz 1 (0.1%)
+ Radu Bulie 1 (0.1%)
+ Leonid Iziumtsev 1 (0.1%)
+ Vicentiu Galanopulo 1 (0.1%)
+ Shyam Saini 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Dennis Gilmore 1 (0.1%)
+ Vinitha V Pillai 1 (0.1%)
+ Priyanka Jain 1 (0.1%)
+ Ran Wang 1 (0.1%)
+ Riku Voipio 1 (0.1%)
+ Carlo Caione 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Yoshihiro Shimoda 1 (0.1%)
+ Ezequiel Garcia 1 (0.1%)
+ Ibai Erkiaga 1 (0.1%)
+ Alex Deymo 1 (0.1%)
+ Matthias Blankertz 1 (0.1%)
+ David Sniatkiwicz 1 (0.1%)
+ Evan Wang 1 (0.1%)
+ Jun Nie 1 (0.1%)
+ Kelvin Cheung 1 (0.1%)
+ Radoslaw Pietrzyk 1 (0.1%)
+ Maxime Ripard 1 (0.1%)
+ Ladislav Michl 1 (0.1%)
+ Ben Kalo 1 (0.1%)
+ Sebastian Reichel 1 (0.1%)
+ Kimmo Rautkoski 1 (0.1%)
+ Kever Yang 1 (0.1%)
+ Lothar Waßmann 1 (0.1%)
+ zachary 1 (0.1%)
+ Nitin Jain 1 (0.1%)
+ Sanchayan Maity 1 (0.1%)
+ Yogesh Gaur 1 (0.1%)
+ Sumit Garg 1 (0.1%)
+ Takuma Ueba 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Sriram Dash 1 (0.1%)
+ Rajat Srivastava 1 (0.1%)
+ Clément Péron 1 (0.1%)
+ Grygorii Strashko 1 (0.1%)
+ Michalis Pappas 1 (0.1%)
+ Andy Yan 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 32311 (27.3%)
+ Chris Packham 14297 (12.1%)
+ Eugeniu Rosca 10343 (8.7%)
+ Igor Opaniuk 8197 (6.9%)
+ Tom Rini 5556 (4.7%)
+ Miquel Raynal 3987 (3.4%)
+ Jagan Teki 3308 (2.8%)
+ Alex Kiernan 2702 (2.3%)
+ Alexander Graf 2190 (1.9%)
+ Neil Armstrong 1978 (1.7%)
+ Tuomas Tynkkynen 1967 (1.7%)
+ Marek Behun 1877 (1.6%)
+ Ley Foon Tan 1783 (1.5%)
+ Heinrich Schuchardt 1657 (1.4%)
+ Siva Durga Prasad Paladugu 1638 (1.4%)
+ Lukasz Majewski 1526 (1.3%)
+ Patrick Delaunay 1420 (1.2%)
+ Michal Simek 1346 (1.1%)
+ Bin Meng 1255 (1.1%)
+ Tien Fong Chee 1240 (1.0%)
+ Patrice Chotard 1038 (0.9%)
+ Simon Glass 1035 (0.9%)
+ Kunihiko Hayashi 1031 (0.9%)
+ Alexey Brodkin 958 (0.8%)
+ Stefan Agner 890 (0.8%)
+ Dennis Gilmore 886 (0.7%)
+ Christophe Kerello 695 (0.6%)
+ Rob Herring 642 (0.5%)
+ Ramon Fried 632 (0.5%)
+ Mario Six 617 (0.5%)
+ Beniamino Galvani 582 (0.5%)
+ Masahiro Yamada 545 (0.5%)
+ Bhaskar Upadhaya 471 (0.4%)
+ Ezequiel Garcia 470 (0.4%)
+ Vasily Khoruzhick 392 (0.3%)
+ Lokesh Vutla 380 (0.3%)
+ Jaehoon Chung 362 (0.3%)
+ Marcel Ziswiler 354 (0.3%)
+ Rick Chen 322 (0.3%)
+ Álvaro Fernández Rojas 294 (0.2%)
+ Hauke Mehrtens 290 (0.2%)
+ Chen-Yu Tsai 245 (0.2%)
+ Adam Ford 229 (0.2%)
+ Lothar Felten 223 (0.2%)
+ Radu Bulie 204 (0.2%)
+ Jon Nettleton 194 (0.2%)
+ Fabrice Gasnier 192 (0.2%)
+ Eugeniy Paltsev 186 (0.2%)
+ Ibai Erkiaga 173 (0.1%)
+ Ivan Gorinov 148 (0.1%)
+ Guillaume Gardet 146 (0.1%)
+ David Lechner 134 (0.1%)
+ Ian Ray 132 (0.1%)
+ Yoshihiro Shimoda 131 (0.1%)
+ Jassi Brar 124 (0.1%)
+ Vinitha V Pillai 116 (0.1%)
+ Mugunthan V N 108 (0.1%)
+ Mans Rullgard 91 (0.1%)
+ Sumit Garg 91 (0.1%)
+ Michalis Pappas 87 (0.1%)
+ Konstantin Porotchkin 79 (0.1%)
+ Nitin Jain 74 (0.1%)
+ Andre Przywara 71 (0.1%)
+ Seung-Woo Kim 61 (0.1%)
+ Sam Protsenko 58 (0.0%)
+ Patrick Bruenn 56 (0.0%)
+ Kelvin Cheung 53 (0.0%)
+ Vicentiu Galanopulo 52 (0.0%)
+ Jörg Krause 51 (0.0%)
+ Alex Deymo 49 (0.0%)
+ Ludovic Desroches 48 (0.0%)
+ Christian Gmeiner 47 (0.0%)
+ Takeshi Kihara 44 (0.0%)
+ Magnus Lilja 42 (0.0%)
+ Ye Li 42 (0.0%)
+ Matwey V. Kornilov 41 (0.0%)
+ Nandor Han 39 (0.0%)
+ Ashish Kumar 38 (0.0%)
+ Lothar Waßmann 38 (0.0%)
+ Bryan O'Donoghue 37 (0.0%)
+ Baruch Siach 37 (0.0%)
+ Eugen Hristev 34 (0.0%)
+ Peter Robinson 34 (0.0%)
+ Jagdish Gediya 34 (0.0%)
+ Sriram Dash 34 (0.0%)
+ Ken Ma 33 (0.0%)
+ Jun Nie 32 (0.0%)
+ Fabio Estevam 30 (0.0%)
+ Daniel Schwierzeck 29 (0.0%)
+ Radoslaw Pietrzyk 29 (0.0%)
+ zachary 28 (0.0%)
+ Nishanth Menon 25 (0.0%)
+ Philipp Tomsich 25 (0.0%)
+ Yevgeny Popovych 23 (0.0%)
+ Michael Walle 22 (0.0%)
+ Hannes Schmelzer 21 (0.0%)
+ Rajat Srivastava 21 (0.0%)
+ Joe Hershberger 18 (0.0%)
+ Rajan Vaja 18 (0.0%)
+ Yogesh Gaur 17 (0.0%)
+ Evan Wang 16 (0.0%)
+ Clément Péron 13 (0.0%)
+ Jonathan Gray 12 (0.0%)
+ Hou Zhiqiang 12 (0.0%)
+ Maxime Ripard 12 (0.0%)
+ Andy Yan 11 (0.0%)
+ Emmanuel Vadot 10 (0.0%)
+ Shyam Saini 10 (0.0%)
+ Quentin Schulz 9 (0.0%)
+ Ladislav Michl 9 (0.0%)
+ Tomi Valkeinen 8 (0.0%)
+ Nicolas Ferre 8 (0.0%)
+ David Sniatkiwicz 8 (0.0%)
+ Luca Ceresoli 7 (0.0%)
+ Ran Wang 7 (0.0%)
+ Takuma Ueba 7 (0.0%)
+ Vagrant Cascadian 6 (0.0%)
+ Stefan Roese 6 (0.0%)
+ Kever Yang 6 (0.0%)
+ Rabeeh Khoury 5 (0.0%)
+ Praneeth Bajjuri 5 (0.0%)
+ Ruchika Gupta 5 (0.0%)
+ Michael Trimarchi 4 (0.0%)
+ Vipul Kumar 4 (0.0%)
+ Trent Piepho 4 (0.0%)
+ Matthias Blankertz 4 (0.0%)
+ Leonid Iziumtsev 3 (0.0%)
+ Kimmo Rautkoski 3 (0.0%)
+ Ben Kalo 2 (0.0%)
+ Sanchayan Maity 2 (0.0%)
+ Zeng Tao 1 (0.0%)
+ Andrew Thomas 1 (0.0%)
+ Stefano Babic 1 (0.0%)
+ Andrew F. Davis 1 (0.0%)
+ Otavio Salvador 1 (0.0%)
+ Andy Shevchenko 1 (0.0%)
+ Priyanka Jain 1 (0.0%)
+ Riku Voipio 1 (0.0%)
+ Carlo Caione 1 (0.0%)
+ Sebastian Reichel 1 (0.0%)
+ Grygorii Strashko 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Eugeniu Rosca 8641 (15.9%)
+ Tom Rini 4271 (7.8%)
+ Tuomas Tynkkynen 1834 (3.4%)
+ Jaehoon Chung 314 (0.6%)
+ Ian Ray 102 (0.2%)
+ Guillaume Gardet 98 (0.2%)
+ Peter Robinson 25 (0.0%)
+ Sam Protsenko 20 (0.0%)
+ David Lechner 15 (0.0%)
+ Maxime Ripard 12 (0.0%)
+ David Sniatkiwicz 8 (0.0%)
+ Philipp Tomsich 7 (0.0%)
+ Andy Yan 7 (0.0%)
+ Bryan O'Donoghue 5 (0.0%)
+ Hannes Schmelzer 2 (0.0%)
+ Ladislav Michl 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 280)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 68 (24.3%)
+ Alexander Graf 41 (14.6%)
+ Michal Simek 33 (11.8%)
+ Patrice Chotard 17 (6.1%)
+ Tom Warren 13 (4.6%)
+ Tom Rini 12 (4.3%)
+ Sebastian Reichel 8 (2.9%)
+ Baruch Siach 8 (2.9%)
+ Bin Meng 6 (2.1%)
+ Chin Liang See 5 (1.8%)
+ Simone CIANNI 5 (1.8%)
+ Raffaele RECALCATI 5 (1.8%)
+ Nandor Han 5 (1.8%)
+ Masahiro Yamada 5 (1.8%)
+ Christophe Kerello 4 (1.4%)
+ Eugen Hristev 3 (1.1%)
+ Alexey Brodkin 3 (1.1%)
+ Eugeniu Rosca 2 (0.7%)
+ Evan Wang 2 (0.7%)
+ Otavio Salvador 2 (0.7%)
+ Oleksandr Tymoshenko 2 (0.7%)
+ Minkyu Kang 2 (0.7%)
+ Marek Vasut 2 (0.7%)
+ Patrick Delaunay 2 (0.7%)
+ Neil Armstrong 2 (0.7%)
+ Jagan Teki 2 (0.7%)
+ Priyanka Jain 1 (0.4%)
+ Ioan-Adrian Ratiu 1 (0.4%)
+ Jocelyn Bohr 1 (0.4%)
+ Richard Weinberger 1 (0.4%)
+ Amelie Delaunay 1 (0.4%)
+ Prabhakar Kushwaha 1 (0.4%)
+ Yoshihisa Morizumi 1 (0.4%)
+ Jagdish Gediya 1 (0.4%)
+ Fabio Estevam 1 (0.4%)
+ Rabeeh Khoury 1 (0.4%)
+ Kever Yang 1 (0.4%)
+ Daniel Schwierzeck 1 (0.4%)
+ Ken Ma 1 (0.4%)
+ Takeshi Kihara 1 (0.4%)
+ Alex Deymo 1 (0.4%)
+ Vinitha V Pillai 1 (0.4%)
+ Yoshihiro Shimoda 1 (0.4%)
+ Lokesh Vutla 1 (0.4%)
+ Simon Glass 1 (0.4%)
+ Marek Behun 1 (0.4%)
+ Siva Durga Prasad Paladugu 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 437)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 182 (41.6%)
+ Tom Rini 53 (12.1%)
+ Stefan Roese 45 (10.3%)
+ Jagan Teki 36 (8.2%)
+ York Sun 19 (4.3%)
+ Daniel Schwierzeck 17 (3.9%)
+ Bin Meng 9 (2.1%)
+ Heinrich Schuchardt 9 (2.1%)
+ Alexander Graf 7 (1.6%)
+ Masahiro Yamada 7 (1.6%)
+ Fabio Estevam 7 (1.6%)
+ Joe Hershberger 5 (1.1%)
+ Philipp Tomsich 3 (0.7%)
+ Alex Kiernan 3 (0.7%)
+ Michal Simek 2 (0.5%)
+ Marek Vasut 2 (0.5%)
+ Sam Protsenko 2 (0.5%)
+ Peng Fan 2 (0.5%)
+ Heiko Schocher 2 (0.5%)
+ Dinh Nguyen 2 (0.5%)
+ Anand Moon 2 (0.5%)
+ Jernej Skrabec 2 (0.5%)
+ Stephen Warren 2 (0.5%)
+ Stefano Babic 2 (0.5%)
+ Lukasz Majewski 2 (0.5%)
+ Chris Packham 2 (0.5%)
+ Minkyu Kang 1 (0.2%)
+ Jocelyn Bohr 1 (0.2%)
+ Prabhakar Kushwaha 1 (0.2%)
+ Kever Yang 1 (0.2%)
+ Marek Behun 1 (0.2%)
+ Jaehoon Chung 1 (0.2%)
+ Bin Chen 1 (0.2%)
+ Anatolij Gustschin 1 (0.2%)
+ Felix Brack 1 (0.2%)
+ Chih-Mao Chen 1 (0.2%)
+ CITOOLS 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 38)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 6 (15.8%)
+ Petr Vorel 3 (7.9%)
+ Jagan Teki 2 (5.3%)
+ Bin Meng 2 (5.3%)
+ Fabio Estevam 2 (5.3%)
+ Marek Vasut 2 (5.3%)
+ Chris Packham 2 (5.3%)
+ Guillaume Gardet 2 (5.3%)
+ Peter Robinson 2 (5.3%)
+ Andreas Färber 2 (5.3%)
+ Matthias Blankertz 2 (5.3%)
+ Heinrich Schuchardt 1 (2.6%)
+ Masahiro Yamada 1 (2.6%)
+ Alex Kiernan 1 (2.6%)
+ Felix Brack 1 (2.6%)
+ Patrice Chotard 1 (2.6%)
+ Michael Walle 1 (2.6%)
+ Denis Pynkin 1 (2.6%)
+ Andy Shevchenko 1 (2.6%)
+ Lothar Waßmann 1 (2.6%)
+ Mario Six 1 (2.6%)
+ Ley Foon Tan 1 (2.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 38)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andre Przywara 6 (15.8%)
+ Lokesh Vutla 5 (13.2%)
+ Bin Meng 4 (10.5%)
+ Eugeniu Rosca 3 (7.9%)
+ Rabeeh Khoury 3 (7.9%)
+ Alexander Graf 2 (5.3%)
+ Nishanth Menon 2 (5.3%)
+ Michal Simek 1 (2.6%)
+ Guillaume Gardet 1 (2.6%)
+ Alex Kiernan 1 (2.6%)
+ Patrice Chotard 1 (2.6%)
+ Michael Walle 1 (2.6%)
+ Lothar Waßmann 1 (2.6%)
+ Simon Glass 1 (2.6%)
+ Sam Protsenko 1 (2.6%)
+ Siva Durga Prasad Paladugu 1 (2.6%)
+ Andrew Thomas 1 (2.6%)
+ Jonathan Gray 1 (2.6%)
+ Ivan Gorinov 1 (2.6%)
+ Tien Fong Chee 1 (2.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 1 (7.7%)
+ Simon Glass 1 (7.7%)
+ Petr Vorel 1 (7.7%)
+ Marek Vasut 1 (7.7%)
+ Andreas Färber 1 (7.7%)
+ Heinrich Schuchardt 1 (7.7%)
+ Masahiro Yamada 1 (7.7%)
+ Jaehoon Chung 1 (7.7%)
+ Tuomas Tynkkynen 1 (7.7%)
+ Fabian Vogt 1 (7.7%)
+ Udo Maslo 1 (7.7%)
+ Jan Leonhardt 1 (7.7%)
+ Kunihiko Hayashi 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 13)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 4 (30.8%)
+ Heinrich Schuchardt 1 (7.7%)
+ Masahiro Yamada 1 (7.7%)
+ Bin Meng 1 (7.7%)
+ Eugeniu Rosca 1 (7.7%)
+ Michal Simek 1 (7.7%)
+ Siva Durga Prasad Paladugu 1 (7.7%)
+ Tom Rini 1 (7.7%)
+ Joe Hershberger 1 (7.7%)
+ Seung-Woo Kim 1 (7.7%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 448 (42.5%)
+ DENX Software Engineering 139 (13.2%)
+ AMD 54 (5.1%)
+ Amarula Solutions 51 (4.8%)
+ ST Microelectronics 45 (4.3%)
+ Bootlin 34 (3.2%)
+ Socionext Inc. 31 (2.9%)
+ Google, Inc. 29 (2.7%)
+ NXP 27 (2.6%)
+ Toradex 27 (2.6%)
+ Konsulko Group 24 (2.3%)
+ Xilinx 24 (2.3%)
+ Intel 23 (2.2%)
+ Texas Instruments 20 (1.9%)
+ Samsung 15 (1.4%)
+ BayLibre SAS 11 (1.0%)
+ Guntermann & Drunck 10 (0.9%)
+ General Electric 8 (0.8%)
+ Linaro 8 (0.8%)
+ Marvell 8 (0.8%)
+ ARM 3 (0.3%)
+ Debian.org 3 (0.3%)
+ National Instruments 3 (0.3%)
+ Renesas Electronics 3 (0.3%)
+ Rockchip 2 (0.2%)
+ Fujitsu 1 (0.1%)
+ Collabora Ltd. 1 (0.1%)
+ FastMail.FM 1 (0.1%)
+ Oracle 1 (0.1%)
+ O.S. Systems 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 52177 (44.1%)
+ DENX Software Engineering 33844 (28.6%)
+ Konsulko Group 5556 (4.7%)
+ Bootlin 4008 (3.4%)
+ ST Microelectronics 3345 (2.8%)
+ Amarula Solutions 3287 (2.8%)
+ Intel 3172 (2.7%)
+ BayLibre SAS 1978 (1.7%)
+ Xilinx 1907 (1.6%)
+ Socionext Inc. 1576 (1.3%)
+ AMD 1346 (1.1%)
+ Toradex 1246 (1.1%)
+ NXP 1171 (1.0%)
+ Google, Inc. 1084 (0.9%)
+ Guntermann & Drunck 617 (0.5%)
+ Texas Instruments 528 (0.4%)
+ Samsung 423 (0.4%)
+ Linaro 227 (0.2%)
+ Renesas Electronics 175 (0.1%)
+ General Electric 171 (0.1%)
+ Marvell 164 (0.1%)
+ FastMail.FM 87 (0.1%)
+ ARM 71 (0.1%)
+ National Instruments 18 (0.0%)
+ Rockchip 17 (0.0%)
+ Fujitsu 7 (0.0%)
+ Debian.org 6 (0.0%)
+ Collabora Ltd. 1 (0.0%)
+ Oracle 1 (0.0%)
+ O.S. Systems 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 280)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 68 (24.3%)
+ (Unknown) 41 (14.6%)
+ SUSE 41 (14.6%)
+ Xilinx 33 (11.8%)
+ ST Microelectronics 24 (8.6%)
+ NVidia 13 (4.6%)
+ Konsulko Group 12 (4.3%)
+ Collabora Ltd. 8 (2.9%)
+ Intel 5 (1.8%)
+ Socionext Inc. 5 (1.8%)
+ NXP 5 (1.8%)
+ General Electric 5 (1.8%)
+ Google, Inc. 3 (1.1%)
+ Marvell 3 (1.1%)
+ Amarula Solutions 2 (0.7%)
+ BayLibre SAS 2 (0.7%)
+ Samsung 2 (0.7%)
+ Renesas Electronics 2 (0.7%)
+ O.S. Systems 2 (0.7%)
+ Texas Instruments 1 (0.4%)
+ National Instruments 1 (0.4%)
+ Rockchip 1 (0.4%)
+ Fujitsu 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 144)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 62 (43.1%)
+ NXP 16 (11.1%)
+ Texas Instruments 7 (4.9%)
+ Xilinx 5 (3.5%)
+ Marvell 5 (3.5%)
+ Linaro 5 (3.5%)
+ DENX Software Engineering 4 (2.8%)
+ ST Microelectronics 4 (2.8%)
+ Intel 4 (2.8%)
+ Bootlin 3 (2.1%)
+ Toradex 3 (2.1%)
+ Socionext Inc. 2 (1.4%)
+ General Electric 2 (1.4%)
+ Google, Inc. 2 (1.4%)
+ Amarula Solutions 2 (1.4%)
+ Samsung 2 (1.4%)
+ Renesas Electronics 2 (1.4%)
+ Rockchip 2 (1.4%)
+ Konsulko Group 1 (0.7%)
+ Collabora Ltd. 1 (0.7%)
+ BayLibre SAS 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Fujitsu 1 (0.7%)
+ AMD 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ FastMail.FM 1 (0.7%)
+ ARM 1 (0.7%)
+ Debian.org 1 (0.7%)
+ Oracle 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.09.rst b/doc/develop/statistics/u-boot-stats-v2018.09.rst
new file mode 100644
index 0000000..2a5a979
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.09.rst
@@ -0,0 +1,678 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.09
+======================================
+
+* Processed 983 csets from 138 developers
+
+* 32 employers found
+
+* A total of 62059 lines added, 23685 removed (delta 38374)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 75 (7.6%)
+ Michal Simek 66 (6.7%)
+ Heinrich Schuchardt 54 (5.5%)
+ Marek Vasut 49 (5.0%)
+ Bin Meng 43 (4.4%)
+ Adam Ford 38 (3.9%)
+ Tom Rini 29 (3.0%)
+ Ley Foon Tan 27 (2.7%)
+ Patrice Chotard 25 (2.5%)
+ Joe Hershberger 24 (2.4%)
+ Patrick Delaunay 20 (2.0%)
+ Ramon Fried 17 (1.7%)
+ Alexander Graf 16 (1.6%)
+ Jagan Teki 16 (1.6%)
+ Stefan Agner 15 (1.5%)
+ Icenowy Zheng 15 (1.5%)
+ York Sun 13 (1.3%)
+ Mario Six 13 (1.3%)
+ Baruch Siach 13 (1.3%)
+ Hannes Schmelzer 13 (1.3%)
+ Masahiro Yamada 12 (1.2%)
+ Siva Durga Prasad Paladugu 12 (1.2%)
+ Lukasz Majewski 11 (1.1%)
+ Fabio Estevam 10 (1.0%)
+ Alex Kiernan 10 (1.0%)
+ Manivannan Sadhasivam 10 (1.0%)
+ Miquel Raynal 10 (1.0%)
+ Otavio Salvador 9 (0.9%)
+ Ye Li 9 (0.9%)
+ Simon Goldschmidt 9 (0.9%)
+ Eugeniu Rosca 9 (0.9%)
+ Stephen Warren 9 (0.9%)
+ Andre Przywara 9 (0.9%)
+ Sam Protsenko 8 (0.8%)
+ Peng Fan 8 (0.8%)
+ Laurentiu Tudor 8 (0.8%)
+ Chris Packham 8 (0.8%)
+ Vipul Kumar 8 (0.8%)
+ Jean-Jacques Hiblot 7 (0.7%)
+ Alberto Panizzo 7 (0.7%)
+ Luis Araneda 7 (0.7%)
+ Jon Nettleton 7 (0.7%)
+ Grygorii Strashko 7 (0.7%)
+ Ludwig Zenz 7 (0.7%)
+ Quentin Schulz 6 (0.6%)
+ Lothar Felten 6 (0.6%)
+ Paul Burton 6 (0.6%)
+ Eugeniy Paltsev 5 (0.5%)
+ Mark Kettenis 5 (0.5%)
+ Fabrice Gasnier 5 (0.5%)
+ Philippe Reynes 5 (0.5%)
+ Michael Trimarchi 5 (0.5%)
+ Alexey Brodkin 4 (0.4%)
+ Philipp Tomsich 4 (0.4%)
+ Thomas Fitzsimmons 4 (0.4%)
+ Ran Wang 4 (0.4%)
+ Vagrant Cascadian 4 (0.4%)
+ Adam Sampson 4 (0.4%)
+ Yuantian Tang 4 (0.4%)
+ Christophe Kerello 4 (0.4%)
+ Yaniv Levinsky 4 (0.4%)
+ Shreenidhi Shedi 4 (0.4%)
+ Anson Huang 3 (0.3%)
+ Igor Opaniuk 3 (0.3%)
+ Jagdish Gediya 3 (0.3%)
+ Vinitha V Pillai 3 (0.3%)
+ Minkyu Kang 3 (0.3%)
+ Neil Armstrong 3 (0.3%)
+ Carlo Caione 3 (0.3%)
+ Loic Devulder 3 (0.3%)
+ Ivan Gorinov 3 (0.3%)
+ Tuomas Tynkkynen 2 (0.2%)
+ Chen-Yu Tsai 2 (0.2%)
+ Stefano Babic 2 (0.2%)
+ Martin Kaiser 2 (0.2%)
+ AKASHI Takahiro 2 (0.2%)
+ Christian Gmeiner 2 (0.2%)
+ Pankaj Bansal 2 (0.2%)
+ Willy Tarreau 2 (0.2%)
+ Mylène Josserand 2 (0.2%)
+ Guillaume GARDET 2 (0.2%)
+ Ashish Kumar 2 (0.2%)
+ Klaus Goger 2 (0.2%)
+ Alexander Kochetkov 2 (0.2%)
+ Teddy Reed 2 (0.2%)
+ Fabio Berton 1 (0.1%)
+ Jasper kcoding 1 (0.1%)
+ Kever Yang 1 (0.1%)
+ Praneeth Bajjuri 1 (0.1%)
+ Christian Amann 1 (0.1%)
+ Neil Stainton 1 (0.1%)
+ Beniamino Galvani 1 (0.1%)
+ Ievgen Maliarenko 1 (0.1%)
+ Tom Warren 1 (0.1%)
+ Nicolas Chauvet 1 (0.1%)
+ Pierre-Jean Texier 1 (0.1%)
+ Andreas Dannenberg 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Derald D. Woods 1 (0.1%)
+ Eugen Hristev 1 (0.1%)
+ Caliph Nomble 1 (0.1%)
+ Rob Bracero 1 (0.1%)
+ Darwin Dingel 1 (0.1%)
+ Troy Kisky 1 (0.1%)
+ Seung-Woo Kim 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Brendan Shanks 1 (0.1%)
+ Vladimir Vid 1 (0.1%)
+ Stefan Roese 1 (0.1%)
+ Koen Kooi 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Clément Laigle 1 (0.1%)
+ Yannick Fertré 1 (0.1%)
+ Simon Baatz 1 (0.1%)
+ Nicholas Faustini 1 (0.1%)
+ Jens Wiklander 1 (0.1%)
+ Bibek Basu 1 (0.1%)
+ Murali Karicheri 1 (0.1%)
+ Andrew Thomas 1 (0.1%)
+ Jeremy Gebben 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Breno Lima 1 (0.1%)
+ Paulo Zaneti 1 (0.1%)
+ Zubair Lutfullah Kakakhel 1 (0.1%)
+ Kay Potthoff 1 (0.1%)
+ Rafał Miłecki 1 (0.1%)
+ Holger Dengler 1 (0.1%)
+ Mark Jonas 1 (0.1%)
+ Uri Mashiach 1 (0.1%)
+ Jakob Unterwurzacher 1 (0.1%)
+ Marek Behún 1 (0.1%)
+ Thomas McKahan 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ Gao Pan 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Ben Whitten 1 (0.1%)
+ Michael Pratt 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mario Six 9524 (13.2%)
+ Tom Rini 8252 (11.4%)
+ Simon Glass 5942 (8.2%)
+ Andre Przywara 3869 (5.4%)
+ Adam Ford 3850 (5.3%)
+ Jagan Teki 3167 (4.4%)
+ Icenowy Zheng 2387 (3.3%)
+ Siva Durga Prasad Paladugu 2374 (3.3%)
+ Patrick Delaunay 2317 (3.2%)
+ Ley Foon Tan 2240 (3.1%)
+ Michal Simek 1880 (2.6%)
+ Marek Vasut 1831 (2.5%)
+ Stefan Agner 1772 (2.5%)
+ Hannes Schmelzer 1726 (2.4%)
+ Ramon Fried 1468 (2.0%)
+ Heinrich Schuchardt 1458 (2.0%)
+ Ye Li 1412 (2.0%)
+ Bin Meng 1374 (1.9%)
+ Thomas Fitzsimmons 1353 (1.9%)
+ Manivannan Sadhasivam 955 (1.3%)
+ Chris Packham 954 (1.3%)
+ Fabrice Gasnier 727 (1.0%)
+ Anson Huang 639 (0.9%)
+ Jean-Jacques Hiblot 584 (0.8%)
+ Laurentiu Tudor 489 (0.7%)
+ Luis Araneda 463 (0.6%)
+ Stefan Mavrodiev 462 (0.6%)
+ Joe Hershberger 428 (0.6%)
+ Jon Nettleton 412 (0.6%)
+ Eugeniy Paltsev 396 (0.5%)
+ York Sun 386 (0.5%)
+ Neil Armstrong 361 (0.5%)
+ Sam Protsenko 356 (0.5%)
+ Alexander Graf 324 (0.4%)
+ Baruch Siach 299 (0.4%)
+ Philippe Reynes 290 (0.4%)
+ Fabio Estevam 273 (0.4%)
+ Vipul Kumar 261 (0.4%)
+ Patrice Chotard 253 (0.4%)
+ Thomas McKahan 252 (0.3%)
+ Alberto Panizzo 250 (0.3%)
+ Michael Pratt 224 (0.3%)
+ Ludwig Zenz 223 (0.3%)
+ Masahiro Yamada 217 (0.3%)
+ Shreenidhi Shedi 210 (0.3%)
+ Stephen Warren 200 (0.3%)
+ Yuantian Tang 181 (0.3%)
+ Ran Wang 179 (0.2%)
+ Alex Kiernan 178 (0.2%)
+ Daniel Schwierzeck 166 (0.2%)
+ Quentin Schulz 147 (0.2%)
+ Lothar Felten 138 (0.2%)
+ Miquel Raynal 133 (0.2%)
+ Otavio Salvador 123 (0.2%)
+ Simon Goldschmidt 118 (0.2%)
+ Peng Fan 108 (0.1%)
+ Klaus Goger 108 (0.1%)
+ Jagdish Gediya 98 (0.1%)
+ Alexander Kochetkov 95 (0.1%)
+ Rob Bracero 78 (0.1%)
+ Philipp Tomsich 77 (0.1%)
+ Grygorii Strashko 71 (0.1%)
+ Luca Ceresoli 60 (0.1%)
+ Lukasz Majewski 55 (0.1%)
+ Teddy Reed 55 (0.1%)
+ Eugeniu Rosca 52 (0.1%)
+ Michael Trimarchi 51 (0.1%)
+ Igor Opaniuk 50 (0.1%)
+ Bibek Basu 50 (0.1%)
+ Yaniv Levinsky 48 (0.1%)
+ Mark Kettenis 45 (0.1%)
+ Christophe Kerello 41 (0.1%)
+ Darwin Dingel 39 (0.1%)
+ Paul Burton 30 (0.0%)
+ Yannick Fertré 29 (0.0%)
+ Minkyu Kang 25 (0.0%)
+ Vagrant Cascadian 24 (0.0%)
+ Carlo Caione 24 (0.0%)
+ Alexey Brodkin 23 (0.0%)
+ Ashish Kumar 22 (0.0%)
+ Koen Kooi 20 (0.0%)
+ Nicholas Faustini 19 (0.0%)
+ Tuomas Tynkkynen 18 (0.0%)
+ Kever Yang 18 (0.0%)
+ Ivan Gorinov 17 (0.0%)
+ Jens Wiklander 15 (0.0%)
+ Chen-Yu Tsai 14 (0.0%)
+ Murali Karicheri 13 (0.0%)
+ Beniamino Galvani 12 (0.0%)
+ Caliph Nomble 12 (0.0%)
+ Ben Whitten 12 (0.0%)
+ Loic Devulder 11 (0.0%)
+ Nicolas Chauvet 10 (0.0%)
+ Gao Pan 10 (0.0%)
+ Holger Dengler 9 (0.0%)
+ Martin Kaiser 8 (0.0%)
+ Jeremy Gebben 8 (0.0%)
+ Rafał Miłecki 8 (0.0%)
+ Mark Jonas 8 (0.0%)
+ Adam Sampson 7 (0.0%)
+ Derald D. Woods 7 (0.0%)
+ Uri Mashiach 7 (0.0%)
+ Vinitha V Pillai 6 (0.0%)
+ Pankaj Bansal 6 (0.0%)
+ Guillaume GARDET 6 (0.0%)
+ Tom Warren 6 (0.0%)
+ Eugen Hristev 6 (0.0%)
+ Joakim Tjernlund 6 (0.0%)
+ Stefano Babic 4 (0.0%)
+ AKASHI Takahiro 4 (0.0%)
+ Neil Stainton 4 (0.0%)
+ Andy Shevchenko 4 (0.0%)
+ Willy Tarreau 3 (0.0%)
+ Mylène Josserand 3 (0.0%)
+ Fabio Berton 3 (0.0%)
+ Ievgen Maliarenko 3 (0.0%)
+ Simon Baatz 3 (0.0%)
+ Christian Gmeiner 2 (0.0%)
+ Jasper kcoding 2 (0.0%)
+ Praneeth Bajjuri 2 (0.0%)
+ Christian Amann 2 (0.0%)
+ Troy Kisky 2 (0.0%)
+ Seung-Woo Kim 2 (0.0%)
+ Brendan Shanks 2 (0.0%)
+ Vladimir Vid 2 (0.0%)
+ Zubair Lutfullah Kakakhel 2 (0.0%)
+ Jakob Unterwurzacher 2 (0.0%)
+ Pierre-Jean Texier 1 (0.0%)
+ Andreas Dannenberg 1 (0.0%)
+ Stefan Roese 1 (0.0%)
+ Clément Laigle 1 (0.0%)
+ Andrew Thomas 1 (0.0%)
+ Alison Wang 1 (0.0%)
+ Paulo Zaneti 1 (0.0%)
+ Kay Potthoff 1 (0.0%)
+ Marek Behún 1 (0.0%)
+ Tien Fong Chee 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 6291 (26.6%)
+ Baruch Siach 228 (1.0%)
+ Yuantian Tang 30 (0.1%)
+ Minkyu Kang 24 (0.1%)
+ Kever Yang 18 (0.1%)
+ Lukasz Majewski 14 (0.1%)
+ Ivan Gorinov 12 (0.1%)
+ Beniamino Galvani 12 (0.1%)
+ Tom Warren 6 (0.0%)
+ Ben Whitten 3 (0.0%)
+ Fabio Estevam 2 (0.0%)
+ Yaniv Levinsky 2 (0.0%)
+ Nicholas Faustini 2 (0.0%)
+ Jeremy Gebben 2 (0.0%)
+ Paulo Zaneti 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 188)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 51 (27.1%)
+ Michal Simek 24 (12.8%)
+ Stefan Roese 18 (9.6%)
+ Minkyu Kang 13 (6.9%)
+ Chin Liang See 9 (4.8%)
+ Tom Warren 8 (4.3%)
+ Patrice Chotard 8 (4.3%)
+ Otavio Salvador 8 (4.3%)
+ Tom Rini 7 (3.7%)
+ Baruch Siach 7 (3.7%)
+ Alexey Brodkin 4 (2.1%)
+ Vipul Kumar 3 (1.6%)
+ Jagan Teki 3 (1.6%)
+ Philipp Tomsich 2 (1.1%)
+ Peng Fan 2 (1.1%)
+ Fabrice Gasnier 2 (1.1%)
+ Simon Glass 2 (1.1%)
+ Yaniv Levinsky 1 (0.5%)
+ Dave Gerlach 1 (0.5%)
+ Tony Lindgren 1 (0.5%)
+ Kurt Kanzenbach 1 (0.5%)
+ Luka Perkov 1 (0.5%)
+ Anatolij Gustschin 1 (0.5%)
+ Sandipan Patra 1 (0.5%)
+ Ruchika Gupta 1 (0.5%)
+ Boris Brezillon 1 (0.5%)
+ AKASHI Takahiro 1 (0.5%)
+ Fabio Berton 1 (0.5%)
+ Eugeniu Rosca 1 (0.5%)
+ Stephen Warren 1 (0.5%)
+ Masahiro Yamada 1 (0.5%)
+ Philippe Reynes 1 (0.5%)
+ Neil Armstrong 1 (0.5%)
+ Siva Durga Prasad Paladugu 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 356)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 153 (43.0%)
+ Jagan Teki 36 (10.1%)
+ York Sun 32 (9.0%)
+ Philipp Tomsich 15 (4.2%)
+ Tom Rini 12 (3.4%)
+ Stephen Warren 10 (2.8%)
+ Joe Hershberger 8 (2.2%)
+ Bharat Bhushan 7 (2.0%)
+ Igor Opaniuk 7 (2.0%)
+ Heinrich Schuchardt 7 (2.0%)
+ Andre Przywara 7 (2.0%)
+ Stefan Herbrechtsmeier 6 (1.7%)
+ Bin Meng 6 (1.7%)
+ Daniel Schwierzeck 5 (1.4%)
+ Fabio Estevam 4 (1.1%)
+ Heiko Schocher 4 (1.1%)
+ Marek Vasut 4 (1.1%)
+ Alexander Graf 3 (0.8%)
+ Dennis Gilmore 3 (0.8%)
+ Christian Gmeiner 3 (0.8%)
+ Anatolij Gustschin 2 (0.6%)
+ Lukasz Majewski 2 (0.6%)
+ Vikas Manocha 2 (0.6%)
+ Stefano Babic 2 (0.6%)
+ Michal Simek 1 (0.3%)
+ Stefan Roese 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ Eugeniu Rosca 1 (0.3%)
+ Masahiro Yamada 1 (0.3%)
+ Kever Yang 1 (0.3%)
+ Jonathan Gray 1 (0.3%)
+ Prabhakar Kushwaha 1 (0.3%)
+ Horia Geantă 1 (0.3%)
+ Felix Brack 1 (0.3%)
+ Igor Grinberg 1 (0.3%)
+ Vadim Bendebury 1 (0.3%)
+ Tuomas Tynkkynen 1 (0.3%)
+ Simon Goldschmidt 1 (0.3%)
+ Sam Protsenko 1 (0.3%)
+ Hannes Schmelzer 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 82)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 32 (39.0%)
+ Anand Moon 8 (9.8%)
+ Stephen Warren 6 (7.3%)
+ Chen-Yu Tsai 6 (7.3%)
+ Siva Durga Prasad Paladugu 4 (4.9%)
+ Andy Shevchenko 4 (4.9%)
+ Dennis Gilmore 3 (3.7%)
+ Klaus Goger 3 (3.7%)
+ Michal Simek 2 (2.4%)
+ Eugeniu Rosca 2 (2.4%)
+ Heinrich Schuchardt 1 (1.2%)
+ Bin Meng 1 (1.2%)
+ Jonathan Gray 1 (1.2%)
+ Tuomas Tynkkynen 1 (1.2%)
+ Kurt Kanzenbach 1 (1.2%)
+ Michael Walle 1 (1.2%)
+ Bryan O'Donoghue 1 (1.2%)
+ Vagrant Cascadian 1 (1.2%)
+ Alex Kiernan 1 (1.2%)
+ Mark Kettenis 1 (1.2%)
+ Patrick Delaunay 1 (1.2%)
+ Stefan Agner 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 82)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 15 (18.3%)
+ Icenowy Zheng 13 (15.9%)
+ Lukasz Majewski 8 (9.8%)
+ Lothar Felten 6 (7.3%)
+ Quentin Schulz 6 (7.3%)
+ Bin Meng 4 (4.9%)
+ Andre Przywara 4 (4.9%)
+ Philipp Tomsich 3 (3.7%)
+ Grygorii Strashko 3 (3.7%)
+ Andy Shevchenko 2 (2.4%)
+ Heinrich Schuchardt 2 (2.4%)
+ Igor Opaniuk 2 (2.4%)
+ Baruch Siach 2 (2.4%)
+ Klaus Goger 1 (1.2%)
+ Tuomas Tynkkynen 1 (1.2%)
+ Stefan Agner 1 (1.2%)
+ Simon Glass 1 (1.2%)
+ Marek Vasut 1 (1.2%)
+ Yuantian Tang 1 (1.2%)
+ Holger Dengler 1 (1.2%)
+ Darwin Dingel 1 (1.2%)
+ Murali Karicheri 1 (1.2%)
+ Jon Nettleton 1 (1.2%)
+ Anson Huang 1 (1.2%)
+ Chris Packham 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Herbrechtsmeier 5 (20.8%)
+ Tuomas Tynkkynen 4 (16.7%)
+ Tom Rini 3 (12.5%)
+ Marek Vasut 2 (8.3%)
+ Ioana Ciornei 2 (8.3%)
+ Jagan Teki 1 (4.2%)
+ Heinrich Schuchardt 1 (4.2%)
+ Eugeniu Rosca 1 (4.2%)
+ Jonathan Gray 1 (4.2%)
+ Mark Kettenis 1 (4.2%)
+ AKASHI Takahiro 1 (4.2%)
+ Mark Olsson 1 (4.2%)
+ ericywl 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 24)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 5 (20.8%)
+ Patrice Chotard 5 (20.8%)
+ Tom Rini 2 (8.3%)
+ Heinrich Schuchardt 2 (8.3%)
+ Masahiro Yamada 2 (8.3%)
+ Pankaj Bansal 2 (8.3%)
+ Miquel Raynal 2 (8.3%)
+ Tuomas Tynkkynen 1 (4.2%)
+ Andy Shevchenko 1 (4.2%)
+ Igor Opaniuk 1 (4.2%)
+ Fabio Estevam 1 (4.2%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 360 (36.6%)
+ Google, Inc. 75 (7.6%)
+ AMD 66 (6.7%)
+ NXP 65 (6.6%)
+ DENX Software Engineering 63 (6.4%)
+ ST Microelectronics 55 (5.6%)
+ Intel 32 (3.3%)
+ Konsulko Group 29 (3.0%)
+ Amarula Solutions 28 (2.8%)
+ National Instruments 24 (2.4%)
+ Linaro 21 (2.1%)
+ Xilinx 20 (2.0%)
+ Bootlin 18 (1.8%)
+ Texas Instruments 17 (1.7%)
+ Toradex 15 (1.5%)
+ Guntermann & Drunck 13 (1.3%)
+ Socionext Inc. 12 (1.2%)
+ NVidia 11 (1.1%)
+ O.S. Systems 10 (1.0%)
+ ARM 9 (0.9%)
+ Pepperl+Fuchs 9 (0.9%)
+ MIPS 6 (0.6%)
+ CompuLab 5 (0.5%)
+ Debian.org 4 (0.4%)
+ Samsung 4 (0.4%)
+ BayLibre SAS 3 (0.3%)
+ SUSE 3 (0.3%)
+ Bosch 2 (0.2%)
+ Boundary Devices 1 (0.1%)
+ linutronix 1 (0.1%)
+ Oracle 1 (0.1%)
+ Rockchip 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 19740 (27.4%)
+ Guntermann & Drunck 9524 (13.2%)
+ Konsulko Group 8252 (11.4%)
+ Google, Inc. 5942 (8.2%)
+ ARM 3869 (5.4%)
+ NXP 3586 (5.0%)
+ Amarula Solutions 3468 (4.8%)
+ ST Microelectronics 3367 (4.7%)
+ Xilinx 2635 (3.7%)
+ Intel 2262 (3.1%)
+ DENX Software Engineering 1891 (2.6%)
+ AMD 1880 (2.6%)
+ Toradex 1772 (2.5%)
+ Linaro 1330 (1.8%)
+ Texas Instruments 671 (0.9%)
+ National Instruments 428 (0.6%)
+ BayLibre SAS 361 (0.5%)
+ Bootlin 283 (0.4%)
+ NVidia 256 (0.4%)
+ Socionext Inc. 217 (0.3%)
+ O.S. Systems 126 (0.2%)
+ Pepperl+Fuchs 118 (0.2%)
+ CompuLab 55 (0.1%)
+ MIPS 30 (0.0%)
+ Samsung 27 (0.0%)
+ Debian.org 24 (0.0%)
+ Rockchip 18 (0.0%)
+ SUSE 11 (0.0%)
+ Bosch 10 (0.0%)
+ linutronix 9 (0.0%)
+ Boundary Devices 2 (0.0%)
+ Oracle 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 188)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 51 (27.1%)
+ Xilinx 28 (14.9%)
+ DENX Software Engineering 19 (10.1%)
+ (Unknown) 16 (8.5%)
+ Samsung 13 (6.9%)
+ ST Microelectronics 10 (5.3%)
+ NVidia 10 (5.3%)
+ Intel 9 (4.8%)
+ O.S. Systems 9 (4.8%)
+ Konsulko Group 7 (3.7%)
+ NXP 3 (1.6%)
+ Amarula Solutions 3 (1.6%)
+ Google, Inc. 2 (1.1%)
+ Linaro 1 (0.5%)
+ Texas Instruments 1 (0.5%)
+ BayLibre SAS 1 (0.5%)
+ Bootlin 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ CompuLab 1 (0.5%)
+ linutronix 1 (0.5%)
+ Atomide 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 139)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 66 (47.5%)
+ NXP 15 (10.8%)
+ ST Microelectronics 5 (3.6%)
+ Texas Instruments 5 (3.6%)
+ DENX Software Engineering 4 (2.9%)
+ Intel 4 (2.9%)
+ Linaro 4 (2.9%)
+ NVidia 3 (2.2%)
+ Amarula Solutions 3 (2.2%)
+ Bootlin 3 (2.2%)
+ Xilinx 2 (1.4%)
+ Samsung 2 (1.4%)
+ O.S. Systems 2 (1.4%)
+ CompuLab 2 (1.4%)
+ Bosch 2 (1.4%)
+ SUSE 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ BayLibre SAS 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ linutronix 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ ARM 1 (0.7%)
+ AMD 1 (0.7%)
+ Toradex 1 (0.7%)
+ National Instruments 1 (0.7%)
+ Pepperl+Fuchs 1 (0.7%)
+ MIPS 1 (0.7%)
+ Debian.org 1 (0.7%)
+ Rockchip 1 (0.7%)
+ Boundary Devices 1 (0.7%)
+ Oracle 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2018.11.rst b/doc/develop/statistics/u-boot-stats-v2018.11.rst
new file mode 100644
index 0000000..8c84bb8
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2018.11.rst
@@ -0,0 +1,663 @@
+:orphan:
+
+Release Statistics for U-Boot v2018.11
+======================================
+
+* Processed 1105 csets from 130 developers
+
+* 31 employers found
+
+* A total of 78339 lines added, 18402 removed (delta 59937)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 120 (10.9%)
+ Heinrich Schuchardt 87 (7.9%)
+ Adam Ford 51 (4.6%)
+ Marek Vasut 49 (4.4%)
+ Bin Meng 47 (4.3%)
+ Peng Fan 42 (3.8%)
+ Eugen Hristev 41 (3.7%)
+ Michal Simek 38 (3.4%)
+ Lokesh Vutla 31 (2.8%)
+ Mario Six 30 (2.7%)
+ Akashi Takahiro 29 (2.6%)
+ Jens Wiklander 23 (2.1%)
+ Miquel Raynal 22 (2.0%)
+ Stefan Roese 19 (1.7%)
+ Alexey Brodkin 17 (1.5%)
+ Tom Rini 16 (1.4%)
+ Fabio Estevam 15 (1.4%)
+ Otavio Salvador 15 (1.4%)
+ Ramon Fried 14 (1.3%)
+ Boris Brezillon 13 (1.2%)
+ Patrick Delaunay 13 (1.2%)
+ Patrice Chotard 13 (1.2%)
+ Andreas Dannenberg 13 (1.2%)
+ Joe Hershberger 10 (0.9%)
+ Masahiro Yamada 10 (0.9%)
+ Ofer Heifetz 10 (0.9%)
+ Hiroyuki Yokoyama 9 (0.8%)
+ Alexander Graf 8 (0.7%)
+ Liviu Dudau 8 (0.7%)
+ Jagdish Gediya 8 (0.7%)
+ Yinbo Zhu 8 (0.7%)
+ Jagan Teki 7 (0.6%)
+ Chris Packham 7 (0.6%)
+ Pankaj Bansal 7 (0.6%)
+ Breno Matheus Lima 7 (0.6%)
+ Peng Ma 7 (0.6%)
+ Konstantin Porotchkin 7 (0.6%)
+ Daniel Schwierzeck 6 (0.5%)
+ Martin Fuzzey 6 (0.5%)
+ Baruch Siach 6 (0.5%)
+ Siva Durga Prasad Paladugu 6 (0.5%)
+ Marek Behún 6 (0.5%)
+ Ley Foon Tan 6 (0.5%)
+ Tien Fong Chee 6 (0.5%)
+ Anatolij Gustschin 5 (0.5%)
+ Marcel Ziswiler 5 (0.5%)
+ Vladimir Zapolskiy 5 (0.5%)
+ Janine Hagemann 5 (0.5%)
+ Tuomas Tynkkynen 5 (0.5%)
+ Georgii Staroselskii 5 (0.5%)
+ Lukasz Majewski 4 (0.4%)
+ Simon Goldschmidt 4 (0.4%)
+ Icenowy Zheng 4 (0.4%)
+ Rui Miguel Silva 4 (0.4%)
+ Stephen Warren 4 (0.4%)
+ Kever Yang 4 (0.4%)
+ Heiko Stuebner 4 (0.4%)
+ Rajan Vaja 4 (0.4%)
+ Maxime Ripard 4 (0.4%)
+ Laurentiu Tudor 4 (0.4%)
+ Quentin Schulz 4 (0.4%)
+ Codrin Ciubotariu 4 (0.4%)
+ Dalon Westergreen 4 (0.4%)
+ Andy Shevchenko 3 (0.3%)
+ Keerthy 3 (0.3%)
+ Andre Przywara 3 (0.3%)
+ Priyanka Jain 3 (0.3%)
+ Jeremy Gebben 3 (0.3%)
+ Priit Laes 3 (0.3%)
+ Vasily Khoruzhick 3 (0.3%)
+ Loic Devulder 3 (0.3%)
+ Vikas Manocha 3 (0.3%)
+ Pramod Kumar 3 (0.3%)
+ Sekhar Nori 3 (0.3%)
+ Philippe Reynes 3 (0.3%)
+ Angelo Dureghello 3 (0.3%)
+ Heiko Schocher 2 (0.2%)
+ Sam Protsenko 2 (0.2%)
+ Dirk Meul 2 (0.2%)
+ Cédric Le Goater 2 (0.2%)
+ Ian Ray 2 (0.2%)
+ Ye Li 2 (0.2%)
+ Ashish Kumar 2 (0.2%)
+ Andrew F. Davis 2 (0.2%)
+ Nicholas Faustini 2 (0.2%)
+ Neil Armstrong 2 (0.2%)
+ Sébastien Szymanski 2 (0.2%)
+ Yousaf Kaukab 2 (0.2%)
+ Neil Stainton 2 (0.2%)
+ Christian Gmeiner 2 (0.2%)
+ Ran Wang 2 (0.2%)
+ Peter Pan 2 (0.2%)
+ Thomas Fitzsimmons 2 (0.2%)
+ Jun Nie 1 (0.1%)
+ Lars Povlsen 1 (0.1%)
+ Christoph Niedermaier 1 (0.1%)
+ Paul Davey 1 (0.1%)
+ Andrei Stefanescu 1 (0.1%)
+ Hannes Schmelzer 1 (0.1%)
+ Hector Palacios 1 (0.1%)
+ Bernhard Messerklinger 1 (0.1%)
+ Xiaoliang Yang 1 (0.1%)
+ Dan Cimpoca 1 (0.1%)
+ Fabien Lahoudere 1 (0.1%)
+ Duncan Hare 1 (0.1%)
+ Yevgeny Popovych 1 (0.1%)
+ Trent Piepho 1 (0.1%)
+ Daniel Gröber 1 (0.1%)
+ Andreas Färber 1 (0.1%)
+ Ooi, Joyce 1 (0.1%)
+ Atsushi Nemoto 1 (0.1%)
+ Rick Chen 1 (0.1%)
+ Rasmus Villemoes 1 (0.1%)
+ Alex Kiernan 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Prabhakar Kushwaha 1 (0.1%)
+ Nipun Gupta 1 (0.1%)
+ Luis Araneda 1 (0.1%)
+ Frieder Schrempf 1 (0.1%)
+ Brian Norris 1 (0.1%)
+ Ezequiel Garcia 1 (0.1%)
+ Rabeeh Khoury 1 (0.1%)
+ David Sniatkiwicz 1 (0.1%)
+ Victor Axelrod 1 (0.1%)
+ Jon Nettleton 1 (0.1%)
+ Evgeni Dobrev 1 (0.1%)
+ Michael Heimpold 1 (0.1%)
+ Mark Tomlinson 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ Matt Weber 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 8404 (10.0%)
+ Peng Fan 8366 (9.9%)
+ Jagan Teki 7158 (8.5%)
+ Mario Six 7127 (8.5%)
+ Heinrich Schuchardt 6089 (7.2%)
+ Lokesh Vutla 5129 (6.1%)
+ Jens Wiklander 3954 (4.7%)
+ Adam Ford 3157 (3.7%)
+ Akashi Takahiro 2640 (3.1%)
+ Michal Simek 2281 (2.7%)
+ Boris Brezillon 2221 (2.6%)
+ Stefan Roese 2133 (2.5%)
+ Marek Vasut 2011 (2.4%)
+ Peter Pan 1832 (2.2%)
+ Andreas Dannenberg 1803 (2.1%)
+ Miquel Raynal 1788 (2.1%)
+ Liviu Dudau 1636 (1.9%)
+ Bin Meng 1427 (1.7%)
+ Masahiro Yamada 864 (1.0%)
+ Loic Devulder 818 (1.0%)
+ Alexey Brodkin 751 (0.9%)
+ Neil Armstrong 734 (0.9%)
+ Maxime Ripard 715 (0.8%)
+ Eugen Hristev 682 (0.8%)
+ Tien Fong Chee 645 (0.8%)
+ Joe Hershberger 636 (0.8%)
+ Patrice Chotard 488 (0.6%)
+ Chris Packham 472 (0.6%)
+ Tom Rini 465 (0.6%)
+ Fabio Estevam 451 (0.5%)
+ Quentin Schulz 385 (0.5%)
+ Tuomas Tynkkynen 348 (0.4%)
+ Jeremy Gebben 339 (0.4%)
+ Jagdish Gediya 335 (0.4%)
+ Georgii Staroselskii 293 (0.3%)
+ Pankaj Bansal 281 (0.3%)
+ Marek Behún 276 (0.3%)
+ Otavio Salvador 272 (0.3%)
+ Anatolij Gustschin 244 (0.3%)
+ Patrick Delaunay 234 (0.3%)
+ Ramon Fried 233 (0.3%)
+ Philippe Reynes 218 (0.3%)
+ Ofer Heifetz 193 (0.2%)
+ Daniel Schwierzeck 192 (0.2%)
+ Hiroyuki Yokoyama 190 (0.2%)
+ Codrin Ciubotariu 189 (0.2%)
+ Janine Hagemann 179 (0.2%)
+ Peng Ma 156 (0.2%)
+ Ley Foon Tan 153 (0.2%)
+ Yinbo Zhu 152 (0.2%)
+ Frieder Schrempf 146 (0.2%)
+ Ashish Kumar 141 (0.2%)
+ Konstantin Porotchkin 121 (0.1%)
+ Siva Durga Prasad Paladugu 119 (0.1%)
+ Alexander Graf 116 (0.1%)
+ Laurentiu Tudor 111 (0.1%)
+ Sekhar Nori 109 (0.1%)
+ Dirk Meul 107 (0.1%)
+ Kever Yang 100 (0.1%)
+ Thomas Fitzsimmons 87 (0.1%)
+ Rajan Vaja 78 (0.1%)
+ Andre Przywara 75 (0.1%)
+ Breno Matheus Lima 68 (0.1%)
+ Simon Goldschmidt 67 (0.1%)
+ Martin Fuzzey 64 (0.1%)
+ Rui Miguel Silva 63 (0.1%)
+ Heiko Stuebner 56 (0.1%)
+ Sébastien Szymanski 56 (0.1%)
+ Keerthy 50 (0.1%)
+ Andrew F. Davis 49 (0.1%)
+ Yousaf Kaukab 49 (0.1%)
+ Vladimir Zapolskiy 48 (0.1%)
+ Nipun Gupta 46 (0.1%)
+ Baruch Siach 43 (0.1%)
+ Angelo Dureghello 36 (0.0%)
+ Stephen Warren 33 (0.0%)
+ Duncan Hare 32 (0.0%)
+ Ye Li 30 (0.0%)
+ Brian Norris 28 (0.0%)
+ Victor Axelrod 27 (0.0%)
+ Marcel Ziswiler 26 (0.0%)
+ Icenowy Zheng 26 (0.0%)
+ Nicholas Faustini 25 (0.0%)
+ Rabeeh Khoury 23 (0.0%)
+ Vasily Khoruzhick 21 (0.0%)
+ Ran Wang 20 (0.0%)
+ Trent Piepho 20 (0.0%)
+ Ian Ray 19 (0.0%)
+ Pramod Kumar 18 (0.0%)
+ Xiaoliang Yang 18 (0.0%)
+ Grazvydas Ignotas 18 (0.0%)
+ Priyanka Jain 14 (0.0%)
+ Vikas Manocha 13 (0.0%)
+ Ezequiel Garcia 13 (0.0%)
+ Dalon Westergreen 11 (0.0%)
+ Cédric Le Goater 11 (0.0%)
+ Heiko Schocher 10 (0.0%)
+ Jon Nettleton 10 (0.0%)
+ Lukasz Majewski 9 (0.0%)
+ Christoph Niedermaier 8 (0.0%)
+ Priit Laes 7 (0.0%)
+ Christian Gmeiner 7 (0.0%)
+ Prabhakar Kushwaha 7 (0.0%)
+ Neil Stainton 6 (0.0%)
+ Andy Shevchenko 5 (0.0%)
+ Sam Protsenko 4 (0.0%)
+ Hannes Schmelzer 4 (0.0%)
+ Andreas Färber 4 (0.0%)
+ Michael Heimpold 4 (0.0%)
+ Mark Tomlinson 4 (0.0%)
+ Paul Davey 3 (0.0%)
+ Dan Cimpoca 3 (0.0%)
+ Daniel Gröber 3 (0.0%)
+ Ooi, Joyce 3 (0.0%)
+ Rasmus Villemoes 3 (0.0%)
+ David Sniatkiwicz 3 (0.0%)
+ Matt Weber 3 (0.0%)
+ Jun Nie 2 (0.0%)
+ Alex Kiernan 2 (0.0%)
+ Zhao Qiang 2 (0.0%)
+ Luis Araneda 2 (0.0%)
+ Lars Povlsen 1 (0.0%)
+ Andrei Stefanescu 1 (0.0%)
+ Hector Palacios 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ Fabien Lahoudere 1 (0.0%)
+ Yevgeny Popovych 1 (0.0%)
+ Atsushi Nemoto 1 (0.0%)
+ Rick Chen 1 (0.0%)
+ Evgeni Dobrev 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 667 (3.6%)
+ Jagan Teki 479 (2.6%)
+ Tuomas Tynkkynen 342 (1.9%)
+ Ashish Kumar 135 (0.7%)
+ Tom Rini 132 (0.7%)
+ Simon Goldschmidt 54 (0.3%)
+ Dirk Meul 52 (0.3%)
+ Peng Ma 29 (0.2%)
+ Chris Packham 20 (0.1%)
+ Hiroyuki Yokoyama 19 (0.1%)
+ Daniel Schwierzeck 15 (0.1%)
+ Vikas Manocha 10 (0.1%)
+ Breno Matheus Lima 5 (0.0%)
+ Lukasz Majewski 4 (0.0%)
+ Sam Protsenko 4 (0.0%)
+ Andy Shevchenko 2 (0.0%)
+ Grazvydas Ignotas 1 (0.0%)
+ Daniel Gröber 1 (0.0%)
+ Luis Araneda 1 (0.0%)
+ Lars Povlsen 1 (0.0%)
+ Evgeni Dobrev 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 284)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 116 (40.8%)
+ Stefan Roese 35 (12.3%)
+ Lokesh Vutla 13 (4.6%)
+ Tom Rini 12 (4.2%)
+ Chris Packham 11 (3.9%)
+ Miquel Raynal 11 (3.9%)
+ Otavio Salvador 9 (3.2%)
+ Michal Simek 7 (2.5%)
+ Fabio Berton 5 (1.8%)
+ Bin Meng 5 (1.8%)
+ Andreas Dannenberg 5 (1.8%)
+ Simon Glass 5 (1.8%)
+ Bryan O'Donoghue 4 (1.4%)
+ Nishanth Menon 4 (1.4%)
+ Eugen Hristev 4 (1.4%)
+ Fabien Lahoudere 3 (1.1%)
+ Patrick Delaunay 3 (1.1%)
+ Icenowy Zheng 3 (1.1%)
+ Boris Brezillon 3 (1.1%)
+ Daniel Schwierzeck 2 (0.7%)
+ Richard Weinberger 2 (0.7%)
+ Peter Howard 2 (0.7%)
+ Vignesh R 2 (0.7%)
+ Baruch Siach 2 (0.7%)
+ Anatolij Gustschin 2 (0.7%)
+ Neil Armstrong 2 (0.7%)
+ Masahiro Yamada 1 (0.4%)
+ Jagan Teki 1 (0.4%)
+ Minkyu Kang 1 (0.4%)
+ Suresh Gupta 1 (0.4%)
+ Yogesh Gaur 1 (0.4%)
+ Jacek Anaszewski 1 (0.4%)
+ Sean Nyekjær 1 (0.4%)
+ Chin Liang See 1 (0.4%)
+ Marcel Ziswiler 1 (0.4%)
+ Ofer Heifetz 1 (0.4%)
+ Marek Vasut 1 (0.4%)
+ Peng Fan 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 479)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 132 (27.6%)
+ Tom Rini 52 (10.9%)
+ Bin Meng 43 (9.0%)
+ York Sun 39 (8.1%)
+ Anatolij Gustschin 33 (6.9%)
+ Jagan Teki 25 (5.2%)
+ Lukas Auer 17 (3.5%)
+ Igal Liberman 16 (3.3%)
+ Philipp Tomsich 14 (2.9%)
+ Stefan Roese 13 (2.7%)
+ Boris Brezillon 13 (2.7%)
+ Heiko Schocher 8 (1.7%)
+ Fabio Estevam 8 (1.7%)
+ Heinrich Schuchardt 8 (1.7%)
+ Lukasz Majewski 6 (1.3%)
+ Andy Shevchenko 5 (1.0%)
+ Rick Chen 5 (1.0%)
+ Miquel Raynal 4 (0.8%)
+ Peng Fan 4 (0.8%)
+ Lokesh Vutla 3 (0.6%)
+ Andre Przywara 3 (0.6%)
+ Alexander Graf 2 (0.4%)
+ Eugen Hristev 2 (0.4%)
+ Daniel Schwierzeck 2 (0.4%)
+ Marek Vasut 2 (0.4%)
+ Simon Goldschmidt 2 (0.4%)
+ Igor Opaniuk 2 (0.4%)
+ Chris Packham 1 (0.2%)
+ Michal Simek 1 (0.2%)
+ Ofer Heifetz 1 (0.2%)
+ Vikas Manocha 1 (0.2%)
+ Jean-Jacques Hiblot 1 (0.2%)
+ Michael Trimarchi 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ David Wu 1 (0.2%)
+ Philipp Tomisch 1 (0.2%)
+ Mark Kettenis 1 (0.2%)
+ Florian Fainelli 1 (0.2%)
+ Hannes Schmelzer 1 (0.2%)
+ Ye Li 1 (0.2%)
+ Stephen Warren 1 (0.2%)
+ Ley Foon Tan 1 (0.2%)
+ Konstantin Porotchkin 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 35)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 5 (14.3%)
+ Igor Opaniuk 5 (14.3%)
+ Derald D. Woods 3 (8.6%)
+ Stefan Roese 2 (5.7%)
+ Hannes Schmelzer 2 (5.7%)
+ Adam Ford 2 (5.7%)
+ Simon Glass 1 (2.9%)
+ York Sun 1 (2.9%)
+ Heiko Schocher 1 (2.9%)
+ Heinrich Schuchardt 1 (2.9%)
+ Chris Packham 1 (2.9%)
+ Michal Simek 1 (2.9%)
+ Ye Li 1 (2.9%)
+ Sean Nyekjær 1 (2.9%)
+ VlaoMao 1 (2.9%)
+ Vagrant Cascadian 1 (2.9%)
+ Peter Robinson 1 (2.9%)
+ Rajat Srivastava 1 (2.9%)
+ Ladislav Michl 1 (2.9%)
+ Willy Tarreau 1 (2.9%)
+ Marek Behún 1 (2.9%)
+ Patrice Chotard 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 35)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Boris Brezillon 5 (14.3%)
+ Jens Wiklander 5 (14.3%)
+ Bin Meng 2 (5.7%)
+ Adam Ford 2 (5.7%)
+ Heinrich Schuchardt 2 (5.7%)
+ Michal Simek 2 (5.7%)
+ Jagan Teki 2 (5.7%)
+ Andy Shevchenko 2 (5.7%)
+ Ashish Kumar 2 (5.7%)
+ Stefan Roese 1 (2.9%)
+ Simon Glass 1 (2.9%)
+ Lokesh Vutla 1 (2.9%)
+ Masahiro Yamada 1 (2.9%)
+ Yevgeny Popovych 1 (2.9%)
+ Bernhard Messerklinger 1 (2.9%)
+ Mark Tomlinson 1 (2.9%)
+ Paul Davey 1 (2.9%)
+ Vasily Khoruzhick 1 (2.9%)
+ Kever Yang 1 (2.9%)
+ Joe Hershberger 1 (2.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 17)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 5 (29.4%)
+ Jagan Teki 2 (11.8%)
+ Stefan Roese 2 (11.8%)
+ Simon Glass 1 (5.9%)
+ Hannes Schmelzer 1 (5.9%)
+ Sean Nyekjær 1 (5.9%)
+ Peter Robinson 1 (5.9%)
+ Lars Povlsen 1 (5.9%)
+ Tim Harvey 1 (5.9%)
+ Tran Tien Dat 1 (5.9%)
+ Yousaf Kaukab 1 (5.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 17)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Boris Brezillon 5 (29.4%)
+ Heinrich Schuchardt 4 (23.5%)
+ Fabio Estevam 2 (11.8%)
+ Bin Meng 1 (5.9%)
+ Andy Shevchenko 1 (5.9%)
+ Kever Yang 1 (5.9%)
+ Joe Hershberger 1 (5.9%)
+ Daniel Schwierzeck 1 (5.9%)
+ Andreas Färber 1 (5.9%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 409 (37.0%)
+ Google, Inc. 120 (10.9%)
+ NXP 100 (9.0%)
+ DENX Software Engineering 79 (7.1%)
+ Linaro 59 (5.3%)
+ Texas Instruments 52 (4.7%)
+ AMD 38 (3.4%)
+ Bootlin 30 (2.7%)
+ Guntermann & Drunck 30 (2.7%)
+ ST Microelectronics 29 (2.6%)
+ Marvell 19 (1.7%)
+ Intel 16 (1.4%)
+ Konsulko Group 16 (1.4%)
+ O.S. Systems 15 (1.4%)
+ ARM 11 (1.0%)
+ National Instruments 10 (0.9%)
+ Socionext Inc. 10 (0.9%)
+ Xilinx 10 (0.9%)
+ Renesas Electronics 9 (0.8%)
+ Amarula Solutions 7 (0.6%)
+ SUSE 6 (0.5%)
+ Phytec 5 (0.5%)
+ Toradex 5 (0.5%)
+ NVidia 4 (0.4%)
+ Pepperl+Fuchs 4 (0.4%)
+ Rockchip 4 (0.4%)
+ General Electric 3 (0.3%)
+ BayLibre SAS 2 (0.2%)
+ Collabora Ltd. 1 (0.1%)
+ Digi International 1 (0.1%)
+ Grazvydas Ignotas 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 20211 (24.0%)
+ NXP 9766 (11.6%)
+ Google, Inc. 8404 (10.0%)
+ Amarula Solutions 7158 (8.5%)
+ Texas Instruments 7140 (8.5%)
+ Guntermann & Drunck 7127 (8.5%)
+ Linaro 6663 (7.9%)
+ DENX Software Engineering 4407 (5.2%)
+ Bootlin 2888 (3.4%)
+ AMD 2281 (2.7%)
+ ARM 1711 (2.0%)
+ SUSE 871 (1.0%)
+ Socionext Inc. 864 (1.0%)
+ Intel 806 (1.0%)
+ ST Microelectronics 735 (0.9%)
+ BayLibre SAS 734 (0.9%)
+ National Instruments 636 (0.8%)
+ Konsulko Group 465 (0.6%)
+ Marvell 344 (0.4%)
+ O.S. Systems 272 (0.3%)
+ Xilinx 197 (0.2%)
+ Renesas Electronics 190 (0.2%)
+ Phytec 179 (0.2%)
+ Rockchip 100 (0.1%)
+ Pepperl+Fuchs 67 (0.1%)
+ NVidia 33 (0.0%)
+ Toradex 26 (0.0%)
+ General Electric 22 (0.0%)
+ Grazvydas Ignotas 18 (0.0%)
+ Collabora Ltd. 1 (0.0%)
+ Digi International 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 284)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 116 (40.8%)
+ DENX Software Engineering 37 (13.0%)
+ (Unknown) 33 (11.6%)
+ Texas Instruments 24 (8.5%)
+ Bootlin 14 (4.9%)
+ O.S. Systems 14 (4.9%)
+ Konsulko Group 12 (4.2%)
+ Xilinx 7 (2.5%)
+ Google, Inc. 5 (1.8%)
+ Linaro 4 (1.4%)
+ NXP 3 (1.1%)
+ ST Microelectronics 3 (1.1%)
+ Collabora Ltd. 3 (1.1%)
+ BayLibre SAS 2 (0.7%)
+ Samsung 2 (0.7%)
+ Amarula Solutions 1 (0.4%)
+ Socionext Inc. 1 (0.4%)
+ Intel 1 (0.4%)
+ Marvell 1 (0.4%)
+ Toradex 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 131)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 58 (44.3%)
+ NXP 17 (13.0%)
+ DENX Software Engineering 5 (3.8%)
+ Texas Instruments 5 (3.8%)
+ Linaro 5 (3.8%)
+ Intel 4 (3.1%)
+ Marvell 4 (3.1%)
+ SUSE 3 (2.3%)
+ Bootlin 3 (2.3%)
+ ST Microelectronics 3 (2.3%)
+ Xilinx 2 (1.5%)
+ ARM 2 (1.5%)
+ General Electric 2 (1.5%)
+ O.S. Systems 1 (0.8%)
+ Konsulko Group 1 (0.8%)
+ Google, Inc. 1 (0.8%)
+ Collabora Ltd. 1 (0.8%)
+ BayLibre SAS 1 (0.8%)
+ Amarula Solutions 1 (0.8%)
+ Socionext Inc. 1 (0.8%)
+ Toradex 1 (0.8%)
+ Guntermann & Drunck 1 (0.8%)
+ AMD 1 (0.8%)
+ National Instruments 1 (0.8%)
+ Renesas Electronics 1 (0.8%)
+ Phytec 1 (0.8%)
+ Rockchip 1 (0.8%)
+ Pepperl+Fuchs 1 (0.8%)
+ NVidia 1 (0.8%)
+ Grazvydas Ignotas 1 (0.8%)
+ Digi International 1 (0.8%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2019.01.rst b/doc/develop/statistics/u-boot-stats-v2019.01.rst
new file mode 100644
index 0000000..bcec3e8
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2019.01.rst
@@ -0,0 +1,733 @@
+:orphan:
+
+Release Statistics for U-Boot v2019.01
+======================================
+
+* Processed 1149 csets from 140 developers
+
+* 29 employers found
+
+* A total of 99015 lines added, 19344 removed (delta 79671)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 136 (11.8%)
+ Bin Meng 88 (7.7%)
+ Jean-Jacques Hiblot 62 (5.4%)
+ Heinrich Schuchardt 48 (4.2%)
+ Marek Vasut 37 (3.2%)
+ Álvaro Fernández Rojas 36 (3.1%)
+ Michal Simek 28 (2.4%)
+ Lukas Auer 28 (2.4%)
+ Peng Fan 26 (2.3%)
+ Tom Rini 21 (1.8%)
+ Stefan Roese 21 (1.8%)
+ Patrice Chotard 20 (1.7%)
+ Adam Ford 20 (1.7%)
+ Rajesh Bhagat 19 (1.7%)
+ Mario Six 18 (1.6%)
+ Philipp Tomsich 16 (1.4%)
+ Ryder Lee 16 (1.4%)
+ Lukasz Majewski 14 (1.2%)
+ Andy Shevchenko 14 (1.2%)
+ Neil Armstrong 14 (1.2%)
+ Jagan Teki 13 (1.1%)
+ Lokesh Vutla 13 (1.1%)
+ Jerome Brunet 13 (1.1%)
+ Simon Goldschmidt 13 (1.1%)
+ Cédric Le Goater 13 (1.1%)
+ Christoph Muellner 11 (1.0%)
+ Chris Packham 11 (1.0%)
+ Boris Brezillon 11 (1.0%)
+ Otavio Salvador 10 (0.9%)
+ Baruch Siach 10 (0.9%)
+ Peng Ma 10 (0.9%)
+ Christophe Leroy 10 (0.9%)
+ Philippe Reynes 10 (0.9%)
+ Masahiro Yamada 9 (0.8%)
+ Gregory CLEMENT 9 (0.8%)
+ Alexander Graf 8 (0.7%)
+ Ang, Chee Hong 8 (0.7%)
+ Olliver Schinagl 8 (0.7%)
+ Grygorii Strashko 8 (0.7%)
+ Ye Li 7 (0.6%)
+ Andre Przywara 7 (0.6%)
+ Kever Yang 7 (0.6%)
+ Aditya Prayoga 7 (0.6%)
+ Rick Chen 7 (0.6%)
+ Anup Patel 7 (0.6%)
+ AKASHI Takahiro 7 (0.6%)
+ Alexey Brodkin 7 (0.6%)
+ Vasily Khoruzhick 7 (0.6%)
+ Stefan Agner 6 (0.5%)
+ Daniel Schwierzeck 6 (0.5%)
+ Paul Burton 5 (0.4%)
+ Patrick Delaunay 5 (0.4%)
+ Siva Durga Prasad Paladugu 5 (0.4%)
+ Felix Brack 5 (0.4%)
+ Keerthy 5 (0.4%)
+ Priyanka Jain 5 (0.4%)
+ Pankit Garg 5 (0.4%)
+ Sven Schwermer 5 (0.4%)
+ Tuomas Tynkkynen 5 (0.4%)
+ Fabio Estevam 4 (0.3%)
+ Michael Heimpold 4 (0.3%)
+ Weijie Gao 4 (0.3%)
+ Benjamin Gaignard 4 (0.3%)
+ Yegor Yefremov 4 (0.3%)
+ Marcin Niestroj 4 (0.3%)
+ Fabrice Gasnier 4 (0.3%)
+ Sam Protsenko 3 (0.3%)
+ Guillaume GARDET 3 (0.3%)
+ Martin Fuzzey 3 (0.3%)
+ Denis Zalevskiy 3 (0.3%)
+ Anatolij Gustschin 3 (0.3%)
+ Jonathan Gray 3 (0.3%)
+ Andrew F. Davis 3 (0.3%)
+ Vignesh R 3 (0.3%)
+ York Sun 3 (0.3%)
+ Manivannan Sadhasivam 3 (0.3%)
+ Miquel Raynal 3 (0.3%)
+ Quentin Schulz 3 (0.3%)
+ Shawn Guo 2 (0.2%)
+ Soeren Moch 2 (0.2%)
+ Stefan Mavrodiev 2 (0.2%)
+ Gary Bisson 2 (0.2%)
+ Xiaoliang Yang 2 (0.2%)
+ Anand Moon 2 (0.2%)
+ Martyn Welch 2 (0.2%)
+ Sumit Garg 2 (0.2%)
+ Heiko Schocher 2 (0.2%)
+ Andreas Dannenberg 2 (0.2%)
+ Thomas RIENOESSL 2 (0.2%)
+ Takeshi Kihara 2 (0.2%)
+ Hiroyuki Yokoyama 2 (0.2%)
+ Frank Wunderlich 2 (0.2%)
+ Carlo Caione 2 (0.2%)
+ Patrick Wildt 2 (0.2%)
+ Heiko Stuebner 2 (0.2%)
+ Richard Röjfors 2 (0.2%)
+ Trevor Woerner 2 (0.2%)
+ Icenowy Zheng 2 (0.2%)
+ Liviu Dudau 2 (0.2%)
+ Konrad Beckmann 2 (0.2%)
+ Vladimir Zapolskiy 2 (0.2%)
+ Chris Spencer 1 (0.1%)
+ Alex Elder 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Priit Laes 1 (0.1%)
+ Enric Balletbo i Serra 1 (0.1%)
+ Nikolai Zhubr 1 (0.1%)
+ Harald Seiler 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Parthiban Nallathambi 1 (0.1%)
+ Yaniv Levinsky 1 (0.1%)
+ Martin Husemann 1 (0.1%)
+ Fabien Lahoudere 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ From: Karl Palsson 1 (0.1%)
+ Cristian Ciocaltea 1 (0.1%)
+ Seung-Woo Kim 1 (0.1%)
+ Loic Devulder 1 (0.1%)
+ Pierre-Jean Texier 1 (0.1%)
+ Igor Opaniuk 1 (0.1%)
+ Petr Štetiar 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Hannes Schmelzer 1 (0.1%)
+ Eugen Hristev 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Ashish Kumar 1 (0.1%)
+ Pramod Kumar 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Randy Li 1 (0.1%)
+ Jorge Ramirez-Ortiz 1 (0.1%)
+ Vipul Kumar 1 (0.1%)
+ T Karthik Reddy 1 (0.1%)
+ Emmanuel Vadot 1 (0.1%)
+ Martin Lund 1 (0.1%)
+ Guochun Mao 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Rabeeh Khoury 1 (0.1%)
+ Prasanthi Chellakumar 1 (0.1%)
+ Jun Nie 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Ryder Lee 9640 (9.2%)
+ Simon Glass 8148 (7.8%)
+ Marek Vasut 7684 (7.4%)
+ Peng Fan 7178 (6.9%)
+ Bin Meng 5545 (5.3%)
+ Neil Armstrong 4029 (3.9%)
+ Álvaro Fernández Rojas 3615 (3.5%)
+ Gregory CLEMENT 3539 (3.4%)
+ Paul Burton 3514 (3.4%)
+ Lokesh Vutla 3242 (3.1%)
+ Jean-Jacques Hiblot 2776 (2.7%)
+ Manivannan Sadhasivam 2577 (2.5%)
+ Rajesh Bhagat 2282 (2.2%)
+ Jerome Brunet 2058 (2.0%)
+ Cédric Le Goater 1822 (1.7%)
+ Weijie Gao 1793 (1.7%)
+ Mario Six 1738 (1.7%)
+ Stefan Roese 1546 (1.5%)
+ Tuomas Tynkkynen 1502 (1.4%)
+ Grygorii Strashko 1473 (1.4%)
+ Simon Goldschmidt 1358 (1.3%)
+ Adam Ford 1349 (1.3%)
+ Chris Packham 1333 (1.3%)
+ Heinrich Schuchardt 1290 (1.2%)
+ Philipp Tomsich 1241 (1.2%)
+ Philippe Reynes 1206 (1.2%)
+ Otavio Salvador 1179 (1.1%)
+ Masahiro Yamada 1112 (1.1%)
+ Lukasz Majewski 1110 (1.1%)
+ Andre Przywara 1021 (1.0%)
+ Quentin Schulz 1012 (1.0%)
+ Priyanka Jain 829 (0.8%)
+ Patrice Chotard 787 (0.8%)
+ Rick Chen 740 (0.7%)
+ Felix Brack 677 (0.6%)
+ Lukas Auer 625 (0.6%)
+ Tom Rini 618 (0.6%)
+ Martin Fuzzey 580 (0.6%)
+ Christophe Leroy 578 (0.6%)
+ Benjamin Gaignard 560 (0.5%)
+ Pankit Garg 520 (0.5%)
+ Jagan Teki 491 (0.5%)
+ Ang, Chee Hong 478 (0.5%)
+ Yegor Yefremov 460 (0.4%)
+ Marcin Niestroj 454 (0.4%)
+ Vasily Khoruzhick 398 (0.4%)
+ Christoph Muellner 394 (0.4%)
+ Rabeeh Khoury 391 (0.4%)
+ Andy Shevchenko 385 (0.4%)
+ Vignesh R 369 (0.4%)
+ Guochun Mao 367 (0.4%)
+ Anup Patel 366 (0.4%)
+ York Sun 332 (0.3%)
+ Alexey Brodkin 298 (0.3%)
+ Boris Brezillon 240 (0.2%)
+ Michal Simek 200 (0.2%)
+ Olliver Schinagl 171 (0.2%)
+ Fabrice Gasnier 159 (0.2%)
+ AKASHI Takahiro 156 (0.1%)
+ Loic Devulder 151 (0.1%)
+ Baruch Siach 149 (0.1%)
+ Jun Nie 140 (0.1%)
+ Daniel Schwierzeck 128 (0.1%)
+ Alexander Graf 127 (0.1%)
+ Denis Zalevskiy 127 (0.1%)
+ Miquel Raynal 124 (0.1%)
+ Sven Schwermer 117 (0.1%)
+ Prasanthi Chellakumar 114 (0.1%)
+ Fabien Lahoudere 111 (0.1%)
+ Siva Durga Prasad Paladugu 106 (0.1%)
+ Aditya Prayoga 99 (0.1%)
+ Ye Li 95 (0.1%)
+ Peng Ma 91 (0.1%)
+ Heiko Stuebner 83 (0.1%)
+ Patrick Delaunay 74 (0.1%)
+ Andreas Dannenberg 56 (0.1%)
+ Vipul Kumar 54 (0.1%)
+ Kever Yang 53 (0.1%)
+ Anatolij Gustschin 50 (0.0%)
+ Vladimir Zapolskiy 50 (0.0%)
+ Icenowy Zheng 49 (0.0%)
+ Randy Li 49 (0.0%)
+ Heiko Schocher 42 (0.0%)
+ Fabio Estevam 29 (0.0%)
+ Xiaoliang Yang 28 (0.0%)
+ Sumit Garg 28 (0.0%)
+ Liviu Dudau 28 (0.0%)
+ Parthiban Nallathambi 27 (0.0%)
+ Pramod Kumar 27 (0.0%)
+ Andrew F. Davis 24 (0.0%)
+ Stefan Agner 22 (0.0%)
+ Keerthy 20 (0.0%)
+ T Karthik Reddy 19 (0.0%)
+ Gary Bisson 18 (0.0%)
+ Takeshi Kihara 15 (0.0%)
+ Jonathan Gray 14 (0.0%)
+ Patrick Wildt 14 (0.0%)
+ Carlo Caione 13 (0.0%)
+ Seung-Woo Kim 12 (0.0%)
+ Hannes Schmelzer 12 (0.0%)
+ Frank Wunderlich 11 (0.0%)
+ Stefano Babic 10 (0.0%)
+ From: Karl Palsson 10 (0.0%)
+ Eugen Hristev 10 (0.0%)
+ Sam Protsenko 9 (0.0%)
+ Shawn Guo 9 (0.0%)
+ Stefan Mavrodiev 8 (0.0%)
+ Hiroyuki Yokoyama 8 (0.0%)
+ Konrad Beckmann 8 (0.0%)
+ Sekhar Nori 8 (0.0%)
+ Hou Zhiqiang 7 (0.0%)
+ Ashish Kumar 7 (0.0%)
+ Anand Moon 6 (0.0%)
+ Thomas RIENOESSL 6 (0.0%)
+ Michael Heimpold 5 (0.0%)
+ Guillaume GARDET 5 (0.0%)
+ Martyn Welch 5 (0.0%)
+ Trevor Woerner 5 (0.0%)
+ Yaniv Levinsky 5 (0.0%)
+ Cristian Ciocaltea 5 (0.0%)
+ Petr Štetiar 5 (0.0%)
+ Klaus Goger 5 (0.0%)
+ Nikolai Zhubr 4 (0.0%)
+ Martin Lund 4 (0.0%)
+ Soeren Moch 3 (0.0%)
+ Chris Spencer 3 (0.0%)
+ Alex Elder 3 (0.0%)
+ Igor Opaniuk 3 (0.0%)
+ Richard Röjfors 2 (0.0%)
+ Priit Laes 2 (0.0%)
+ Christian Gmeiner 2 (0.0%)
+ Pierre-Jean Texier 2 (0.0%)
+ Alison Wang 2 (0.0%)
+ Tien Fong Chee 1 (0.0%)
+ Enric Balletbo i Serra 1 (0.0%)
+ Harald Seiler 1 (0.0%)
+ Martin Husemann 1 (0.0%)
+ Jorge Ramirez-Ortiz 1 (0.0%)
+ Emmanuel Vadot 1 (0.0%)
+ Michael Trimarchi 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 268 (1.4%)
+ Jagan Teki 129 (0.7%)
+ Christophe Leroy 128 (0.7%)
+ Daniel Schwierzeck 104 (0.5%)
+ Chris Packham 91 (0.5%)
+ Grygorii Strashko 90 (0.5%)
+ Vladimir Zapolskiy 10 (0.1%)
+ Patrick Delaunay 7 (0.0%)
+ Sam Protsenko 5 (0.0%)
+ Jonathan Gray 3 (0.0%)
+ Shawn Guo 3 (0.0%)
+ From: Karl Palsson 2 (0.0%)
+ Sekhar Nori 1 (0.0%)
+ Christian Gmeiner 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 267)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 59 (22.1%)
+ Stefan Roese 24 (9.0%)
+ Neil Armstrong 15 (5.6%)
+ Pankit Garg 12 (4.5%)
+ Michal Simek 9 (3.4%)
+ Marek Vasut 9 (3.4%)
+ Bin Meng 9 (3.4%)
+ Priit Laes 8 (3.0%)
+ Tom Rini 7 (2.6%)
+ Ezequiel Garcia 7 (2.6%)
+ Vinitha V Pillai 7 (2.6%)
+ Andreas Dannenberg 7 (2.6%)
+ Minkyu Kang 6 (2.2%)
+ Jagan Teki 5 (1.9%)
+ Daniel Schwierzeck 4 (1.5%)
+ Jerome Brunet 4 (1.5%)
+ Jean-Jacques Hiblot 4 (1.5%)
+ Simon Glass 4 (1.5%)
+ Ruchika Gupta 3 (1.1%)
+ Keerthy 3 (1.1%)
+ Fabien Lahoudere 3 (1.1%)
+ Philipp Tomsich 3 (1.1%)
+ Weijie Gao 3 (1.1%)
+ Rajesh Bhagat 3 (1.1%)
+ Grygorii Strashko 2 (0.7%)
+ Sriram Dash 2 (0.7%)
+ Schuyler Patton 2 (0.7%)
+ James Doublesin 2 (0.7%)
+ Hiroyuki Yokoyama 2 (0.7%)
+ York Sun 2 (0.7%)
+ Anatolij Gustschin 2 (0.7%)
+ Heiko Stuebner 2 (0.7%)
+ Siva Durga Prasad Paladugu 2 (0.7%)
+ Tuomas Tynkkynen 2 (0.7%)
+ Peng Fan 2 (0.7%)
+ Ryder Lee 2 (0.7%)
+ Shawn Guo 1 (0.4%)
+ Praneeth Bajjuri 1 (0.4%)
+ Javier Martínez Canillas 1 (0.4%)
+ Jon Nettleton 1 (0.4%)
+ Robert Berger 1 (0.4%)
+ Josua Mayer 1 (0.4%)
+ Bao Xiaowei 1 (0.4%)
+ Meenakshi Aggarwal 1 (0.4%)
+ Vabhav Sharma 1 (0.4%)
+ Rajat Srivastava 1 (0.4%)
+ Fabio Berton 1 (0.4%)
+ Oleksandr Tymoshenko 1 (0.4%)
+ Wu Zou 1 (0.4%)
+ Christophe Kerello 1 (0.4%)
+ Hou Zhiqiang 1 (0.4%)
+ Stefano Babic 1 (0.4%)
+ Vignesh R 1 (0.4%)
+ Icenowy Zheng 1 (0.4%)
+ Baruch Siach 1 (0.4%)
+ Lukas Auer 1 (0.4%)
+ Christoph Muellner 1 (0.4%)
+ Vasily Khoruzhick 1 (0.4%)
+ Patrice Chotard 1 (0.4%)
+ Andre Przywara 1 (0.4%)
+ Lokesh Vutla 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 665)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 197 (29.6%)
+ Tom Rini 86 (12.9%)
+ Bin Meng 47 (7.1%)
+ York Sun 40 (6.0%)
+ Philipp Tomsich 37 (5.6%)
+ Lukas Auer 27 (4.1%)
+ Stefan Roese 25 (3.8%)
+ Anup Patel 22 (3.3%)
+ Heiko Schocher 20 (3.0%)
+ Jagan Teki 18 (2.7%)
+ Rick Chen 18 (2.7%)
+ Daniel Schwierzeck 14 (2.1%)
+ Anatolij Gustschin 12 (1.8%)
+ Joel Stanley 12 (1.8%)
+ Heinrich Schuchardt 10 (1.5%)
+ Lukasz Majewski 9 (1.4%)
+ Alexander Graf 6 (0.9%)
+ Marek Vasut 6 (0.9%)
+ Dennis Gilmore 6 (0.9%)
+ Peng Fan 5 (0.8%)
+ Patrice Chotard 4 (0.6%)
+ Patrick Delaunay 3 (0.5%)
+ Stefan Agner 3 (0.5%)
+ Breno Lima 3 (0.5%)
+ Miquel Raynal 3 (0.5%)
+ Felix Brack 3 (0.5%)
+ Jean-Jacques Hiblot 2 (0.3%)
+ Andre Przywara 2 (0.3%)
+ Lokesh Vutla 2 (0.3%)
+ Christian Gmeiner 2 (0.3%)
+ Joe Hershberger 2 (0.3%)
+ Jerome Brunet 1 (0.2%)
+ Weijie Gao 1 (0.2%)
+ Stefano Babic 1 (0.2%)
+ Sam Protsenko 1 (0.2%)
+ Richard Röjfors 1 (0.2%)
+ Faiz Abbas 1 (0.2%)
+ Palmer Dabbelt 1 (0.2%)
+ Jens Wiklander 1 (0.2%)
+ Stephen Warren 1 (0.2%)
+ Jack Mitchell 1 (0.2%)
+ Joakim Tjernlund 1 (0.2%)
+ Andy Yan 1 (0.2%)
+ Nishanth Menon 1 (0.2%)
+ Chen-Yu Tsai 1 (0.2%)
+ Igor Opaniuk 1 (0.2%)
+ Hannes Schmelzer 1 (0.2%)
+ Sumit Garg 1 (0.2%)
+ Boris Brezillon 1 (0.2%)
+ Simon Goldschmidt 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 78)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heiko Schocher 11 (14.1%)
+ Matthias Brugger 7 (9.0%)
+ Bin Meng 6 (7.7%)
+ Dennis Gilmore 6 (7.7%)
+ Jerome Brunet 4 (5.1%)
+ Peter Robinson 4 (5.1%)
+ Maxime Ripard 4 (5.1%)
+ Klaus Goger 4 (5.1%)
+ Jagan Teki 3 (3.8%)
+ Felix Brack 3 (3.8%)
+ Priit Laes 3 (3.8%)
+ Baruch Siach 2 (2.6%)
+ Simon Glass 1 (1.3%)
+ Lukas Auer 1 (1.3%)
+ Stefan Roese 1 (1.3%)
+ Sam Protsenko 1 (1.3%)
+ Richard Röjfors 1 (1.3%)
+ Stephen Warren 1 (1.3%)
+ Jack Mitchell 1 (1.3%)
+ Igor Opaniuk 1 (1.3%)
+ Hannes Schmelzer 1 (1.3%)
+ Sumit Garg 1 (1.3%)
+ Ryder Lee 1 (1.3%)
+ Christoph Muellner 1 (1.3%)
+ Vasily Khoruzhick 1 (1.3%)
+ Jonathan Gray 1 (1.3%)
+ Ricardo Salveti 1 (1.3%)
+ Marek Kraus 1 (1.3%)
+ Vagrant Cascadian 1 (1.3%)
+ Patrick.Delaunay 1 (1.3%)
+ Soeren Moch 1 (1.3%)
+ Frank Wunderlich 1 (1.3%)
+ Loic Devulder 1 (1.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 78)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Boris Brezillon 11 (14.1%)
+ Ryder Lee 7 (9.0%)
+ Vasily Khoruzhick 7 (9.0%)
+ Aditya Prayoga 6 (7.7%)
+ Philipp Tomsich 5 (6.4%)
+ Anup Patel 5 (6.4%)
+ Alexander Graf 5 (6.4%)
+ Jean-Jacques Hiblot 5 (6.4%)
+ Neil Armstrong 4 (5.1%)
+ Patrick Delaunay 3 (3.8%)
+ Bin Meng 2 (2.6%)
+ Jagan Teki 2 (2.6%)
+ Weijie Gao 2 (2.6%)
+ Fabio Estevam 2 (2.6%)
+ Kever Yang 2 (2.6%)
+ Manivannan Sadhasivam 2 (2.6%)
+ Anatolij Gustschin 1 (1.3%)
+ Heinrich Schuchardt 1 (1.3%)
+ Andre Przywara 1 (1.3%)
+ Shawn Guo 1 (1.3%)
+ Icenowy Zheng 1 (1.3%)
+ Chris Packham 1 (1.3%)
+ From: Karl Palsson 1 (1.3%)
+ Randy Li 1 (1.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 3 (10.3%)
+ Jean-Jacques Hiblot 2 (6.9%)
+ Jagan Teki 1 (3.4%)
+ Priit Laes 1 (3.4%)
+ Baruch Siach 1 (3.4%)
+ Simon Glass 1 (3.4%)
+ Lukas Auer 1 (3.4%)
+ Stefan Roese 1 (3.4%)
+ Sam Protsenko 1 (3.4%)
+ Igor Opaniuk 1 (3.4%)
+ Jonathan Gray 1 (3.4%)
+ Ricardo Salveti 1 (3.4%)
+ Loic Devulder 1 (3.4%)
+ Marek Vasut 1 (3.4%)
+ Patrice Chotard 1 (3.4%)
+ Joakim Tjernlund 1 (3.4%)
+ Alex Kiernan 1 (3.4%)
+ Siarhei Siamashka 1 (3.4%)
+ Assaf Agmon 1 (3.4%)
+ Liam O'Shaughnessy 1 (3.4%)
+ Dominik Adamski 1 (3.4%)
+ Roosen Henri 1 (3.4%)
+ Jakob Unterwurzacher 1 (3.4%)
+ Chris Spencer 1 (3.4%)
+ AKASHI Takahiro 1 (3.4%)
+ Andy Shevchenko 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 6 (20.7%)
+ Heinrich Schuchardt 3 (10.3%)
+ Jean-Jacques Hiblot 3 (10.3%)
+ Bin Meng 3 (10.3%)
+ Fabio Estevam 2 (6.9%)
+ Tom Rini 2 (6.9%)
+ Lokesh Vutla 2 (6.9%)
+ Philipp Tomsich 1 (3.4%)
+ Shawn Guo 1 (3.4%)
+ Christoph Muellner 1 (3.4%)
+ Lukasz Majewski 1 (3.4%)
+ Simon Goldschmidt 1 (3.4%)
+ Christophe Leroy 1 (3.4%)
+ Guillaume GARDET 1 (3.4%)
+ Adam Ford 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 473 (41.2%)
+ Google, Inc. 136 (11.8%)
+ Texas Instruments 97 (8.4%)
+ NXP 81 (7.0%)
+ DENX Software Engineering 80 (7.0%)
+ BayLibre SAS 29 (2.5%)
+ ST Microelectronics 29 (2.5%)
+ AMD 28 (2.4%)
+ Linaro 24 (2.1%)
+ Intel 23 (2.0%)
+ Konsulko Group 21 (1.8%)
+ Guntermann & Drunck 18 (1.6%)
+ Bootlin 15 (1.3%)
+ Amarula Solutions 14 (1.2%)
+ Pepperl+Fuchs 13 (1.1%)
+ O.S. Systems 10 (0.9%)
+ ARM 9 (0.8%)
+ Socionext Inc. 9 (0.8%)
+ Rockchip 7 (0.6%)
+ Xilinx 7 (0.6%)
+ Toradex 6 (0.5%)
+ MIPS 5 (0.4%)
+ Renesas Electronics 4 (0.3%)
+ Collabora Ltd. 3 (0.3%)
+ General Electric 3 (0.3%)
+ Boundary Devices 2 (0.2%)
+ CompuLab 1 (0.1%)
+ Samsung 1 (0.1%)
+ SUSE 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 38226 (36.6%)
+ NXP 11398 (10.9%)
+ DENX Software Engineering 10470 (10.0%)
+ Google, Inc. 8148 (7.8%)
+ Texas Instruments 7968 (7.6%)
+ BayLibre SAS 6100 (5.8%)
+ Bootlin 4675 (4.5%)
+ MIPS 3514 (3.4%)
+ Linaro 3483 (3.3%)
+ Guntermann & Drunck 1738 (1.7%)
+ Pepperl+Fuchs 1358 (1.3%)
+ O.S. Systems 1179 (1.1%)
+ Socionext Inc. 1112 (1.1%)
+ ARM 1049 (1.0%)
+ ST Microelectronics 1020 (1.0%)
+ Intel 864 (0.8%)
+ Konsulko Group 618 (0.6%)
+ Amarula Solutions 492 (0.5%)
+ AMD 200 (0.2%)
+ Xilinx 179 (0.2%)
+ SUSE 151 (0.1%)
+ General Electric 127 (0.1%)
+ Collabora Ltd. 116 (0.1%)
+ Rockchip 53 (0.1%)
+ Renesas Electronics 23 (0.0%)
+ Toradex 22 (0.0%)
+ Boundary Devices 18 (0.0%)
+ Samsung 12 (0.0%)
+ CompuLab 5 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 267)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 59 (22.1%)
+ (Unknown) 55 (20.6%)
+ NXP 36 (13.5%)
+ DENX Software Engineering 27 (10.1%)
+ Texas Instruments 23 (8.6%)
+ BayLibre SAS 19 (7.1%)
+ Collabora Ltd. 10 (3.7%)
+ Xilinx 9 (3.4%)
+ Konsulko Group 7 (2.6%)
+ Samsung 6 (2.2%)
+ Amarula Solutions 5 (1.9%)
+ Google, Inc. 4 (1.5%)
+ ST Microelectronics 2 (0.7%)
+ Renesas Electronics 2 (0.7%)
+ Linaro 1 (0.4%)
+ O.S. Systems 1 (0.4%)
+ ARM 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 141)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65 (46.1%)
+ NXP 12 (8.5%)
+ Linaro 9 (6.4%)
+ DENX Software Engineering 8 (5.7%)
+ Texas Instruments 8 (5.7%)
+ BayLibre SAS 3 (2.1%)
+ Collabora Ltd. 3 (2.1%)
+ Xilinx 3 (2.1%)
+ ST Microelectronics 3 (2.1%)
+ Bootlin 3 (2.1%)
+ Intel 3 (2.1%)
+ Amarula Solutions 2 (1.4%)
+ Renesas Electronics 2 (1.4%)
+ ARM 2 (1.4%)
+ SUSE 1 (0.7%)
+ Konsulko Group 1 (0.7%)
+ Samsung 1 (0.7%)
+ Google, Inc. 1 (0.7%)
+ O.S. Systems 1 (0.7%)
+ MIPS 1 (0.7%)
+ Guntermann & Drunck 1 (0.7%)
+ Pepperl+Fuchs 1 (0.7%)
+ Socionext Inc. 1 (0.7%)
+ AMD 1 (0.7%)
+ General Electric 1 (0.7%)
+ Rockchip 1 (0.7%)
+ Toradex 1 (0.7%)
+ Boundary Devices 1 (0.7%)
+ CompuLab 1 (0.7%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2019.04.rst b/doc/develop/statistics/u-boot-stats-v2019.04.rst
new file mode 100644
index 0000000..6d76e0e
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2019.04.rst
@@ -0,0 +1,805 @@
+:orphan:
+
+Release Statistics for U-Boot v2019.04
+======================================
+
+* Processed 1193 csets from 182 developers
+
+* 28 employers found
+
+* A total of 76038 lines added, 22237 removed (delta 53801)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 94 (7.9%)
+ Simon Glass 90 (7.5%)
+ Michal Simek 64 (5.4%)
+ Marek Vasut 55 (4.6%)
+ Jagan Teki 45 (3.8%)
+ Simon Goldschmidt 32 (2.7%)
+ Chris Packham 29 (2.4%)
+ Adam Ford 26 (2.2%)
+ Horatiu Vultur 26 (2.2%)
+ Fabio Estevam 24 (2.0%)
+ Vignesh R 23 (1.9%)
+ Abel Vesa 21 (1.8%)
+ Tom Rini 18 (1.5%)
+ Patrick Delaunay 18 (1.5%)
+ AKASHI Takahiro 18 (1.5%)
+ Krzysztof Kozlowski 17 (1.4%)
+ Tim Harvey 17 (1.4%)
+ Philippe Reynes 16 (1.3%)
+ Stefan Roese 14 (1.2%)
+ Andrew F. Davis 14 (1.2%)
+ Siva Durga Prasad Paladugu 14 (1.2%)
+ Mian Yousaf Kaukab 13 (1.1%)
+ Lars Povlsen 13 (1.1%)
+ Baruch Siach 12 (1.0%)
+ Peng Fan 12 (1.0%)
+ Stefan Agner 12 (1.0%)
+ David Wu 10 (0.8%)
+ Rajesh Bhagat 10 (0.8%)
+ Anup Patel 10 (0.8%)
+ Marek Behún 10 (0.8%)
+ Jean-Jacques Hiblot 9 (0.8%)
+ Martyn Welch 9 (0.8%)
+ Hiroyuki Yokoyama 9 (0.8%)
+ Weijie Gao 9 (0.8%)
+ Lukasz Majewski 8 (0.7%)
+ Philipp Tomsich 8 (0.7%)
+ Masahiro Yamada 8 (0.7%)
+ Bryan O'Donoghue 8 (0.7%)
+ Andy Shevchenko 8 (0.7%)
+ Peng Ma 8 (0.7%)
+ Ramon Fried 8 (0.7%)
+ Neil Armstrong 7 (0.6%)
+ Alexander Graf 7 (0.6%)
+ Daniel Schwierzeck 7 (0.6%)
+ Bin Meng 7 (0.6%)
+ Ismael Luceno Cortes 7 (0.6%)
+ Lukas Auer 7 (0.6%)
+ Tien Fong Chee 7 (0.6%)
+ Breno Matheus Lima 7 (0.6%)
+ Boris Brezillon 7 (0.6%)
+ Enric Balletbo i Serra 7 (0.6%)
+ Hannes Schmelzer 6 (0.5%)
+ Alexey Brodkin 6 (0.5%)
+ Andre Przywara 6 (0.5%)
+ Peter Robinson 6 (0.5%)
+ Priyanka Jain 6 (0.5%)
+ Shawn Guo 6 (0.5%)
+ Maxime Jourdan 6 (0.5%)
+ Heiko Schocher 5 (0.4%)
+ Pankaj Bansal 5 (0.4%)
+ Atish Patra 5 (0.4%)
+ Ye Li 5 (0.4%)
+ Rick Chen 5 (0.4%)
+ Lokesh Vutla 4 (0.3%)
+ Faiz Abbas 4 (0.3%)
+ Meenakshi Aggarwal 4 (0.3%)
+ Marcin Niestroj 4 (0.3%)
+ Laurentiu Tudor 4 (0.3%)
+ Manivannan Sadhasivam 4 (0.3%)
+ Priit Laes 4 (0.3%)
+ Gregory CLEMENT 4 (0.3%)
+ Eugen Hristev 3 (0.3%)
+ Shyam Saini 3 (0.3%)
+ Ley Foon Tan 3 (0.3%)
+ Eugeniu Rosca 3 (0.3%)
+ York Sun 3 (0.3%)
+ Felix Brack 3 (0.3%)
+ Tristan Bastian 3 (0.3%)
+ Marcel Ziswiler 3 (0.3%)
+ Pankit Garg 3 (0.3%)
+ Chen-Yu Tsai 3 (0.3%)
+ Patrick Bruenn 3 (0.3%)
+ Xiaowei Bao 3 (0.3%)
+ Andrejs Cainikovs 2 (0.2%)
+ Matthias Brugger 2 (0.2%)
+ Keerthy 2 (0.2%)
+ Minkyu Kang 2 (0.2%)
+ Vagrant Cascadian 2 (0.2%)
+ Stephen Warren 2 (0.2%)
+ Derald D. Woods 2 (0.2%)
+ Igor Opaniuk 2 (0.2%)
+ Roman Kapl 2 (0.2%)
+ Max Krummenacher 2 (0.2%)
+ Luis Araneda 2 (0.2%)
+ Olaf Mandel 2 (0.2%)
+ Sam Protsenko 2 (0.2%)
+ Fabien Parent 2 (0.2%)
+ Stefan Theil 2 (0.2%)
+ Valentin-catalin Neacsu 2 (0.2%)
+ Mike Looijmans 2 (0.2%)
+ Joakim Tjernlund 2 (0.2%)
+ Hou Zhiqiang 2 (0.2%)
+ Ezequiel Garcia 2 (0.2%)
+ Thomas Petazzoni 1 (0.1%)
+ 默默 1 (0.1%)
+ Chris Spencer 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Kever Yang 1 (0.1%)
+ BOUGH CHEN 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Eugeniy Paltsev 1 (0.1%)
+ Sébastien Szymanski 1 (0.1%)
+ Dalon Westergreen 1 (0.1%)
+ Sean Nyekjaer 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Prabhakar Kushwaha 1 (0.1%)
+ Pramod Kumar 1 (0.1%)
+ Ioana Ciocoi Radulescu 1 (0.1%)
+ Soeren Moch 1 (0.1%)
+ Anand Moon 1 (0.1%)
+ Dinh Nguyen 1 (0.1%)
+ Jordan Hand 1 (0.1%)
+ Ondrej Jirman 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Alexander Dahl 1 (0.1%)
+ Yunfeng Ding 1 (0.1%)
+ David Rivshin 1 (0.1%)
+ Julien Béraud 1 (0.1%)
+ Jan Kiszka 1 (0.1%)
+ Gerard Salvatella 1 (0.1%)
+ Jonathan Hunter 1 (0.1%)
+ Gervais, Francois 1 (0.1%)
+ Bin Liu 1 (0.1%)
+ Kurban Mallachiev 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Wen He 1 (0.1%)
+ Udit Agarwal 1 (0.1%)
+ Vabhav Sharma 1 (0.1%)
+ Yinbo Zhu 1 (0.1%)
+ Ang, Chee Hong 1 (0.1%)
+ Venkatesh Yadav Abbarapu 1 (0.1%)
+ Shubhrajyoti Datta 1 (0.1%)
+ Amit Kucheria 1 (0.1%)
+ Mounika Grace Akula 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Adam Heinrich 1 (0.1%)
+ Leif Lindholm 1 (0.1%)
+ Tomas Novotny 1 (0.1%)
+ Bernhard Messerklinger 1 (0.1%)
+ Hauke Mehrtens 1 (0.1%)
+ Andreas Dannenberg 1 (0.1%)
+ Vladimir Vid 1 (0.1%)
+ Marty E. Plummer 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Jorge Ramire-Ortiz 1 (0.1%)
+ Jorge Ramirez-Ortiz 1 (0.1%)
+ Jerome Brunet 1 (0.1%)
+ Mario Six 1 (0.1%)
+ Greg Czerniak 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Robert P. J. Day 1 (0.1%)
+ Sean Nyekjær 1 (0.1%)
+ Carlo Caione 1 (0.1%)
+ Aditya Prayoga 1 (0.1%)
+ Andreas Pretzsch 1 (0.1%)
+ Thomas RIENOESSL 1 (0.1%)
+ Anton Gerasimov 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ T Karthik Reddy 1 (0.1%)
+ Michael Tretter 1 (0.1%)
+ Quentin Schulz 1 (0.1%)
+ Aleksandr Aleksandrov 1 (0.1%)
+ Frank Wunderlich 1 (0.1%)
+ Patrick Wildt 1 (0.1%)
+ Florinel Iordache 1 (0.1%)
+ Álvaro Fernández Rojas 1 (0.1%)
+ Josef Lusticky 1 (0.1%)
+ Patrice Chotard 1 (0.1%)
+ Tomasz Gorochowik 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Christian GMEINER 1 (0.1%)
+ Yan Liu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 10585 (11.8%)
+ David Wu 9172 (10.2%)
+ Vignesh R 6854 (7.7%)
+ Neil Armstrong 5440 (6.1%)
+ Horatiu Vultur 5136 (5.7%)
+ Jagan Teki 4056 (4.5%)
+ AKASHI Takahiro 3838 (4.3%)
+ Abel Vesa 2983 (3.3%)
+ Heinrich Schuchardt 1925 (2.2%)
+ Weijie Gao 1757 (2.0%)
+ Chris Packham 1670 (1.9%)
+ Enric Balletbo i Serra 1647 (1.8%)
+ Pankaj Bansal 1588 (1.8%)
+ Anup Patel 1477 (1.6%)
+ Michal Simek 1438 (1.6%)
+ Simon Goldschmidt 1408 (1.6%)
+ Patrick Delaunay 1337 (1.5%)
+ Lars Povlsen 1304 (1.5%)
+ Adam Ford 1260 (1.4%)
+ Priyanka Jain 1244 (1.4%)
+ Leif Lindholm 1183 (1.3%)
+ Breno Matheus Lima 1047 (1.2%)
+ Martyn Welch 1039 (1.2%)
+ Fabio Estevam 943 (1.1%)
+ Marek Vasut 940 (1.0%)
+ Gregory CLEMENT 916 (1.0%)
+ Heiko Schocher 908 (1.0%)
+ Siva Durga Prasad Paladugu 778 (0.9%)
+ Rajesh Bhagat 769 (0.9%)
+ Marek Behún 683 (0.8%)
+ Stefan Roese 681 (0.8%)
+ Tim Harvey 671 (0.7%)
+ Pankit Garg 650 (0.7%)
+ Shawn Guo 573 (0.6%)
+ Boris Brezillon 563 (0.6%)
+ Bryan O'Donoghue 538 (0.6%)
+ Hannes Schmelzer 501 (0.6%)
+ Jorge Ramirez-Ortiz 480 (0.5%)
+ Tom Rini 479 (0.5%)
+ Lukasz Majewski 440 (0.5%)
+ Peng Fan 384 (0.4%)
+ Philippe Reynes 359 (0.4%)
+ Atish Patra 350 (0.4%)
+ Stefan Agner 321 (0.4%)
+ Vladimir Vid 313 (0.3%)
+ Marty E. Plummer 304 (0.3%)
+ Tien Fong Chee 299 (0.3%)
+ Aleksandr Aleksandrov 299 (0.3%)
+ Andrew F. Davis 298 (0.3%)
+ Chen-Yu Tsai 286 (0.3%)
+ Marcin Niestroj 274 (0.3%)
+ Peter Robinson 253 (0.3%)
+ Eugeniy Paltsev 251 (0.3%)
+ Krzysztof Kozlowski 217 (0.2%)
+ Daniel Schwierzeck 212 (0.2%)
+ Philipp Tomsich 197 (0.2%)
+ Peng Ma 195 (0.2%)
+ Masahiro Yamada 158 (0.2%)
+ Ramon Fried 146 (0.2%)
+ Faiz Abbas 146 (0.2%)
+ Roman Kapl 140 (0.2%)
+ Andre Przywara 132 (0.1%)
+ Andy Shevchenko 130 (0.1%)
+ Jerome Brunet 123 (0.1%)
+ Hiroyuki Yokoyama 122 (0.1%)
+ Manivannan Sadhasivam 121 (0.1%)
+ Derald D. Woods 119 (0.1%)
+ Meenakshi Aggarwal 112 (0.1%)
+ Jean-Jacques Hiblot 109 (0.1%)
+ Eugeniu Rosca 102 (0.1%)
+ Mian Yousaf Kaukab 100 (0.1%)
+ Alexander Graf 95 (0.1%)
+ Lukas Auer 90 (0.1%)
+ Baruch Siach 87 (0.1%)
+ Maxime Jourdan 85 (0.1%)
+ Patrick Bruenn 74 (0.1%)
+ Gerard Salvatella 74 (0.1%)
+ Udit Agarwal 71 (0.1%)
+ Ezequiel Garcia 65 (0.1%)
+ Jordan Hand 65 (0.1%)
+ Álvaro Fernández Rojas 62 (0.1%)
+ Alison Wang 58 (0.1%)
+ Bernhard Messerklinger 55 (0.1%)
+ Lokesh Vutla 54 (0.1%)
+ Ye Li 53 (0.1%)
+ Ismael Luceno Cortes 52 (0.1%)
+ Bin Meng 44 (0.0%)
+ Angelo Dureghello 43 (0.0%)
+ Valentin-catalin Neacsu 39 (0.0%)
+ Jernej Skrabec 37 (0.0%)
+ Xiaowei Bao 36 (0.0%)
+ Matthias Brugger 36 (0.0%)
+ Alexey Brodkin 31 (0.0%)
+ Priit Laes 31 (0.0%)
+ Ley Foon Tan 30 (0.0%)
+ Carlo Caione 29 (0.0%)
+ Eugen Hristev 28 (0.0%)
+ Jonathan Hunter 28 (0.0%)
+ Mike Looijmans 27 (0.0%)
+ Laurentiu Tudor 26 (0.0%)
+ Florinel Iordache 25 (0.0%)
+ Max Krummenacher 24 (0.0%)
+ Shyam Saini 23 (0.0%)
+ Frank Wunderlich 23 (0.0%)
+ York Sun 22 (0.0%)
+ Sam Protsenko 21 (0.0%)
+ T Karthik Reddy 20 (0.0%)
+ Felix Brack 19 (0.0%)
+ Andreas Dannenberg 18 (0.0%)
+ Rick Chen 15 (0.0%)
+ 默默 15 (0.0%)
+ Stefan Mavrodiev 15 (0.0%)
+ Shubhrajyoti Datta 15 (0.0%)
+ Aditya Prayoga 15 (0.0%)
+ Jorge Ramire-Ortiz 14 (0.0%)
+ Marcel Ziswiler 13 (0.0%)
+ Andrejs Cainikovs 13 (0.0%)
+ Fabien Parent 13 (0.0%)
+ Keerthy 12 (0.0%)
+ Michael Tretter 12 (0.0%)
+ Christian GMEINER 12 (0.0%)
+ Luis Araneda 11 (0.0%)
+ Bin Liu 11 (0.0%)
+ Ang, Chee Hong 11 (0.0%)
+ Igor Opaniuk 9 (0.0%)
+ Joakim Tjernlund 8 (0.0%)
+ Wen He 8 (0.0%)
+ Tomasz Gorochowik 8 (0.0%)
+ Stefan Theil 7 (0.0%)
+ Sébastien Szymanski 7 (0.0%)
+ Hou Zhiqiang 6 (0.0%)
+ Soeren Moch 6 (0.0%)
+ Yunfeng Ding 5 (0.0%)
+ Jonathan Gray 5 (0.0%)
+ Patrice Chotard 5 (0.0%)
+ Kurban Mallachiev 4 (0.0%)
+ Tristan Bastian 3 (0.0%)
+ Minkyu Kang 3 (0.0%)
+ Stephen Warren 3 (0.0%)
+ Dalon Westergreen 3 (0.0%)
+ Ioana Ciocoi Radulescu 3 (0.0%)
+ Mario Six 3 (0.0%)
+ Sean Nyekjær 3 (0.0%)
+ Quentin Schulz 3 (0.0%)
+ Vagrant Cascadian 2 (0.0%)
+ Olaf Mandel 2 (0.0%)
+ Thomas Petazzoni 2 (0.0%)
+ Michael Trimarchi 2 (0.0%)
+ BOUGH CHEN 2 (0.0%)
+ Sean Nyekjaer 2 (0.0%)
+ Pramod Kumar 2 (0.0%)
+ Dinh Nguyen 2 (0.0%)
+ Gervais, Francois 2 (0.0%)
+ Vabhav Sharma 2 (0.0%)
+ Mounika Grace Akula 2 (0.0%)
+ Hauke Mehrtens 2 (0.0%)
+ Andreas Pretzsch 2 (0.0%)
+ Thomas RIENOESSL 2 (0.0%)
+ Sekhar Nori 2 (0.0%)
+ Chris Spencer 1 (0.0%)
+ Kever Yang 1 (0.0%)
+ Prabhakar Kushwaha 1 (0.0%)
+ Anand Moon 1 (0.0%)
+ Ondrej Jirman 1 (0.0%)
+ Alexander Dahl 1 (0.0%)
+ David Rivshin 1 (0.0%)
+ Julien Béraud 1 (0.0%)
+ Jan Kiszka 1 (0.0%)
+ Zhao Qiang 1 (0.0%)
+ Yinbo Zhu 1 (0.0%)
+ Venkatesh Yadav Abbarapu 1 (0.0%)
+ Amit Kucheria 1 (0.0%)
+ Adam Heinrich 1 (0.0%)
+ Tomas Novotny 1 (0.0%)
+ Mark Kettenis 1 (0.0%)
+ Greg Czerniak 1 (0.0%)
+ Robert P. J. Day 1 (0.0%)
+ Anton Gerasimov 1 (0.0%)
+ Luca Ceresoli 1 (0.0%)
+ Patrick Wildt 1 (0.0%)
+ Josef Lusticky 1 (0.0%)
+ Yan Liu 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ David Wu 4036 (18.1%)
+ Michal Simek 461 (2.1%)
+ Eugeniy Paltsev 251 (1.1%)
+ Peter Robinson 187 (0.8%)
+ Tom Rini 148 (0.7%)
+ Eugeniu Rosca 100 (0.4%)
+ Tien Fong Chee 39 (0.2%)
+ Shubhrajyoti Datta 15 (0.1%)
+ Baruch Siach 14 (0.1%)
+ Derald D. Woods 13 (0.1%)
+ Jean-Jacques Hiblot 11 (0.0%)
+ Alexey Brodkin 10 (0.0%)
+ Keerthy 10 (0.0%)
+ Eugen Hristev 9 (0.0%)
+ Daniel Schwierzeck 8 (0.0%)
+ Andreas Dannenberg 8 (0.0%)
+ Lukas Auer 7 (0.0%)
+ Ang, Chee Hong 5 (0.0%)
+ Patrice Chotard 5 (0.0%)
+ Minkyu Kang 2 (0.0%)
+ Vabhav Sharma 2 (0.0%)
+ Quentin Schulz 1 (0.0%)
+ BOUGH CHEN 1 (0.0%)
+ Hauke Mehrtens 1 (0.0%)
+ Yinbo Zhu 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 252)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 49 (19.4%)
+ Stefan Roese 29 (11.5%)
+ Michal Simek 28 (11.1%)
+ Minkyu Kang 16 (6.3%)
+ Tom Warren 11 (4.4%)
+ Tom Rini 9 (3.6%)
+ Marek Vasut 9 (3.6%)
+ Neil Armstrong 9 (3.6%)
+ Prabhakar Kushwaha 7 (2.8%)
+ Jagan Teki 7 (2.8%)
+ Mark Lee 5 (2.0%)
+ Atish Patra 5 (2.0%)
+ Pankit Garg 5 (2.0%)
+ Anup Patel 5 (2.0%)
+ Sriram Dash 4 (1.6%)
+ Maxime Jourdan 4 (1.6%)
+ Otavio Salvador 3 (1.2%)
+ Andre Przywara 3 (1.2%)
+ Rajesh Bhagat 3 (1.2%)
+ Wasim Khan 2 (0.8%)
+ Wolfram Sang 2 (0.8%)
+ Ruchika Gupta 2 (0.8%)
+ Bin Meng 2 (0.8%)
+ Matthias Brugger 2 (0.8%)
+ Jorge Ramire-Ortiz 2 (0.8%)
+ Peng Ma 2 (0.8%)
+ Alexey Brodkin 1 (0.4%)
+ Vabhav Sharma 1 (0.4%)
+ Yinbo Zhu 1 (0.4%)
+ Shengzhou Liu 1 (0.4%)
+ Paul Walmsley 1 (0.4%)
+ Philippe Schenker 1 (0.4%)
+ Yogesh Gaur 1 (0.4%)
+ Chuanhua Han 1 (0.4%)
+ Udit Kumar 1 (0.4%)
+ Olof Johansson 1 (0.4%)
+ Rob Clark 1 (0.4%)
+ Lionel Debieve 1 (0.4%)
+ Kevin Hilman 1 (0.4%)
+ Nitin Garg 1 (0.4%)
+ Wojciech Tatarski 1 (0.4%)
+ Ryder Lee 1 (0.4%)
+ Michael Trimarchi 1 (0.4%)
+ Marcel Ziswiler 1 (0.4%)
+ Álvaro Fernández Rojas 1 (0.4%)
+ Stefan Agner 1 (0.4%)
+ Udit Agarwal 1 (0.4%)
+ Meenakshi Aggarwal 1 (0.4%)
+ Siva Durga Prasad Paladugu 1 (0.4%)
+ Heinrich Schuchardt 1 (0.4%)
+ Vignesh R 1 (0.4%)
+ AKASHI Takahiro 1 (0.4%)
+ Simon Glass 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 616)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 87 (14.1%)
+ Bin Meng 58 (9.4%)
+ Tom Rini 42 (6.8%)
+ Philipp Tomsich 42 (6.8%)
+ Prabhakar Kushwaha 41 (6.7%)
+ Jagan Teki 34 (5.5%)
+ Lukasz Majewski 27 (4.4%)
+ Heiko Schocher 25 (4.1%)
+ Stefan Roese 23 (3.7%)
+ Fabio Estevam 23 (3.7%)
+ York Sun 21 (3.4%)
+ Peng Fan 20 (3.2%)
+ Alexander Graf 17 (2.8%)
+ Daniel Schwierzeck 16 (2.6%)
+ Heinrich Schuchardt 15 (2.4%)
+ Anatolij Gustschin 15 (2.4%)
+ Andre Przywara 13 (2.1%)
+ Kever Yang 13 (2.1%)
+ Lukas Auer 10 (1.6%)
+ Lokesh Vutla 10 (1.6%)
+ Marek Vasut 9 (1.5%)
+ Andy Shevchenko 6 (1.0%)
+ Simon Goldschmidt 6 (1.0%)
+ Minkyu Kang 5 (0.8%)
+ Stefano Babic 3 (0.5%)
+ Horia Geanta 3 (0.5%)
+ Bharat Bhushan 3 (0.5%)
+ Otavio Salvador 2 (0.3%)
+ Stefan Agner 2 (0.3%)
+ Ashish Kumar 2 (0.3%)
+ Utkarsh Gupta 2 (0.3%)
+ Miquel Raynal 2 (0.3%)
+ Stephen Warren 2 (0.3%)
+ Ye Li 2 (0.3%)
+ Masahiro Yamada 2 (0.3%)
+ Bryan O'Donoghue 2 (0.3%)
+ Chris Packham 2 (0.3%)
+ Michal Simek 1 (0.2%)
+ Matthias Brugger 1 (0.2%)
+ Marcel Ziswiler 1 (0.2%)
+ AKASHI Takahiro 1 (0.2%)
+ Mario Six 1 (0.2%)
+ Dinh Nguyen 1 (0.2%)
+ Fugang Duan 1 (0.2%)
+ Christian Gmeiner 1 (0.2%)
+ Liviu Dudau 1 (0.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 17 (15.3%)
+ Stefan Roese 13 (11.7%)
+ Simon Goldschmidt 13 (11.7%)
+ Horatiu Vultur 12 (10.8%)
+ Anand Moon 9 (8.1%)
+ Bin Meng 5 (4.5%)
+ Fabio Estevam 4 (3.6%)
+ Simon Glass 3 (2.7%)
+ Michal Simek 3 (2.7%)
+ Heinrich Schuchardt 2 (1.8%)
+ Vignesh R 2 (1.8%)
+ Derald D. Woods 2 (1.8%)
+ Jörg Krause 2 (1.8%)
+ Ezequiel Garcia 2 (1.8%)
+ Shyam Saini 2 (1.8%)
+ Tim Harvey 2 (1.8%)
+ Lukasz Majewski 1 (0.9%)
+ Daniel Schwierzeck 1 (0.9%)
+ Stephen Warren 1 (0.9%)
+ Mario Six 1 (0.9%)
+ Vagrant Cascadian 1 (0.9%)
+ Fabio Berton 1 (0.9%)
+ Leigh Brown 1 (0.9%)
+ Marcelo Macedo 1 (0.9%)
+ Martin Fuzzey 1 (0.9%)
+ Ferry Toth 1 (0.9%)
+ Vasily Khoruzhick 1 (0.9%)
+ Dennis Gilmore 1 (0.9%)
+ Chris Spencer 1 (0.9%)
+ Andrejs Cainikovs 1 (0.9%)
+ Stefan Mavrodiev 1 (0.9%)
+ Frank Wunderlich 1 (0.9%)
+ Breno Matheus Lima 1 (0.9%)
+ Adam Ford 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 111)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Vignesh R 55 (49.5%)
+ Krzysztof Kozlowski 9 (8.1%)
+ Adam Ford 6 (5.4%)
+ Fabio Estevam 4 (3.6%)
+ Lukas Auer 4 (3.6%)
+ Jagan Teki 3 (2.7%)
+ Simon Goldschmidt 3 (2.7%)
+ Tom Rini 3 (2.7%)
+ Baruch Siach 3 (2.7%)
+ Daniel Schwierzeck 2 (1.8%)
+ David Wu 2 (1.8%)
+ Jean-Jacques Hiblot 2 (1.8%)
+ Hannes Schmelzer 2 (1.8%)
+ Abel Vesa 2 (1.8%)
+ Stefan Roese 1 (0.9%)
+ Bin Meng 1 (0.9%)
+ Simon Glass 1 (0.9%)
+ Alexander Graf 1 (0.9%)
+ Andy Shevchenko 1 (0.9%)
+ Chris Packham 1 (0.9%)
+ Michael Trimarchi 1 (0.9%)
+ Joakim Tjernlund 1 (0.9%)
+ Aditya Prayoga 1 (0.9%)
+ Martyn Welch 1 (0.9%)
+ Weijie Gao 1 (0.9%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 3 (14.3%)
+ Leigh Brown 2 (9.5%)
+ Lukas Auer 1 (4.8%)
+ Michal Simek 1 (4.8%)
+ Heinrich Schuchardt 1 (4.8%)
+ Stephen Warren 1 (4.8%)
+ Vagrant Cascadian 1 (4.8%)
+ Frank Wunderlich 1 (4.8%)
+ Breno Matheus Lima 1 (4.8%)
+ Kever Yang 1 (4.8%)
+ Otavio Salvador 1 (4.8%)
+ Siva Durga Prasad Paladugu 1 (4.8%)
+ Pablo Sebastián Greco 1 (4.8%)
+ Влад Мао 1 (4.8%)
+ Ofer Heifetz 1 (4.8%)
+ Sven Auhagen 1 (4.8%)
+ Daniel Evans 1 (4.8%)
+ Richard Purdie 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 21)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Alexander Graf 3 (14.3%)
+ Chris Packham 3 (14.3%)
+ Heinrich Schuchardt 2 (9.5%)
+ Fabio Estevam 2 (9.5%)
+ Simon Goldschmidt 2 (9.5%)
+ Baruch Siach 2 (9.5%)
+ Masahiro Yamada 2 (9.5%)
+ Jagan Teki 1 (4.8%)
+ Bin Meng 1 (4.8%)
+ Martyn Welch 1 (4.8%)
+ Derald D. Woods 1 (4.8%)
+ Bryan O'Donoghue 1 (4.8%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 477 (40.0%)
+ NXP 107 (9.0%)
+ Google, Inc. 90 (7.5%)
+ DENX Software Engineering 82 (6.9%)
+ AMD 64 (5.4%)
+ Texas Instruments 60 (5.0%)
+ Amarula Solutions 49 (4.1%)
+ Linaro 40 (3.4%)
+ Pepperl+Fuchs 32 (2.7%)
+ Intel 20 (1.7%)
+ ST Microelectronics 19 (1.6%)
+ BayLibre SAS 18 (1.5%)
+ Konsulko Group 18 (1.5%)
+ Toradex 18 (1.5%)
+ Xilinx 18 (1.5%)
+ Collabora Ltd. 16 (1.3%)
+ SUSE 15 (1.3%)
+ Rockchip 11 (0.9%)
+ Renesas Electronics 9 (0.8%)
+ Socionext Inc. 8 (0.7%)
+ ARM 6 (0.5%)
+ Bootlin 6 (0.5%)
+ NVidia 3 (0.3%)
+ Debian.org 2 (0.2%)
+ Samsung 2 (0.2%)
+ Guntermann & Drunck 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Siemens 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 24100 (26.9%)
+ Google, Inc. 10585 (11.8%)
+ NXP 9333 (10.4%)
+ Rockchip 9173 (10.2%)
+ Texas Instruments 7505 (8.4%)
+ Linaro 6275 (7.0%)
+ BayLibre SAS 5704 (6.4%)
+ Amarula Solutions 4081 (4.6%)
+ DENX Software Engineering 2969 (3.3%)
+ Collabora Ltd. 1891 (2.1%)
+ AMD 1438 (1.6%)
+ Pepperl+Fuchs 1408 (1.6%)
+ ST Microelectronics 1342 (1.5%)
+ Bootlin 921 (1.0%)
+ Xilinx 816 (0.9%)
+ Konsulko Group 479 (0.5%)
+ Intel 473 (0.5%)
+ Toradex 432 (0.5%)
+ Socionext Inc. 158 (0.2%)
+ SUSE 136 (0.2%)
+ ARM 132 (0.1%)
+ Renesas Electronics 122 (0.1%)
+ NVidia 31 (0.0%)
+ Pengutronix 12 (0.0%)
+ Samsung 3 (0.0%)
+ Guntermann & Drunck 3 (0.0%)
+ Debian.org 2 (0.0%)
+ Siemens 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 252)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ SUSE 51 (20.2%)
+ (Unknown) 35 (13.9%)
+ NXP 34 (13.5%)
+ DENX Software Engineering 29 (11.5%)
+ Xilinx 29 (11.5%)
+ BayLibre SAS 16 (6.3%)
+ Samsung 16 (6.3%)
+ NVidia 11 (4.4%)
+ Konsulko Group 9 (3.6%)
+ Amarula Solutions 8 (3.2%)
+ Toradex 3 (1.2%)
+ ARM 3 (1.2%)
+ O.S. Systems 3 (1.2%)
+ Google, Inc. 1 (0.4%)
+ Texas Instruments 1 (0.4%)
+ Linaro 1 (0.4%)
+ ST Microelectronics 1 (0.4%)
+ IBM 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 183)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 86 (47.0%)
+ NXP 27 (14.8%)
+ Texas Instruments 10 (5.5%)
+ Linaro 7 (3.8%)
+ BayLibre SAS 6 (3.3%)
+ Xilinx 5 (2.7%)
+ Intel 5 (2.7%)
+ DENX Software Engineering 4 (2.2%)
+ Toradex 4 (2.2%)
+ Amarula Solutions 3 (1.6%)
+ Collabora Ltd. 3 (1.6%)
+ Bootlin 3 (1.6%)
+ SUSE 2 (1.1%)
+ NVidia 2 (1.1%)
+ ST Microelectronics 2 (1.1%)
+ Rockchip 2 (1.1%)
+ Samsung 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ ARM 1 (0.5%)
+ Google, Inc. 1 (0.5%)
+ AMD 1 (0.5%)
+ Pepperl+Fuchs 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ Renesas Electronics 1 (0.5%)
+ Pengutronix 1 (0.5%)
+ Guntermann & Drunck 1 (0.5%)
+ Debian.org 1 (0.5%)
+ Siemens 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2019.07.rst b/doc/develop/statistics/u-boot-stats-v2019.07.rst
new file mode 100644
index 0000000..25af8ad
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2019.07.rst
@@ -0,0 +1,944 @@
+:orphan:
+
+Release Statistics for U-Boot v2019.07
+======================================
+
+* Processed 2047 csets from 215 developers
+
+* 29 employers found
+
+* A total of 169802 lines added, 64752 removed (delta 105050)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 166 (8.1%)
+ Marek Vasut 138 (6.7%)
+ Mario Six 103 (5.0%)
+ Patrick Delaunay 90 (4.4%)
+ Simon Glass 74 (3.6%)
+ Jagan Teki 69 (3.4%)
+ Marcel Ziswiler 69 (3.4%)
+ Patrice Chotard 60 (2.9%)
+ Kever Yang 52 (2.5%)
+ Stefan Roese 49 (2.4%)
+ Thierry Reding 49 (2.4%)
+ Philippe Reynes 43 (2.1%)
+ Lukasz Majewski 42 (2.1%)
+ Simon Goldschmidt 40 (2.0%)
+ AKASHI Takahiro 31 (1.5%)
+ Chris Packham 29 (1.4%)
+ Neil Armstrong 26 (1.3%)
+ Peng Fan 26 (1.3%)
+ Igor Opaniuk 23 (1.1%)
+ Adam Ford 23 (1.1%)
+ Marek Behún 23 (1.1%)
+ Horatiu Vultur 23 (1.1%)
+ Anatolij Gustschin 22 (1.1%)
+ Tom Rini 21 (1.0%)
+ Fabio Estevam 20 (1.0%)
+ Faiz Abbas 18 (0.9%)
+ Hou Zhiqiang 16 (0.8%)
+ Bartosz Golaszewski 16 (0.8%)
+ Eugeniu Rosca 16 (0.8%)
+ Tien Fong Chee 15 (0.7%)
+ Ley Foon Tan 14 (0.7%)
+ Stefan Agner 14 (0.7%)
+ Angelo Dureghello 13 (0.6%)
+ Jean-Jacques Hiblot 12 (0.6%)
+ Lukas Auer 12 (0.6%)
+ Rick Chen 12 (0.6%)
+ Heiko Schocher 11 (0.5%)
+ Philipp Tomsich 11 (0.5%)
+ Max Krummenacher 11 (0.5%)
+ Bin Meng 10 (0.5%)
+ Michal Simek 10 (0.5%)
+ David Wu 10 (0.5%)
+ Baruch Siach 10 (0.5%)
+ Andre Przywara 10 (0.5%)
+ Soeren Moch 10 (0.5%)
+ Ian Ray 10 (0.5%)
+ Masahiro Yamada 9 (0.4%)
+ Yinbo Zhu 9 (0.4%)
+ Peng Ma 9 (0.4%)
+ Hannes Schmelzer 9 (0.4%)
+ Andrew F. Davis 9 (0.4%)
+ Siva Durga Prasad Paladugu 9 (0.4%)
+ Murali Karicheri 9 (0.4%)
+ Sjoerd Simons 8 (0.4%)
+ Eugen Hristev 8 (0.4%)
+ Jun Nie 8 (0.4%)
+ Fabien Parent 8 (0.4%)
+ Lokesh Vutla 8 (0.4%)
+ Trent Piepho 7 (0.3%)
+ Christoph Muellner 7 (0.3%)
+ Vignesh Raghavendra 7 (0.3%)
+ Shawn Guo 6 (0.3%)
+ Andy Shevchenko 6 (0.3%)
+ Alex Kiernan 6 (0.3%)
+ Steffen Dirkwinkel 6 (0.3%)
+ Vagrant Cascadian 6 (0.3%)
+ Brad Griffis 6 (0.3%)
+ Dinh Nguyen 6 (0.3%)
+ Pierre Bourdon 6 (0.3%)
+ Michael Walle 6 (0.3%)
+ Rosy Song 6 (0.3%)
+ Weijie Gao 5 (0.2%)
+ Ye Li 5 (0.2%)
+ Mohammad Rasim 5 (0.2%)
+ Guillaume La Roque 5 (0.2%)
+ Christophe Roullier 5 (0.2%)
+ Grygorii Strashko 5 (0.2%)
+ Trevor Woerner 5 (0.2%)
+ Andreas Dannenberg 5 (0.2%)
+ Joris Offouga 5 (0.2%)
+ Gerard Salvatella 5 (0.2%)
+ Jerome Brunet 5 (0.2%)
+ Pierre-Jean Texier 4 (0.2%)
+ Breno Matheus Lima 4 (0.2%)
+ Mian Yousaf Kaukab 4 (0.2%)
+ Yuantian Tang 4 (0.2%)
+ Christian Gmeiner 4 (0.2%)
+ Christophe Kerello 4 (0.2%)
+ Carlo Caione 4 (0.2%)
+ Ang, Chee Hong 4 (0.2%)
+ Ismael Luceno Cortes 4 (0.2%)
+ Luca Ceresoli 4 (0.2%)
+ Bhuvanchandra DV 4 (0.2%)
+ Claudiu Beznea 4 (0.2%)
+ Matwey V. Kornilov 3 (0.1%)
+ Pankit Garg 3 (0.1%)
+ Wasim Khan 3 (0.1%)
+ Maciej Pijanowski 3 (0.1%)
+ Sam Protsenko 3 (0.1%)
+ Parthiban Nallathambi 3 (0.1%)
+ Manivannan Sadhasivam 3 (0.1%)
+ Qiang Zhao 3 (0.1%)
+ Clément Péron 3 (0.1%)
+ Ibai Erkiaga 3 (0.1%)
+ Krzysztof Kozlowski 3 (0.1%)
+ James Byrne 3 (0.1%)
+ Robert P. J. Day 3 (0.1%)
+ Paul Kocialkowski 3 (0.1%)
+ Gregory CLEMENT 3 (0.1%)
+ Eugeniy Paltsev 3 (0.1%)
+ Mark Kettenis 2 (0.1%)
+ Frieder Schrempf 2 (0.1%)
+ Stephen Warren 2 (0.1%)
+ Udit Agarwal 2 (0.1%)
+ Alex Marginean 2 (0.1%)
+ Ashish Kumar 2 (0.1%)
+ Yangbo Lu 2 (0.1%)
+ Pankaj Bansal 2 (0.1%)
+ Ramon Fried 2 (0.1%)
+ Maxime Jourdan 2 (0.1%)
+ Christoph Fritz 2 (0.1%)
+ Stefano Babic 2 (0.1%)
+ Sébastien Szymanski 2 (0.1%)
+ Sekhar Nori 2 (0.1%)
+ Nicolas Le Bayon 2 (0.1%)
+ Rajat Srivastava 2 (0.1%)
+ Keerthy 2 (0.1%)
+ Stefan Mavrodiev 2 (0.1%)
+ Dirk Eibach 2 (0.1%)
+ Jonas Smedegaard 2 (0.1%)
+ Leo Ruan 2 (0.1%)
+ Fabrice Fontaine 2 (0.1%)
+ David Abdurachmanov 2 (0.1%)
+ Chen-Yu Tsai 2 (0.1%)
+ Chris Brandt 2 (0.1%)
+ Peter Ujfalusi 2 (0.1%)
+ Urja Rannikko 2 (0.1%)
+ Miquel Raynal 2 (0.1%)
+ Ludwig Zenz 2 (0.1%)
+ Razvan Stefanescu 2 (0.1%)
+ T Karthik Reddy 2 (0.1%)
+ Sanchayan Maity 2 (0.1%)
+ Joonas Aijala 2 (0.1%)
+ Franklin S Cooper Jr 2 (0.1%)
+ Eran Matityahu 2 (0.1%)
+ Marc Dietrich 1 (0.0%)
+ Andy Yan 1 (0.0%)
+ Kunihiko Hayashi 1 (0.0%)
+ Philippe Schenker 1 (0.0%)
+ Felix Brack 1 (0.0%)
+ Joshua Watt 1 (0.0%)
+ Prabhakar Kushwaha 1 (0.0%)
+ Robert Hancock 1 (0.0%)
+ Moses Christopher 1 (0.0%)
+ Oleksandr Zhadan 1 (0.0%)
+ Patrick Doyle 1 (0.0%)
+ Shannon Barber 1 (0.0%)
+ Joel Stanley 1 (0.0%)
+ Vabhav Sharma 1 (0.0%)
+ Meenakshi Aggarwal 1 (0.0%)
+ Xiaowei Bao 1 (0.0%)
+ Ran Wang 1 (0.0%)
+ Berkus Decker 1 (0.0%)
+ akaher 1 (0.0%)
+ Ezequiel Garcia 1 (0.0%)
+ Matti Vaittinen 1 (0.0%)
+ Holger Brunck 1 (0.0%)
+ David Lechner 1 (0.0%)
+ Padmarao Begari 1 (0.0%)
+ Karsten Merker 1 (0.0%)
+ Dennis Gilmore 1 (0.0%)
+ Vladimir Oltean 1 (0.0%)
+ Thomas Fitzsimmons 1 (0.0%)
+ Tudor Ambarus 1 (0.0%)
+ Vinitha V Pillai 1 (0.0%)
+ Florin Chiculita 1 (0.0%)
+ Chuanhua Han 1 (0.0%)
+ Kuldeep Singh 1 (0.0%)
+ Emmanuel Vadot 1 (0.0%)
+ Tomas Melin 1 (0.0%)
+ Alex Deymo 1 (0.0%)
+ Luca Boccassi 1 (0.0%)
+ Wolfgang Grandegger 1 (0.0%)
+ Atish Patra 1 (0.0%)
+ Anup Patel 1 (0.0%)
+ Luka Kovacic 1 (0.0%)
+ Valentin-catalin Neacsu 1 (0.0%)
+ Philip Molloy 1 (0.0%)
+ Paul Barker 1 (0.0%)
+ Young Xiao 1 (0.0%)
+ Björn Stenberg 1 (0.0%)
+ Filip Brozovic 1 (0.0%)
+ Lars Povlsen 1 (0.0%)
+ Boris Brezillon 1 (0.0%)
+ Marc Gonzalez 1 (0.0%)
+ Brian Norris 1 (0.0%)
+ Fabrice Gasnier 1 (0.0%)
+ Ondrej Jirman 1 (0.0%)
+ Uri Mashiach 1 (0.0%)
+ Dominik Sliwa 1 (0.0%)
+ Ilias Apalodimas 1 (0.0%)
+ Patrick Wildt 1 (0.0%)
+ Álvaro Fernández Rojas 1 (0.0%)
+ Martyn Welch 1 (0.0%)
+ Jared Bents 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ Leigh Brown 1 (0.0%)
+ Jordan Hand 1 (0.0%)
+ Julien Masson 1 (0.0%)
+ Michael Trimarchi 1 (0.0%)
+ Benjamin Lim 1 (0.0%)
+ Anssi Hannula 1 (0.0%)
+ Gero Schumacher 1 (0.0%)
+ Ilko Iliev 1 (0.0%)
+ Alexander Dahl 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Mario Six 29373 (14.4%)
+ Marek Vasut 28712 (14.1%)
+ Marek Behún 8774 (4.3%)
+ Bartosz Golaszewski 8476 (4.2%)
+ Patrick Delaunay 7620 (3.7%)
+ Patrice Chotard 7290 (3.6%)
+ Heinrich Schuchardt 7036 (3.5%)
+ Jagan Teki 6832 (3.4%)
+ Marcel Ziswiler 5887 (2.9%)
+ Peng Fan 4631 (2.3%)
+ Horatiu Vultur 4529 (2.2%)
+ Tom Rini 4492 (2.2%)
+ Philippe Reynes 4413 (2.2%)
+ Grygorii Strashko 4063 (2.0%)
+ Simon Glass 4046 (2.0%)
+ Neil Armstrong 3705 (1.8%)
+ Angelo Dureghello 2716 (1.3%)
+ Vignesh Raghavendra 2321 (1.1%)
+ Chris Packham 2317 (1.1%)
+ Jerome Brunet 2192 (1.1%)
+ Hou Zhiqiang 2090 (1.0%)
+ Thierry Reding 2002 (1.0%)
+ Rosy Song 1984 (1.0%)
+ Yuantian Tang 1935 (1.0%)
+ Kever Yang 1789 (0.9%)
+ Fabien Parent 1784 (0.9%)
+ Uri Mashiach 1685 (0.8%)
+ Stefan Roese 1660 (0.8%)
+ Wolfgang Grandegger 1632 (0.8%)
+ Lukasz Majewski 1631 (0.8%)
+ Christophe Kerello 1601 (0.8%)
+ Parthiban Nallathambi 1427 (0.7%)
+ Chris Brandt 1384 (0.7%)
+ Simon Goldschmidt 1374 (0.7%)
+ Peng Ma 1170 (0.6%)
+ Sjoerd Simons 1161 (0.6%)
+ David Wu 955 (0.5%)
+ Igor Opaniuk 924 (0.5%)
+ Boris Brezillon 883 (0.4%)
+ Joris Offouga 852 (0.4%)
+ AKASHI Takahiro 822 (0.4%)
+ Anatolij Gustschin 796 (0.4%)
+ Tien Fong Chee 769 (0.4%)
+ Shawn Guo 740 (0.4%)
+ Mohammad Rasim 735 (0.4%)
+ Andrew F. Davis 732 (0.4%)
+ Vabhav Sharma 730 (0.4%)
+ Faiz Abbas 675 (0.3%)
+ Adam Ford 669 (0.3%)
+ Soeren Moch 655 (0.3%)
+ Manivannan Sadhasivam 639 (0.3%)
+ Eugen Hristev 569 (0.3%)
+ Dirk Eibach 566 (0.3%)
+ Lukas Auer 510 (0.3%)
+ Lokesh Vutla 503 (0.2%)
+ Fabio Estevam 487 (0.2%)
+ Christophe Roullier 481 (0.2%)
+ Hannes Schmelzer 479 (0.2%)
+ Jean-Jacques Hiblot 474 (0.2%)
+ Matwey V. Kornilov 455 (0.2%)
+ Ley Foon Tan 453 (0.2%)
+ Rick Chen 433 (0.2%)
+ Oleksandr Zhadan 379 (0.2%)
+ Vagrant Cascadian 373 (0.2%)
+ Luka Kovacic 364 (0.2%)
+ Dinh Nguyen 356 (0.2%)
+ Trevor Woerner 346 (0.2%)
+ Jonas Smedegaard 342 (0.2%)
+ Ian Ray 333 (0.2%)
+ Eugeniy Paltsev 315 (0.2%)
+ Heiko Schocher 300 (0.1%)
+ Gerard Salvatella 292 (0.1%)
+ Guillaume La Roque 291 (0.1%)
+ Steffen Dirkwinkel 271 (0.1%)
+ Masahiro Yamada 264 (0.1%)
+ Alex Deymo 246 (0.1%)
+ Carlo Caione 234 (0.1%)
+ Clément Péron 215 (0.1%)
+ Michael Walle 214 (0.1%)
+ Jun Nie 213 (0.1%)
+ Bin Meng 193 (0.1%)
+ Julien Masson 176 (0.1%)
+ Philipp Tomsich 173 (0.1%)
+ Stephen Warren 165 (0.1%)
+ Christoph Muellner 163 (0.1%)
+ Matti Vaittinen 159 (0.1%)
+ Stefan Agner 154 (0.1%)
+ Andre Przywara 153 (0.1%)
+ Qiang Zhao 147 (0.1%)
+ Padmarao Begari 145 (0.1%)
+ Ye Li 141 (0.1%)
+ Murali Karicheri 135 (0.1%)
+ Ilko Iliev 135 (0.1%)
+ James Byrne 132 (0.1%)
+ Eugeniu Rosca 130 (0.1%)
+ Trent Piepho 126 (0.1%)
+ Pierre Bourdon 124 (0.1%)
+ Alex Kiernan 114 (0.1%)
+ Max Krummenacher 111 (0.1%)
+ Franklin S Cooper Jr 100 (0.0%)
+ Baruch Siach 98 (0.0%)
+ Michal Simek 88 (0.0%)
+ Thomas Fitzsimmons 84 (0.0%)
+ Claudiu Beznea 83 (0.0%)
+ Ang, Chee Hong 82 (0.0%)
+ Kunihiko Hayashi 76 (0.0%)
+ Andy Shevchenko 75 (0.0%)
+ Yinbo Zhu 68 (0.0%)
+ Frieder Schrempf 64 (0.0%)
+ Atish Patra 63 (0.0%)
+ Weijie Gao 61 (0.0%)
+ Brad Griffis 59 (0.0%)
+ Sam Protsenko 53 (0.0%)
+ Andreas Dannenberg 51 (0.0%)
+ Wasim Khan 50 (0.0%)
+ Ismael Luceno Cortes 49 (0.0%)
+ Leo Ruan 48 (0.0%)
+ Bhuvanchandra DV 44 (0.0%)
+ Paul Kocialkowski 44 (0.0%)
+ Razvan Stefanescu 39 (0.0%)
+ Ashish Kumar 38 (0.0%)
+ Ludwig Zenz 38 (0.0%)
+ Peter Ujfalusi 36 (0.0%)
+ Mark Kettenis 35 (0.0%)
+ Anssi Hannula 34 (0.0%)
+ Yangbo Lu 33 (0.0%)
+ Stefan Mavrodiev 33 (0.0%)
+ Siva Durga Prasad Paladugu 31 (0.0%)
+ Pankaj Bansal 31 (0.0%)
+ akaher 31 (0.0%)
+ Maxime Jourdan 29 (0.0%)
+ Joonas Aijala 29 (0.0%)
+ Breno Matheus Lima 27 (0.0%)
+ Christian Gmeiner 27 (0.0%)
+ Dominik Sliwa 26 (0.0%)
+ Jared Bents 26 (0.0%)
+ Keerthy 25 (0.0%)
+ Xiaowei Bao 25 (0.0%)
+ Meenakshi Aggarwal 22 (0.0%)
+ Shannon Barber 21 (0.0%)
+ Robert P. J. Day 20 (0.0%)
+ Kuldeep Singh 20 (0.0%)
+ Alex Marginean 19 (0.0%)
+ Rajat Srivastava 18 (0.0%)
+ T Karthik Reddy 18 (0.0%)
+ Luca Boccassi 18 (0.0%)
+ Luca Ceresoli 17 (0.0%)
+ Pankit Garg 17 (0.0%)
+ Fabrice Gasnier 17 (0.0%)
+ Pierre-Jean Texier 16 (0.0%)
+ Ibai Erkiaga 15 (0.0%)
+ Urja Rannikko 15 (0.0%)
+ Joshua Watt 15 (0.0%)
+ Vinitha V Pillai 15 (0.0%)
+ Jordan Hand 15 (0.0%)
+ Benjamin Lim 15 (0.0%)
+ Mian Yousaf Kaukab 14 (0.0%)
+ Ondrej Jirman 14 (0.0%)
+ Eran Matityahu 13 (0.0%)
+ Gregory CLEMENT 12 (0.0%)
+ Brian Norris 12 (0.0%)
+ Krzysztof Kozlowski 10 (0.0%)
+ Udit Agarwal 10 (0.0%)
+ David Abdurachmanov 10 (0.0%)
+ Philippe Schenker 10 (0.0%)
+ Florin Chiculita 9 (0.0%)
+ Christoph Fritz 8 (0.0%)
+ Stefano Babic 8 (0.0%)
+ Fabrice Fontaine 7 (0.0%)
+ Ran Wang 7 (0.0%)
+ Vladimir Oltean 7 (0.0%)
+ Lars Povlsen 7 (0.0%)
+ Marc Gonzalez 7 (0.0%)
+ Maciej Pijanowski 6 (0.0%)
+ Sekhar Nori 6 (0.0%)
+ Sanchayan Maity 6 (0.0%)
+ Prabhakar Kushwaha 6 (0.0%)
+ Joel Stanley 6 (0.0%)
+ Valentin-catalin Neacsu 6 (0.0%)
+ Álvaro Fernández Rojas 6 (0.0%)
+ Gero Schumacher 6 (0.0%)
+ Sébastien Szymanski 5 (0.0%)
+ Nicolas Le Bayon 5 (0.0%)
+ Chen-Yu Tsai 5 (0.0%)
+ Alexander Dahl 5 (0.0%)
+ Miquel Raynal 4 (0.0%)
+ Robert Hancock 4 (0.0%)
+ Ezequiel Garcia 4 (0.0%)
+ Dennis Gilmore 4 (0.0%)
+ Tomas Melin 4 (0.0%)
+ Ramon Fried 3 (0.0%)
+ Marc Dietrich 3 (0.0%)
+ Holger Brunck 3 (0.0%)
+ Moses Christopher 2 (0.0%)
+ Tudor Ambarus 2 (0.0%)
+ Emmanuel Vadot 2 (0.0%)
+ Anup Patel 2 (0.0%)
+ Filip Brozovic 2 (0.0%)
+ Ilias Apalodimas 2 (0.0%)
+ Andy Yan 1 (0.0%)
+ Felix Brack 1 (0.0%)
+ Patrick Doyle 1 (0.0%)
+ Berkus Decker 1 (0.0%)
+ David Lechner 1 (0.0%)
+ Karsten Merker 1 (0.0%)
+ Chuanhua Han 1 (0.0%)
+ Philip Molloy 1 (0.0%)
+ Paul Barker 1 (0.0%)
+ Young Xiao 1 (0.0%)
+ Björn Stenberg 1 (0.0%)
+ Patrick Wildt 1 (0.0%)
+ Martyn Welch 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ Leigh Brown 1 (0.0%)
+ Michael Trimarchi 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bartosz Golaszewski 8441 (13.0%)
+ Uri Mashiach 1685 (2.6%)
+ Tom Rini 704 (1.1%)
+ Michal Simek 39 (0.1%)
+ Paul Kocialkowski 29 (0.0%)
+ Thomas Fitzsimmons 26 (0.0%)
+ Mark Kettenis 26 (0.0%)
+ Weijie Gao 25 (0.0%)
+ Christoph Muellner 20 (0.0%)
+ Robert P. J. Day 20 (0.0%)
+ Eugeniu Rosca 19 (0.0%)
+ Alex Kiernan 19 (0.0%)
+ Ismael Luceno Cortes 16 (0.0%)
+ Andreas Dannenberg 14 (0.0%)
+ Meenakshi Aggarwal 14 (0.0%)
+ Breno Matheus Lima 11 (0.0%)
+ Christian Gmeiner 10 (0.0%)
+ Urja Rannikko 9 (0.0%)
+ Krzysztof Kozlowski 9 (0.0%)
+ Udit Agarwal 7 (0.0%)
+ Mian Yousaf Kaukab 5 (0.0%)
+ Peter Ujfalusi 3 (0.0%)
+ Ian Ray 2 (0.0%)
+ Ezequiel Garcia 2 (0.0%)
+ Lars Povlsen 1 (0.0%)
+ Sekhar Nori 1 (0.0%)
+ Sébastien Szymanski 1 (0.0%)
+ Robert Hancock 1 (0.0%)
+ Paul Barker 1 (0.0%)
+ Leigh Brown 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 305)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 60 (19.7%)
+ Tom Warren 33 (10.8%)
+ Neil Armstrong 17 (5.6%)
+ Michal Simek 16 (5.2%)
+ Kever Yang 12 (3.9%)
+ Tom Rini 11 (3.6%)
+ Patrick Delaunay 10 (3.3%)
+ Patrice Chotard 9 (3.0%)
+ Heinrich Schuchardt 7 (2.3%)
+ Keerthy 6 (2.0%)
+ Vignesh Raghavendra 6 (2.0%)
+ Jagan Teki 5 (1.6%)
+ Rajesh Bhagat 4 (1.3%)
+ Matthias Brugger 4 (1.3%)
+ Prabhakar Kushwaha 4 (1.3%)
+ Siva Durga Prasad Paladugu 4 (1.3%)
+ Sudhanshu Gupta 3 (1.0%)
+ Rai Harninder 3 (1.0%)
+ Bhaskar Upadhaya 3 (1.0%)
+ Minkyu Kang 3 (1.0%)
+ Alexey Brodkin 3 (1.0%)
+ Dalon Westergreen 3 (1.0%)
+ Yinbo Zhu 3 (1.0%)
+ Bin Meng 3 (1.0%)
+ Matwey V. Kornilov 3 (1.0%)
+ Peng Fan 3 (1.0%)
+ Philippe Reynes 3 (1.0%)
+ Peter Ujfalusi 2 (0.7%)
+ Ian Ray 2 (0.7%)
+ Martyn Welch 2 (0.7%)
+ Akash Gajjar 2 (0.7%)
+ Mark Jonas 2 (0.7%)
+ Max Krummenacher 2 (0.7%)
+ Masahiro Yamada 2 (0.7%)
+ Faiz Abbas 2 (0.7%)
+ Philipp Tomsich 2 (0.7%)
+ Fabio Estevam 2 (0.7%)
+ Joris Offouga 2 (0.7%)
+ Christophe Kerello 2 (0.7%)
+ Marek Vasut 2 (0.7%)
+ Mario Six 2 (0.7%)
+ Bartosz Golaszewski 1 (0.3%)
+ Andreas Dannenberg 1 (0.3%)
+ Udit Agarwal 1 (0.3%)
+ Miquel Raynal 1 (0.3%)
+ Michael Durrant 1 (0.3%)
+ Camelia Groza 1 (0.3%)
+ Madalin Bucur 1 (0.3%)
+ Pramod Kumar 1 (0.3%)
+ Udit Kumar 1 (0.3%)
+ Alexander Graf 1 (0.3%)
+ Shyam Saini 1 (0.3%)
+ Rob Clark 1 (0.3%)
+ Dave Gerlach 1 (0.3%)
+ Carlos Santos 1 (0.3%)
+ Ricardo Martincoski 1 (0.3%)
+ Jörg Krause 1 (0.3%)
+ Icenowy Zheng 1 (0.3%)
+ Haibo Chen 1 (0.3%)
+ Alexandre Torgue 1 (0.3%)
+ Vladimir Oltean 1 (0.3%)
+ Ran Wang 1 (0.3%)
+ Bhuvanchandra DV 1 (0.3%)
+ Pankit Garg 1 (0.3%)
+ Rajat Srivastava 1 (0.3%)
+ Xiaowei Bao 1 (0.3%)
+ Sam Protsenko 1 (0.3%)
+ Stefan Agner 1 (0.3%)
+ Ang, Chee Hong 1 (0.3%)
+ Ye Li 1 (0.3%)
+ Clément Péron 1 (0.3%)
+ Christophe Roullier 1 (0.3%)
+ Dirk Eibach 1 (0.3%)
+ Anatolij Gustschin 1 (0.3%)
+ Boris Brezillon 1 (0.3%)
+ Sjoerd Simons 1 (0.3%)
+ Grygorii Strashko 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 802)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 106 (13.2%)
+ Bin Meng 98 (12.2%)
+ Stefan Roese 68 (8.5%)
+ Prabhakar Kushwaha 68 (8.5%)
+ Igor Opaniuk 46 (5.7%)
+ Kever Yang 45 (5.6%)
+ Tom Rini 35 (4.4%)
+ Heinrich Schuchardt 34 (4.2%)
+ Heiko Schocher 31 (3.9%)
+ Jagan Teki 28 (3.5%)
+ Philipp Tomsich 24 (3.0%)
+ Lukas Auer 23 (2.9%)
+ Fabio Estevam 20 (2.5%)
+ Lukasz Majewski 18 (2.2%)
+ Lokesh Vutla 14 (1.7%)
+ Anup Patel 13 (1.6%)
+ Peng Fan 11 (1.4%)
+ Marek Vasut 11 (1.4%)
+ Daniel Schwierzeck 11 (1.4%)
+ Chris Packham 10 (1.2%)
+ Patrick Delaunay 7 (0.9%)
+ Andreas Dannenberg 7 (0.9%)
+ Max Krummenacher 6 (0.7%)
+ Simon Goldschmidt 5 (0.6%)
+ Stefan Agner 4 (0.5%)
+ Rick Chen 4 (0.5%)
+ Michal Simek 3 (0.4%)
+ Patrice Chotard 3 (0.4%)
+ Anatolij Gustschin 3 (0.4%)
+ Grygorii Strashko 3 (0.4%)
+ Paul Kocialkowski 3 (0.4%)
+ Stefano Babic 3 (0.4%)
+ Atish Patra 3 (0.4%)
+ Alexander Graf 2 (0.2%)
+ Sam Protsenko 2 (0.2%)
+ Ryder Lee 2 (0.2%)
+ Philippe Schenker 2 (0.2%)
+ Hannes Schmelzer 2 (0.2%)
+ Marcel Ziswiler 2 (0.2%)
+ Marek Behún 2 (0.2%)
+ Neil Armstrong 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Matthias Brugger 1 (0.1%)
+ Peter Ujfalusi 1 (0.1%)
+ Masahiro Yamada 1 (0.1%)
+ Bartosz Golaszewski 1 (0.1%)
+ Miquel Raynal 1 (0.1%)
+ Ye Li 1 (0.1%)
+ Boris Brezillon 1 (0.1%)
+ Eugeniu Rosca 1 (0.1%)
+ Sekhar Nori 1 (0.1%)
+ Tomas Melin 1 (0.1%)
+ Felix Brack 1 (0.1%)
+ Bernhard Messerklinger 1 (0.1%)
+ Klaus Goger 1 (0.1%)
+ Evgeniy Paltsev 1 (0.1%)
+ Alex Marginean 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ David Wu 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 77)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 8 (10.4%)
+ Heiko Schocher 7 (9.1%)
+ Lukas Auer 5 (6.5%)
+ Marcel Ziswiler 5 (6.5%)
+ Andy Yan 5 (6.5%)
+ Heinrich Schuchardt 3 (3.9%)
+ Neil Armstrong 3 (3.9%)
+ Fabio Estevam 2 (2.6%)
+ Patrick Delaunay 2 (2.6%)
+ Michal Simek 2 (2.6%)
+ Shyam Saini 2 (2.6%)
+ Karsten Merker 2 (2.6%)
+ Andreas Färber 2 (2.6%)
+ Peter Howard 2 (2.6%)
+ Adam Ford 2 (2.6%)
+ Mohammad Rasim 2 (2.6%)
+ Lukasz Majewski 1 (1.3%)
+ Rick Chen 1 (1.3%)
+ Hannes Schmelzer 1 (1.3%)
+ Bernhard Messerklinger 1 (1.3%)
+ Alex Kiernan 1 (1.3%)
+ Sébastien Szymanski 1 (1.3%)
+ Leigh Brown 1 (1.3%)
+ Frank Wunderlich 1 (1.3%)
+ Suniel Mahesh 1 (1.3%)
+ Bryan O'Donoghue 1 (1.3%)
+ Daniel Gröber 1 (1.3%)
+ Alejandro Hernandez 1 (1.3%)
+ Anson Huang 1 (1.3%)
+ Pablo Sebastián Greco 1 (1.3%)
+ Pierre-Jean Texier 1 (1.3%)
+ Maxime Jourdan 1 (1.3%)
+ Baruch Siach 1 (1.3%)
+ Ashish Kumar 1 (1.3%)
+ Pierre Bourdon 1 (1.3%)
+ Michael Walle 1 (1.3%)
+ Jonas Smedegaard 1 (1.3%)
+ Vagrant Cascadian 1 (1.3%)
+ Eugen Hristev 1 (1.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 77)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 10 (13.0%)
+ Lukas Auer 9 (11.7%)
+ Bin Meng 5 (6.5%)
+ Kever Yang 5 (6.5%)
+ Sekhar Nori 4 (5.2%)
+ Fabio Estevam 3 (3.9%)
+ Lukasz Majewski 3 (3.9%)
+ Jagan Teki 3 (3.9%)
+ Weijie Gao 3 (3.9%)
+ Guillaume La Roque 3 (3.9%)
+ AKASHI Takahiro 3 (3.9%)
+ Alex Kiernan 2 (2.6%)
+ Maxime Jourdan 2 (2.6%)
+ Igor Opaniuk 2 (2.6%)
+ Chris Packham 2 (2.6%)
+ Christophe Kerello 2 (2.6%)
+ Jordan Hand 2 (2.6%)
+ Frieder Schrempf 2 (2.6%)
+ Neil Armstrong 1 (1.3%)
+ Jonas Smedegaard 1 (1.3%)
+ Tom Rini 1 (1.3%)
+ Anup Patel 1 (1.3%)
+ Marek Vasut 1 (1.3%)
+ Atish Patra 1 (1.3%)
+ Ye Li 1 (1.3%)
+ Mian Yousaf Kaukab 1 (1.3%)
+ Gregory CLEMENT 1 (1.3%)
+ Anssi Hannula 1 (1.3%)
+ Andrew F. Davis 1 (1.3%)
+ Shawn Guo 1 (1.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Robert P. J. Day 5 (17.2%)
+ Heinrich Schuchardt 2 (6.9%)
+ Mohammad Rasim 2 (6.9%)
+ Stefano Babic 2 (6.9%)
+ Fabio Estevam 1 (3.4%)
+ AKASHI Takahiro 1 (3.4%)
+ Tom Rini 1 (3.4%)
+ Heiko Schocher 1 (3.4%)
+ Andreas Färber 1 (3.4%)
+ Adam Ford 1 (3.4%)
+ Pierre-Jean Texier 1 (3.4%)
+ Lokesh Vutla 1 (3.4%)
+ Keerthy 1 (3.4%)
+ Klaus Goger 1 (3.4%)
+ Alex Marginean 1 (3.4%)
+ Christian Gmeiner 1 (3.4%)
+ Frank Zhang 1 (3.4%)
+ Levin Du 1 (3.4%)
+ Jakob Unterwurzacher 1 (3.4%)
+ Roman Stratiienko 1 (3.4%)
+ rafael mello 1 (3.4%)
+ Sreeja Vadakattu 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 29)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Chris Packham 5 (17.2%)
+ Fabio Estevam 3 (10.3%)
+ Simon Goldschmidt 3 (10.3%)
+ Maxime Jourdan 2 (6.9%)
+ AKASHI Takahiro 1 (3.4%)
+ Tom Rini 1 (3.4%)
+ Stefan Roese 1 (3.4%)
+ Igor Opaniuk 1 (3.4%)
+ Neil Armstrong 1 (3.4%)
+ Marek Vasut 1 (3.4%)
+ Shawn Guo 1 (3.4%)
+ Marcel Ziswiler 1 (3.4%)
+ Michal Simek 1 (3.4%)
+ Philipp Tomsich 1 (3.4%)
+ Patrice Chotard 1 (3.4%)
+ Eugeniu Rosca 1 (3.4%)
+ Vladimir Oltean 1 (3.4%)
+ Mark Kettenis 1 (3.4%)
+ Christoph Muellner 1 (3.4%)
+ Breno Matheus Lima 1 (3.4%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 658 (32.1%)
+ DENX Software Engineering 264 (12.9%)
+ ST Microelectronics 162 (7.9%)
+ Guntermann & Drunck 105 (5.1%)
+ Toradex 104 (5.1%)
+ NXP 102 (5.0%)
+ Texas Instruments 87 (4.3%)
+ Google, Inc. 75 (3.7%)
+ Amarula Solutions 70 (3.4%)
+ BayLibre SAS 67 (3.3%)
+ Rockchip 63 (3.1%)
+ Linaro 52 (2.5%)
+ NVidia 51 (2.5%)
+ Pepperl+Fuchs 40 (2.0%)
+ Intel 39 (1.9%)
+ Konsulko Group 21 (1.0%)
+ Xilinx 14 (0.7%)
+ General Electric 12 (0.6%)
+ AMD 10 (0.5%)
+ ARM 10 (0.5%)
+ Collabora Ltd. 10 (0.5%)
+ Socionext Inc. 10 (0.5%)
+ Bootlin 8 (0.4%)
+ Debian.org 4 (0.2%)
+ SUSE 4 (0.2%)
+ Renesas Electronics 2 (0.1%)
+ CompuLab 1 (0.0%)
+ Ronetix 1 (0.0%)
+ VMWare 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 47898 (23.6%)
+ DENX Software Engineering 33107 (16.3%)
+ Guntermann & Drunck 29939 (14.7%)
+ ST Microelectronics 17014 (8.4%)
+ BayLibre SAS 16887 (8.3%)
+ NXP 11247 (5.5%)
+ Texas Instruments 9180 (4.5%)
+ Amarula Solutions 6833 (3.4%)
+ Toradex 6507 (3.2%)
+ Konsulko Group 4492 (2.2%)
+ Google, Inc. 4292 (2.1%)
+ Rockchip 2745 (1.3%)
+ Linaro 2469 (1.2%)
+ NVidia 2167 (1.1%)
+ CompuLab 1685 (0.8%)
+ Renesas Electronics 1384 (0.7%)
+ Intel 1379 (0.7%)
+ Pepperl+Fuchs 1374 (0.7%)
+ Collabora Ltd. 1166 (0.6%)
+ Debian.org 368 (0.2%)
+ General Electric 362 (0.2%)
+ Socionext Inc. 340 (0.2%)
+ ARM 153 (0.1%)
+ Ronetix 135 (0.1%)
+ AMD 88 (0.0%)
+ Xilinx 64 (0.0%)
+ Bootlin 60 (0.0%)
+ VMWare 31 (0.0%)
+ SUSE 14 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 305)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 61 (20.0%)
+ (Unknown) 35 (11.5%)
+ NXP 35 (11.5%)
+ NVidia 33 (10.8%)
+ ST Microelectronics 23 (7.5%)
+ Xilinx 20 (6.6%)
+ Texas Instruments 19 (6.2%)
+ BayLibre SAS 18 (5.9%)
+ Rockchip 12 (3.9%)
+ Konsulko Group 11 (3.6%)
+ Amarula Solutions 6 (2.0%)
+ Toradex 4 (1.3%)
+ Intel 4 (1.3%)
+ SUSE 4 (1.3%)
+ Guntermann & Drunck 3 (1.0%)
+ Collabora Ltd. 3 (1.0%)
+ Samsung 3 (1.0%)
+ General Electric 2 (0.7%)
+ Socionext Inc. 2 (0.7%)
+ Bootlin 2 (0.7%)
+ Bosch 2 (0.7%)
+ Openedev 2 (0.7%)
+ Linaro 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 217)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 106 (48.8%)
+ NXP 25 (11.5%)
+ Texas Instruments 13 (6.0%)
+ BayLibre SAS 8 (3.7%)
+ Toradex 8 (3.7%)
+ DENX Software Engineering 6 (2.8%)
+ ST Microelectronics 6 (2.8%)
+ Linaro 6 (2.8%)
+ Intel 4 (1.8%)
+ Xilinx 3 (1.4%)
+ Rockchip 3 (1.4%)
+ Collabora Ltd. 3 (1.4%)
+ Bootlin 3 (1.4%)
+ NVidia 2 (0.9%)
+ Amarula Solutions 2 (0.9%)
+ Guntermann & Drunck 2 (0.9%)
+ General Electric 2 (0.9%)
+ Socionext Inc. 2 (0.9%)
+ Google, Inc. 2 (0.9%)
+ Debian.org 2 (0.9%)
+ Konsulko Group 1 (0.5%)
+ SUSE 1 (0.5%)
+ CompuLab 1 (0.5%)
+ Renesas Electronics 1 (0.5%)
+ Pepperl+Fuchs 1 (0.5%)
+ ARM 1 (0.5%)
+ Ronetix 1 (0.5%)
+ AMD 1 (0.5%)
+ VMWare 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2019.10.rst b/doc/develop/statistics/u-boot-stats-v2019.10.rst
new file mode 100644
index 0000000..367b932
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2019.10.rst
@@ -0,0 +1,871 @@
+:orphan:
+
+Release Statistics for U-Boot v2019.10
+======================================
+
+* Processed 2007 csets from 190 developers
+
+* 32 employers found
+
+* A total of 111008 lines added, 38325 removed (delta 72683)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 252 (12.6%)
+ Kever Yang 142 (7.1%)
+ Heinrich Schuchardt 115 (5.7%)
+ Patrick Delaunay 112 (5.6%)
+ Jagan Teki 89 (4.4%)
+ Bin Meng 70 (3.5%)
+ Hou Zhiqiang 66 (3.3%)
+ Adam Ford 55 (2.7%)
+ Lukasz Majewski 46 (2.3%)
+ Peng Fan 45 (2.2%)
+ Marek Vasut 39 (1.9%)
+ Chuanhua Han 35 (1.7%)
+ Andreas Dannenberg 34 (1.7%)
+ Tom Rini 30 (1.5%)
+ Alex Marginean 29 (1.4%)
+ Masahiro Yamada 25 (1.2%)
+ Lokesh Vutla 24 (1.2%)
+ Faiz Abbas 24 (1.2%)
+ Igor Opaniuk 23 (1.1%)
+ Heiko Schocher 22 (1.1%)
+ Neil Armstrong 18 (0.9%)
+ Sam Protsenko 17 (0.8%)
+ Ramon Fried 17 (0.8%)
+ Baruch Siach 16 (0.8%)
+ Jean-Jacques Hiblot 15 (0.7%)
+ Anatolij Gustschin 15 (0.7%)
+ Patrice Chotard 15 (0.7%)
+ Anup Patel 15 (0.7%)
+ Bartosz Golaszewski 14 (0.7%)
+ Simon Goldschmidt 13 (0.6%)
+ Park, Aiden 13 (0.6%)
+ Pascal Linder 13 (0.6%)
+ Andre Przywara 13 (0.6%)
+ Andy Shevchenko 12 (0.6%)
+ Suniel Mahesh 12 (0.6%)
+ Weijie Gao 12 (0.6%)
+ Miquel Raynal 12 (0.6%)
+ Marek Behún 11 (0.5%)
+ Lukas Auer 11 (0.5%)
+ Ye Li 11 (0.5%)
+ Bryan O'Donoghue 11 (0.5%)
+ Eugeniu Rosca 10 (0.5%)
+ Rick Chen 10 (0.5%)
+ Fabien Dessenne 10 (0.5%)
+ AKASHI Takahiro 9 (0.4%)
+ Andrew F. Davis 8 (0.4%)
+ Yinbo Zhu 8 (0.4%)
+ Matwey V. Kornilov 8 (0.4%)
+ Urja Rannikko 8 (0.4%)
+ Sekhar Nori 8 (0.4%)
+ Marcel Ziswiler 8 (0.4%)
+ Tudor Ambarus 7 (0.3%)
+ Stefan Roese 7 (0.3%)
+ Suman Anna 7 (0.3%)
+ Manivannan Sadhasivam 7 (0.3%)
+ Luca Ceresoli 7 (0.3%)
+ Vladimir Oltean 7 (0.3%)
+ Ruslan Trofymenko 7 (0.3%)
+ Markus Klotzbuecher 7 (0.3%)
+ Ley Foon Tan 6 (0.3%)
+ Michal Simek 6 (0.3%)
+ Mark Kettenis 6 (0.3%)
+ Andrei Gherzan 6 (0.3%)
+ T Karthik Reddy 6 (0.3%)
+ Hannes Schmelzer 6 (0.3%)
+ Shyam Saini 6 (0.3%)
+ Ludwig Zenz 6 (0.3%)
+ Peter Robinson 6 (0.3%)
+ Michal Suchanek 5 (0.2%)
+ liucheng (G) 5 (0.2%)
+ Laurentiu Tudor 5 (0.2%)
+ Trent Piepho 5 (0.2%)
+ Alexander Dahl 5 (0.2%)
+ Robert Hancock 5 (0.2%)
+ Keerthy 5 (0.2%)
+ Paul Emge 5 (0.2%)
+ Yangbo Lu 5 (0.2%)
+ Pierre-Jean Texier 4 (0.2%)
+ Vignesh Raghavendra 4 (0.2%)
+ Pankaj Bansal 4 (0.2%)
+ Thomas Schaefer 4 (0.2%)
+ Eddie James 4 (0.2%)
+ Marcus Comstedt 4 (0.2%)
+ Fabien Parent 4 (0.2%)
+ Julius Werner 4 (0.2%)
+ Chris Webb 4 (0.2%)
+ Joel Stanley 4 (0.2%)
+ Eugeniy Paltsev 3 (0.1%)
+ Matthias Brugger 3 (0.1%)
+ Grygorii Strashko 3 (0.1%)
+ Andy Yan 3 (0.1%)
+ Joe Hershberger 3 (0.1%)
+ Alexey Brodkin 3 (0.1%)
+ Rohan Garg 3 (0.1%)
+ Ashish Kumar 3 (0.1%)
+ Marek Szyprowski 3 (0.1%)
+ Ryder Lee 3 (0.1%)
+ Nick Xie 3 (0.1%)
+ Bhargav Shah 3 (0.1%)
+ Sven Schwermer 3 (0.1%)
+ Derald D. Woods 3 (0.1%)
+ Roman Stratiienko 2 (0.1%)
+ Stephen Warren 2 (0.1%)
+ Heiko Stuebner 2 (0.1%)
+ Christophe Kerello 2 (0.1%)
+ Meenakshi Aggarwal 2 (0.1%)
+ Florin Chiculita 2 (0.1%)
+ Fabian Vogt 2 (0.1%)
+ Michael Walle 2 (0.1%)
+ Ralph Siemsen 2 (0.1%)
+ Sagar Shrikant Kadam 2 (0.1%)
+ Kunihiko Hayashi 2 (0.1%)
+ Sudeep Holla 2 (0.1%)
+ Chris Packham 2 (0.1%)
+ Yuantian Tang 2 (0.1%)
+ Uwe Kleine-König 2 (0.1%)
+ Yegor Yefremov 2 (0.1%)
+ Dalon Westergreen 2 (0.1%)
+ Holger Brunck 2 (0.1%)
+ Dominik Sliwa 2 (0.1%)
+ Frank Wunderlich 2 (0.1%)
+ Robert P. J. Day 2 (0.1%)
+ Niklas Schulze 2 (0.1%)
+ David Abdurachmanov 2 (0.1%)
+ Mickaël Tansorier 2 (0.1%)
+ Radu Pirea 2 (0.1%)
+ Horatiu Vultur 2 (0.1%)
+ Ezequiel Garcia 2 (0.1%)
+ Ilko Iliev 2 (0.1%)
+ Cyrille Pitchen 2 (0.1%)
+ Melin Tomas 2 (0.1%)
+ Hamish Guthrie 2 (0.1%)
+ Maxime Ripard 1 (0.0%)
+ Ovidiu Panait 1 (0.0%)
+ Andrius Štikonas 1 (0.0%)
+ Joris Offouga 1 (0.0%)
+ Biwen Li 1 (0.0%)
+ Michael Trimarchi 1 (0.0%)
+ Hugh Cole-Baker 1 (0.0%)
+ Priyanka Jain 1 (0.0%)
+ Bonnans, Laurent 1 (0.0%)
+ Raul Benet 1 (0.0%)
+ Guillaume GARDET 1 (0.0%)
+ Matt Pelland 1 (0.0%)
+ Florinel Iordache 1 (0.0%)
+ Alistair Francis 1 (0.0%)
+ Rasmus Villemoes 1 (0.0%)
+ Ryan Harkin 1 (0.0%)
+ Samuel Egli 1 (0.0%)
+ Ricardo Ribalda Delgado 1 (0.0%)
+ Aaron Williams 1 (0.0%)
+ Martin Vystrčil 1 (0.0%)
+ Vikas Manocha 1 (0.0%)
+ Nuno Gonçalves 1 (0.0%)
+ Max Kellermann 1 (0.0%)
+ Alison Wang 1 (0.0%)
+ Levin Du 1 (0.0%)
+ Nishanth Menon 1 (0.0%)
+ Anselm Busse 1 (0.0%)
+ Jerome Brunet 1 (0.0%)
+ Stefan Agner 1 (0.0%)
+ Bernhard Messerklinger 1 (0.0%)
+ Joshua Watt 1 (0.0%)
+ Eugen Hristev 1 (0.0%)
+ Alex Deymo 1 (0.0%)
+ Anton Gerasimov 1 (0.0%)
+ Eric Perie 1 (0.0%)
+ Andrej Rosano 1 (0.0%)
+ titron 1 (0.0%)
+ Emmanuel Vadot 1 (0.0%)
+ Jianchao Wang 1 (0.0%)
+ Jonathan Corbet 1 (0.0%)
+ Leon Yu 1 (0.0%)
+ Breno Matheus Lima 1 (0.0%)
+ Sébastien Szymanski 1 (0.0%)
+ Matti Vaittinen 1 (0.0%)
+ Oleksandr Zhadan 1 (0.0%)
+ Vesa Jääskeläinen 1 (0.0%)
+ Jernej Skrabec 1 (0.0%)
+ Marcus Cooper 1 (0.0%)
+ Akio Hirayama 1 (0.0%)
+ Niel Fourie 1 (0.0%)
+ David Lechner 1 (0.0%)
+ Leo Ruan 1 (0.0%)
+ Roman Kapl 1 (0.0%)
+ Luka Kovacic 1 (0.0%)
+ Thierry Reding 1 (0.0%)
+ Vabhav Sharma 1 (0.0%)
+ Jun Chen 1 (0.0%)
+ Andreas Färber 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 15674 (12.4%)
+ Jagan Teki 7394 (5.8%)
+ Kever Yang 7177 (5.7%)
+ Marek Vasut 6504 (5.1%)
+ Bin Meng 5608 (4.4%)
+ Heinrich Schuchardt 5109 (4.0%)
+ Lukasz Majewski 4813 (3.8%)
+ Patrick Delaunay 3764 (3.0%)
+ Manivannan Sadhasivam 3703 (2.9%)
+ Neil Armstrong 3599 (2.8%)
+ Yangbo Lu 3043 (2.4%)
+ Alex Marginean 3007 (2.4%)
+ Ramon Fried 2610 (2.1%)
+ Peng Fan 2450 (1.9%)
+ Uwe Kleine-König 2338 (1.8%)
+ Hou Zhiqiang 2293 (1.8%)
+ Tom Rini 2261 (1.8%)
+ Eugeniu Rosca 2112 (1.7%)
+ Lokesh Vutla 1912 (1.5%)
+ Andreas Dannenberg 1831 (1.4%)
+ Luca Ceresoli 1477 (1.2%)
+ Adam Ford 1476 (1.2%)
+ Park, Aiden 1421 (1.1%)
+ Sekhar Nori 1420 (1.1%)
+ Chuanhua Han 1307 (1.0%)
+ Hannes Schmelzer 1272 (1.0%)
+ Niel Fourie 1260 (1.0%)
+ Nick Xie 1096 (0.9%)
+ Anup Patel 1054 (0.8%)
+ Simon Goldschmidt 1008 (0.8%)
+ Fabien Dessenne 940 (0.7%)
+ Jianchao Wang 921 (0.7%)
+ Heiko Schocher 885 (0.7%)
+ Keerthy 855 (0.7%)
+ Masahiro Yamada 830 (0.7%)
+ Holger Brunck 821 (0.6%)
+ Tudor Ambarus 797 (0.6%)
+ Weijie Gao 775 (0.6%)
+ Levin Du 766 (0.6%)
+ Faiz Abbas 743 (0.6%)
+ Patrice Chotard 714 (0.6%)
+ Ruslan Trofymenko 713 (0.6%)
+ Bhargav Shah 705 (0.6%)
+ Lukas Auer 694 (0.5%)
+ Andre Przywara 664 (0.5%)
+ Pascal Linder 609 (0.5%)
+ Matti Vaittinen 607 (0.5%)
+ Suniel Mahesh 587 (0.5%)
+ Shyam Saini 575 (0.5%)
+ Horatiu Vultur 518 (0.4%)
+ Igor Opaniuk 486 (0.4%)
+ Bartosz Golaszewski 425 (0.3%)
+ Kunihiko Hayashi 425 (0.3%)
+ Robert Hancock 420 (0.3%)
+ Peter Robinson 381 (0.3%)
+ Julius Werner 376 (0.3%)
+ Jerome Brunet 373 (0.3%)
+ Markus Klotzbuecher 366 (0.3%)
+ Jean-Jacques Hiblot 364 (0.3%)
+ Rick Chen 350 (0.3%)
+ Anatolij Gustschin 323 (0.3%)
+ Ludwig Zenz 306 (0.2%)
+ Fabien Parent 288 (0.2%)
+ Anton Gerasimov 281 (0.2%)
+ Hamish Guthrie 266 (0.2%)
+ Rohan Garg 245 (0.2%)
+ Marcus Cooper 239 (0.2%)
+ Laurentiu Tudor 216 (0.2%)
+ Urja Rannikko 207 (0.2%)
+ Ilko Iliev 198 (0.2%)
+ AKASHI Takahiro 194 (0.2%)
+ Eugeniy Paltsev 193 (0.2%)
+ Andy Shevchenko 190 (0.1%)
+ Stefan Roese 181 (0.1%)
+ Michael Walle 181 (0.1%)
+ Grygorii Strashko 178 (0.1%)
+ Eddie James 174 (0.1%)
+ Bernhard Messerklinger 172 (0.1%)
+ Andrei Gherzan 162 (0.1%)
+ Baruch Siach 155 (0.1%)
+ Marcel Ziswiler 152 (0.1%)
+ Sven Schwermer 146 (0.1%)
+ Trent Piepho 136 (0.1%)
+ Sam Protsenko 135 (0.1%)
+ Yinbo Zhu 127 (0.1%)
+ Frank Wunderlich 126 (0.1%)
+ Leo Ruan 121 (0.1%)
+ Alexey Brodkin 115 (0.1%)
+ T Karthik Reddy 114 (0.1%)
+ David Lechner 102 (0.1%)
+ Ye Li 101 (0.1%)
+ Marcus Comstedt 98 (0.1%)
+ Pankaj Bansal 97 (0.1%)
+ Meenakshi Aggarwal 97 (0.1%)
+ Miquel Raynal 96 (0.1%)
+ Matwey V. Kornilov 93 (0.1%)
+ Dominik Sliwa 90 (0.1%)
+ Alex Deymo 90 (0.1%)
+ Suman Anna 83 (0.1%)
+ Andrew F. Davis 78 (0.1%)
+ Michal Suchanek 75 (0.1%)
+ Alexander Dahl 74 (0.1%)
+ Ryan Harkin 70 (0.1%)
+ Ryder Lee 68 (0.1%)
+ Ley Foon Tan 60 (0.0%)
+ Oleksandr Zhadan 60 (0.0%)
+ Bryan O'Donoghue 59 (0.0%)
+ Jonathan Corbet 59 (0.0%)
+ Derald D. Woods 58 (0.0%)
+ Chris Webb 56 (0.0%)
+ Vesa Jääskeläinen 52 (0.0%)
+ Joshua Watt 44 (0.0%)
+ Paul Emge 41 (0.0%)
+ Matthias Brugger 41 (0.0%)
+ Vladimir Oltean 40 (0.0%)
+ Mark Kettenis 38 (0.0%)
+ Yuantian Tang 35 (0.0%)
+ Sagar Shrikant Kadam 30 (0.0%)
+ Thomas Schaefer 29 (0.0%)
+ Marek Behún 27 (0.0%)
+ Cyrille Pitchen 27 (0.0%)
+ Ezequiel Garcia 26 (0.0%)
+ Florinel Iordache 26 (0.0%)
+ Anselm Busse 26 (0.0%)
+ Niklas Schulze 24 (0.0%)
+ Michael Trimarchi 24 (0.0%)
+ David Abdurachmanov 22 (0.0%)
+ Pierre-Jean Texier 21 (0.0%)
+ Emmanuel Vadot 21 (0.0%)
+ Sébastien Szymanski 21 (0.0%)
+ Stephen Warren 20 (0.0%)
+ Aaron Williams 19 (0.0%)
+ Michal Simek 18 (0.0%)
+ Roman Stratiienko 18 (0.0%)
+ Priyanka Jain 17 (0.0%)
+ Vikas Manocha 17 (0.0%)
+ Jernej Skrabec 17 (0.0%)
+ liucheng (G) 16 (0.0%)
+ Vignesh Raghavendra 16 (0.0%)
+ Marek Szyprowski 14 (0.0%)
+ Melin Tomas 13 (0.0%)
+ Joris Offouga 13 (0.0%)
+ Joe Hershberger 12 (0.0%)
+ Joel Stanley 11 (0.0%)
+ Fabian Vogt 11 (0.0%)
+ Eugen Hristev 11 (0.0%)
+ Andy Yan 10 (0.0%)
+ Ashish Kumar 10 (0.0%)
+ Roman Kapl 10 (0.0%)
+ Chris Packham 9 (0.0%)
+ Matt Pelland 8 (0.0%)
+ Yegor Yefremov 7 (0.0%)
+ Raul Benet 7 (0.0%)
+ Breno Matheus Lima 7 (0.0%)
+ Jun Chen 7 (0.0%)
+ Dalon Westergreen 6 (0.0%)
+ Eric Perie 6 (0.0%)
+ Christophe Kerello 5 (0.0%)
+ Mickaël Tansorier 5 (0.0%)
+ Radu Pirea 5 (0.0%)
+ Ovidiu Panait 5 (0.0%)
+ Leon Yu 5 (0.0%)
+ Florin Chiculita 4 (0.0%)
+ Sudeep Holla 4 (0.0%)
+ Robert P. J. Day 4 (0.0%)
+ Maxime Ripard 4 (0.0%)
+ Bonnans, Laurent 4 (0.0%)
+ Martin Vystrčil 4 (0.0%)
+ Nishanth Menon 4 (0.0%)
+ Stefan Agner 4 (0.0%)
+ Vabhav Sharma 4 (0.0%)
+ Heiko Stuebner 3 (0.0%)
+ Hugh Cole-Baker 3 (0.0%)
+ Samuel Egli 3 (0.0%)
+ Alison Wang 3 (0.0%)
+ Ralph Siemsen 2 (0.0%)
+ Biwen Li 2 (0.0%)
+ Ricardo Ribalda Delgado 2 (0.0%)
+ Andrej Rosano 2 (0.0%)
+ titron 2 (0.0%)
+ Akio Hirayama 2 (0.0%)
+ Luka Kovacic 2 (0.0%)
+ Thierry Reding 2 (0.0%)
+ Andrius Štikonas 1 (0.0%)
+ Guillaume GARDET 1 (0.0%)
+ Alistair Francis 1 (0.0%)
+ Rasmus Villemoes 1 (0.0%)
+ Nuno Gonçalves 1 (0.0%)
+ Max Kellermann 1 (0.0%)
+ Andreas Färber 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Uwe Kleine-König 2338 (6.1%)
+ Heinrich Schuchardt 1027 (2.7%)
+ Horatiu Vultur 455 (1.2%)
+ Holger Brunck 431 (1.1%)
+ Tom Rini 418 (1.1%)
+ Patrice Chotard 211 (0.6%)
+ Bartosz Golaszewski 193 (0.5%)
+ Ilko Iliev 192 (0.5%)
+ Bernhard Messerklinger 77 (0.2%)
+ Ryan Harkin 67 (0.2%)
+ Oleksandr Zhadan 60 (0.2%)
+ Ludwig Zenz 46 (0.1%)
+ Sébastien Szymanski 21 (0.1%)
+ Chris Webb 19 (0.0%)
+ Derald D. Woods 16 (0.0%)
+ Ye Li 12 (0.0%)
+ Weijie Gao 9 (0.0%)
+ Joe Hershberger 8 (0.0%)
+ Joris Offouga 7 (0.0%)
+ Vladimir Oltean 5 (0.0%)
+ Martin Vystrčil 4 (0.0%)
+ Robert P. J. Day 3 (0.0%)
+ Sudeep Holla 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 335)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ YouMin Chen 55 (16.4%)
+ Stefan Roese 36 (10.7%)
+ Patrice Chotard 23 (6.9%)
+ Michal Simek 20 (6.0%)
+ Tom Warren 16 (4.8%)
+ Tom Rini 14 (4.2%)
+ Holger Brunck 13 (3.9%)
+ Igor Opaniuk 12 (3.6%)
+ Matthias Brugger 10 (3.0%)
+ Bin Meng 8 (2.4%)
+ Priyanka Jain 7 (2.1%)
+ Loic Pallardy 7 (2.1%)
+ Kever Yang 7 (2.1%)
+ Lokesh Vutla 7 (2.1%)
+ Andreas Dannenberg 7 (2.1%)
+ Jagan Teki 6 (1.8%)
+ Matwey V. Kornilov 5 (1.5%)
+ Christophe Kerello 4 (1.2%)
+ Neil Armstrong 4 (1.2%)
+ Heinrich Schuchardt 3 (0.9%)
+ Benjamin Gaignard 3 (0.9%)
+ Anup Patel 3 (0.9%)
+ Vignesh Raghavendra 3 (0.9%)
+ Sam Protsenko 3 (0.9%)
+ Grygorii Strashko 3 (0.9%)
+ Tudor Ambarus 3 (0.9%)
+ Keerthy 3 (0.9%)
+ Peng Fan 3 (0.9%)
+ Patrick Delaunay 3 (0.9%)
+ Vladimir Oltean 2 (0.6%)
+ Zhao Qiang 2 (0.6%)
+ Valentin Longchamp 2 (0.6%)
+ Biwen Li 2 (0.6%)
+ Dominik Sliwa 2 (0.6%)
+ Andrei Gherzan 2 (0.6%)
+ Markus Klotzbuecher 2 (0.6%)
+ Nishanth Menon 1 (0.3%)
+ Minkyu Kang 1 (0.3%)
+ Ken Ma 1 (0.3%)
+ Bossen WU 1 (0.3%)
+ Nicolas Le Bayon 1 (0.3%)
+ Kevin Hilman 1 (0.3%)
+ Guillaume La Roque 1 (0.3%)
+ Bhuvanchandra DV 1 (0.3%)
+ Max Krummenacher 1 (0.3%)
+ Xiaoliang Yang 1 (0.3%)
+ Mingkai Hu 1 (0.3%)
+ Changming Huang 1 (0.3%)
+ Catalin Horghidan 1 (0.3%)
+ Kuldeep Singh 1 (0.3%)
+ Sergey Kubushyn 1 (0.3%)
+ Michael Durrant 1 (0.3%)
+ Parthiban Nallathambi 1 (0.3%)
+ Mark Jonas 1 (0.3%)
+ Stefan Agner 1 (0.3%)
+ Ashish Kumar 1 (0.3%)
+ Suman Anna 1 (0.3%)
+ Marcel Ziswiler 1 (0.3%)
+ Andre Przywara 1 (0.3%)
+ Jean-Jacques Hiblot 1 (0.3%)
+ Masahiro Yamada 1 (0.3%)
+ Faiz Abbas 1 (0.3%)
+ Fabien Dessenne 1 (0.3%)
+ Eugeniu Rosca 1 (0.3%)
+ Lukasz Majewski 1 (0.3%)
+ Marek Vasut 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 908)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 185 (20.4%)
+ Kever Yang 130 (14.3%)
+ Prabhakar Kushwaha 108 (11.9%)
+ Simon Glass 53 (5.8%)
+ Peng Fan 40 (4.4%)
+ Jagan Teki 35 (3.9%)
+ Lokesh Vutla 32 (3.5%)
+ Oleksandr Suvorov 31 (3.4%)
+ Stefan Roese 26 (2.9%)
+ Anup Patel 21 (2.3%)
+ Tom Rini 19 (2.1%)
+ Heinrich Schuchardt 17 (1.9%)
+ Simon Goldschmidt 17 (1.9%)
+ Igor Opaniuk 15 (1.7%)
+ Sam Protsenko 15 (1.7%)
+ Priyanka Jain 11 (1.2%)
+ Marek Vasut 10 (1.1%)
+ Heiko Schocher 10 (1.1%)
+ Lukasz Majewski 9 (1.0%)
+ Chris Packham 8 (0.9%)
+ Andy Shevchenko 8 (0.9%)
+ Alex Marginean 8 (0.9%)
+ Patrice Chotard 7 (0.8%)
+ Patrick Delaunay 6 (0.7%)
+ Alistair Strachan 6 (0.7%)
+ Rick Chen 6 (0.7%)
+ Ramon Fried 6 (0.7%)
+ Manivannan Sadhasivam 6 (0.7%)
+ Martyn Welch 5 (0.6%)
+ Jernej Skrabec 5 (0.6%)
+ Lukas Auer 5 (0.6%)
+ Fabio Estevam 4 (0.4%)
+ Cédric Le Goater 4 (0.4%)
+ Horia Geantă 4 (0.4%)
+ Park, Aiden 4 (0.4%)
+ Eugeniu Rosca 3 (0.3%)
+ Alexander Graf 3 (0.3%)
+ Jean-Jacques Hiblot 2 (0.2%)
+ Joe Hershberger 2 (0.2%)
+ Philipp Tomsich 2 (0.2%)
+ Philippe Schenker 2 (0.2%)
+ Daniel Schwierzeck 2 (0.2%)
+ Matthias Brugger 1 (0.1%)
+ Grygorii Strashko 1 (0.1%)
+ Vladimir Oltean 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Ryan Harkin 1 (0.1%)
+ Frieder Schrempf 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Padmarao Begari 1 (0.1%)
+ Jun Nie 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Andy Yan 1 (0.1%)
+ Alistair Francis 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ David Abdurachmanov 1 (0.1%)
+ Andrew F. Davis 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 121)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 43 (35.5%)
+ Anup Patel 7 (5.8%)
+ Heiko Schocher 6 (5.0%)
+ Jernej Skrabec 5 (4.1%)
+ Corentin Labbe 5 (4.1%)
+ Steffen Dirkwinkel 5 (4.1%)
+ Adam Ford 5 (4.1%)
+ Mark Kettenis 4 (3.3%)
+ Heinrich Schuchardt 3 (2.5%)
+ Joris Offouga 3 (2.5%)
+ Felix Brack 3 (2.5%)
+ Pierre-Jean Texier 3 (2.5%)
+ Igor Opaniuk 2 (1.7%)
+ Chris Packham 2 (1.7%)
+ Alex Marginean 2 (1.7%)
+ Patrick Delaunay 2 (1.7%)
+ Michal Simek 2 (1.7%)
+ Chris Webb 2 (1.7%)
+ Frank Wunderlich 2 (1.7%)
+ Marek Vasut 1 (0.8%)
+ Fabio Estevam 1 (0.8%)
+ Eugeniu Rosca 1 (0.8%)
+ Vladimir Oltean 1 (0.8%)
+ Andre Przywara 1 (0.8%)
+ Frieder Schrempf 1 (0.8%)
+ Padmarao Begari 1 (0.8%)
+ Stephen Warren 1 (0.8%)
+ David Abdurachmanov 1 (0.8%)
+ Matwey V. Kornilov 1 (0.8%)
+ Ludwig Zenz 1 (0.8%)
+ Fancy Fang 1 (0.8%)
+ Sagar Shrikant Kadam 1 (0.8%)
+ Eugen Hristev 1 (0.8%)
+ Suniel Mahesh 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 121)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Park, Aiden 12 (9.9%)
+ Lukas Auer 11 (9.1%)
+ Andre Przywara 10 (8.3%)
+ Simon Glass 8 (6.6%)
+ Ramon Fried 7 (5.8%)
+ Pierre-Jean Texier 6 (5.0%)
+ Yangbo Lu 5 (4.1%)
+ Anup Patel 4 (3.3%)
+ Marek Vasut 4 (3.3%)
+ Neil Armstrong 4 (3.3%)
+ Heinrich Schuchardt 3 (2.5%)
+ Patrick Delaunay 3 (2.5%)
+ Sagar Shrikant Kadam 3 (2.5%)
+ Jagan Teki 3 (2.5%)
+ Bhargav Shah 3 (2.5%)
+ Heiko Schocher 2 (1.7%)
+ Alex Marginean 2 (1.7%)
+ Peng Fan 2 (1.7%)
+ Stefan Roese 2 (1.7%)
+ Sam Protsenko 2 (1.7%)
+ Bartosz Golaszewski 2 (1.7%)
+ Weijie Gao 2 (1.7%)
+ Ryder Lee 2 (1.7%)
+ AKASHI Takahiro 2 (1.7%)
+ Nick Xie 2 (1.7%)
+ Adam Ford 1 (0.8%)
+ Matwey V. Kornilov 1 (0.8%)
+ Kever Yang 1 (0.8%)
+ Simon Goldschmidt 1 (0.8%)
+ Marcel Ziswiler 1 (0.8%)
+ Bernhard Messerklinger 1 (0.8%)
+ Ye Li 1 (0.8%)
+ Marek Behún 1 (0.8%)
+ Fabian Vogt 1 (0.8%)
+ Urja Rannikko 1 (0.8%)
+ Baruch Siach 1 (0.8%)
+ Anatolij Gustschin 1 (0.8%)
+ Julius Werner 1 (0.8%)
+ Chuanhua Han 1 (0.8%)
+ Niel Fourie 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 28)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fermín Serna 5 (17.9%)
+ Ramon Fried 4 (14.3%)
+ Simon Glass 2 (7.1%)
+ Heinrich Schuchardt 2 (7.1%)
+ Jagan Teki 2 (7.1%)
+ Sam Protsenko 2 (7.1%)
+ Fabio Estevam 2 (7.1%)
+ Marek Vasut 1 (3.6%)
+ Kever Yang 1 (3.6%)
+ Michal Simek 1 (3.6%)
+ Tom Rini 1 (3.6%)
+ Pontus Fuchs 1 (3.6%)
+ Andre Heider 1 (3.6%)
+ Wolfgang Grandegger 1 (3.6%)
+ Ard Biesheuvel 1 (3.6%)
+ Michael Trimarchi 1 (3.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 28)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 7 (25.0%)
+ liucheng (G) 5 (17.9%)
+ Jagan Teki 3 (10.7%)
+ Eugeniu Rosca 3 (10.7%)
+ Anatolij Gustschin 2 (7.1%)
+ Bin Meng 2 (7.1%)
+ Tom Rini 1 (3.6%)
+ Simon Goldschmidt 1 (3.6%)
+ Suniel Mahesh 1 (3.6%)
+ Thierry Reding 1 (3.6%)
+ Roman Stratiienko 1 (3.6%)
+ Luca Ceresoli 1 (3.6%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 607 (30.2%)
+ Google, Inc. 253 (12.6%)
+ NXP 216 (10.8%)
+ Rockchip 144 (7.2%)
+ ST Microelectronics 140 (7.0%)
+ Texas Instruments 133 (6.6%)
+ DENX Software Engineering 130 (6.5%)
+ Amarula Solutions 96 (4.8%)
+ Linaro 53 (2.6%)
+ BayLibre SAS 37 (1.8%)
+ Intel 33 (1.6%)
+ Konsulko Group 30 (1.5%)
+ Socionext Inc. 28 (1.4%)
+ ARM 16 (0.8%)
+ Pepperl+Fuchs 13 (0.6%)
+ Bootlin 12 (0.6%)
+ SUSE 11 (0.5%)
+ Toradex 11 (0.5%)
+ AMD 6 (0.3%)
+ Xilinx 6 (0.3%)
+ Collabora Ltd. 5 (0.2%)
+ Huawei Technologies 5 (0.2%)
+ IBM 4 (0.2%)
+ NVidia 4 (0.2%)
+ National Instruments 3 (0.1%)
+ Samsung 3 (0.1%)
+ Pengutronix 2 (0.1%)
+ Ronetix 2 (0.1%)
+ LWN.net 1 (0.0%)
+ Marvell 1 (0.0%)
+ Renesas Electronics 1 (0.0%)
+ Siemens 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 35820 (28.2%)
+ Google, Inc. 15764 (12.4%)
+ DENX Software Engineering 13966 (11.0%)
+ NXP 13113 (10.3%)
+ Amarula Solutions 7993 (6.3%)
+ Texas Instruments 7484 (5.9%)
+ Rockchip 7183 (5.7%)
+ ST Microelectronics 5440 (4.3%)
+ Linaro 4849 (3.8%)
+ BayLibre SAS 4685 (3.7%)
+ Pengutronix 2338 (1.8%)
+ Konsulko Group 2261 (1.8%)
+ Intel 1677 (1.3%)
+ Socionext Inc. 1257 (1.0%)
+ Pepperl+Fuchs 1008 (0.8%)
+ ARM 669 (0.5%)
+ Collabora Ltd. 271 (0.2%)
+ Toradex 246 (0.2%)
+ Ronetix 198 (0.2%)
+ IBM 174 (0.1%)
+ SUSE 128 (0.1%)
+ Xilinx 114 (0.1%)
+ Bootlin 96 (0.1%)
+ LWN.net 59 (0.0%)
+ NVidia 27 (0.0%)
+ Marvell 19 (0.0%)
+ AMD 18 (0.0%)
+ Huawei Technologies 16 (0.0%)
+ Samsung 14 (0.0%)
+ National Instruments 12 (0.0%)
+ Siemens 3 (0.0%)
+ Renesas Electronics 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 335)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Rockchip 62 (18.5%)
+ (Unknown) 53 (15.8%)
+ ST Microelectronics 43 (12.8%)
+ DENX Software Engineering 38 (11.3%)
+ Texas Instruments 27 (8.1%)
+ NXP 20 (6.0%)
+ Xilinx 20 (6.0%)
+ NVidia 16 (4.8%)
+ Konsulko Group 14 (4.2%)
+ Toradex 11 (3.3%)
+ SUSE 10 (3.0%)
+ Amarula Solutions 6 (1.8%)
+ BayLibre SAS 6 (1.8%)
+ Linaro 3 (0.9%)
+ Socionext Inc. 1 (0.3%)
+ ARM 1 (0.3%)
+ Marvell 1 (0.3%)
+ Samsung 1 (0.3%)
+ Bosch 1 (0.3%)
+ Sergey Kubushyn 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 193)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 96 (49.7%)
+ NXP 20 (10.4%)
+ Texas Instruments 11 (5.7%)
+ Linaro 7 (3.6%)
+ DENX Software Engineering 6 (3.1%)
+ ST Microelectronics 5 (2.6%)
+ SUSE 4 (2.1%)
+ BayLibre SAS 4 (2.1%)
+ Intel 4 (2.1%)
+ NVidia 3 (1.6%)
+ Toradex 3 (1.6%)
+ Amarula Solutions 3 (1.6%)
+ Socionext Inc. 3 (1.6%)
+ ARM 3 (1.6%)
+ Rockchip 2 (1.0%)
+ Google, Inc. 2 (1.0%)
+ Collabora Ltd. 2 (1.0%)
+ Xilinx 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ Marvell 1 (0.5%)
+ Samsung 1 (0.5%)
+ Pengutronix 1 (0.5%)
+ Pepperl+Fuchs 1 (0.5%)
+ Ronetix 1 (0.5%)
+ IBM 1 (0.5%)
+ Bootlin 1 (0.5%)
+ LWN.net 1 (0.5%)
+ AMD 1 (0.5%)
+ Huawei Technologies 1 (0.5%)
+ National Instruments 1 (0.5%)
+ Siemens 1 (0.5%)
+ Renesas Electronics 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2020.01.rst b/doc/develop/statistics/u-boot-stats-v2020.01.rst
new file mode 100644
index 0000000..35b1721
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2020.01.rst
@@ -0,0 +1,863 @@
+:orphan:
+
+Release Statistics for U-Boot v2020.01
+======================================
+
+* Processed 1826 csets from 192 developers
+
+* 30 employers found
+
+* A total of 180486 lines added, 41174 removed (delta 139312)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 235 (12.9%)
+ Peng Fan 124 (6.8%)
+ Michal Simek 95 (5.2%)
+ Tom Rini 70 (3.8%)
+ Heinrich Schuchardt 49 (2.7%)
+ Lokesh Vutla 44 (2.4%)
+ Kever Yang 42 (2.3%)
+ Lukasz Majewski 41 (2.2%)
+ Fabio Estevam 40 (2.2%)
+ Marek Vasut 39 (2.1%)
+ AKASHI Takahiro 30 (1.6%)
+ Vignesh Raghavendra 29 (1.6%)
+ Patrick Delaunay 29 (1.6%)
+ Siva Durga Prasad Paladugu 28 (1.5%)
+ Weijie Gao 28 (1.5%)
+ Jean-Jacques Hiblot 26 (1.4%)
+ Jagan Teki 23 (1.3%)
+ Eugen Hristev 23 (1.3%)
+ Miquel Raynal 22 (1.2%)
+ Alex Marginean 21 (1.2%)
+ Adam Ford 20 (1.1%)
+ Igor Opaniuk 20 (1.1%)
+ Yinbo Zhu 20 (1.1%)
+ Bin Meng 19 (1.0%)
+ Grygorii Strashko 18 (1.0%)
+ Heiko Stuebner 18 (1.0%)
+ Ye Li 18 (1.0%)
+ Matthias Brugger 17 (0.9%)
+ Anatolij Gustschin 16 (0.9%)
+ Patrice Chotard 16 (0.9%)
+ Faiz Abbas 16 (0.9%)
+ Neil Armstrong 16 (0.9%)
+ Andy Yan 15 (0.8%)
+ Ibai Erkiaga 15 (0.8%)
+ Yangbo Lu 14 (0.8%)
+ Heiko Schocher 14 (0.8%)
+ T Karthik Reddy 14 (0.8%)
+ Yannick Fertré 14 (0.8%)
+ Suman Anna 12 (0.7%)
+ Keerthy 12 (0.7%)
+ Thomas Hebb 11 (0.6%)
+ Simon Goldschmidt 11 (0.6%)
+ Rick Chen 11 (0.6%)
+ Patrick Wildt 11 (0.6%)
+ Philippe Reynes 11 (0.6%)
+ Tero Kristo 11 (0.6%)
+ Álvaro Fernández Rojas 10 (0.5%)
+ Peng Ma 8 (0.4%)
+ YouMin Chen 8 (0.4%)
+ Troy Kisky 7 (0.4%)
+ David Wu 7 (0.4%)
+ Parthiban Nallathambi 7 (0.4%)
+ Marek Szyprowski 7 (0.4%)
+ Tudor Ambarus 7 (0.4%)
+ Kursad Oney 7 (0.4%)
+ Andreas Dannenberg 7 (0.4%)
+ Michael Walle 6 (0.3%)
+ Stefan Roese 6 (0.3%)
+ Laurentiu Tudor 6 (0.3%)
+ Sam Protsenko 6 (0.3%)
+ Ryder Lee 6 (0.3%)
+ Breno Matheus Lima 6 (0.3%)
+ Stefano Babic 5 (0.3%)
+ Rasmus Villemoes 5 (0.3%)
+ Peter Robinson 5 (0.3%)
+ Lukas Auer 5 (0.3%)
+ Nicolas Ferre 5 (0.3%)
+ Joris Offouga 5 (0.3%)
+ Frieder Schrempf 5 (0.3%)
+ Bartosz Golaszewski 5 (0.3%)
+ mingming lee 5 (0.3%)
+ Soeren Moch 5 (0.3%)
+ Simon South 5 (0.3%)
+ Claudius Heine 5 (0.3%)
+ Otavio Salvador 5 (0.3%)
+ Jacky Bai 5 (0.3%)
+ Sandeep Sheriker Mallikarjun 5 (0.3%)
+ Robert Beckett 4 (0.2%)
+ Roger Quadros 4 (0.2%)
+ Joe Hershberger 4 (0.2%)
+ Michael Trimarchi 4 (0.2%)
+ Biwen Li 4 (0.2%)
+ Vasily Khoruzhick 4 (0.2%)
+ Elaine Zhang 4 (0.2%)
+ Joseph Chen 4 (0.2%)
+ Andreas Färber 4 (0.2%)
+ Ricardo Salveti 4 (0.2%)
+ Dario Binacchi 3 (0.2%)
+ Jeffy Chen 3 (0.2%)
+ Ben Wolsieffer 3 (0.2%)
+ Nevo Hed 3 (0.2%)
+ Paul Kocialkowski 3 (0.2%)
+ Giulio Benetti 3 (0.2%)
+ James Byrne 3 (0.2%)
+ Pankaj Bansal 3 (0.2%)
+ Baruch Siach 3 (0.2%)
+ Yuantian Tang 3 (0.2%)
+ Ley Foon Tan 3 (0.2%)
+ Udit Agarwal 3 (0.2%)
+ Sébastien Szymanski 3 (0.2%)
+ Robert Hancock 3 (0.2%)
+ Alexey Brodkin 3 (0.2%)
+ Eugeniy Paltsev 3 (0.2%)
+ James Doublesin 3 (0.2%)
+ Ashok Reddy Soma 3 (0.2%)
+ Kuldeep Singh 3 (0.2%)
+ Sjoerd Simons 3 (0.2%)
+ Krunal Bhargav 3 (0.2%)
+ Sergei Trofimovich 2 (0.1%)
+ Jorge Ramirez-Ortiz 2 (0.1%)
+ Ramon Fried 2 (0.1%)
+ Hannes Schmelzer 2 (0.1%)
+ Josef Holzmayr 2 (0.1%)
+ Priyanka Jain 2 (0.1%)
+ Masahiro Yamada 2 (0.1%)
+ Ooi, Joyce 2 (0.1%)
+ Finley Xiao 2 (0.1%)
+ Mathew McBride 2 (0.1%)
+ Andrew F. Davis 2 (0.1%)
+ Alexander Dahl 2 (0.1%)
+ Ralph Siemsen 2 (0.1%)
+ Rajan Vaja 2 (0.1%)
+ Harini Katakam 2 (0.1%)
+ Nishant Mittal 2 (0.1%)
+ Guillaume La Roque 2 (0.1%)
+ Sagar Shrikant Kadam 2 (0.1%)
+ Thomas Fitzsimmons 2 (0.1%)
+ Jun Nie 2 (0.1%)
+ Shawn Guo 2 (0.1%)
+ Mans Rullgard 2 (0.1%)
+ Moses Christopher 2 (0.1%)
+ Oleksandr Rybalko 2 (0.1%)
+ Yann Gautier 2 (0.1%)
+ Kevin Scholz 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Robert P. J. Day 1 (0.1%)
+ Patrik Dahlström 1 (0.1%)
+ Jack Mitchell 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Diego Rondini 1 (0.1%)
+ Michael Auchter 1 (0.1%)
+ Swapna Gurumani 1 (0.1%)
+ Cédric Le Goater 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Florin Laurentiu Chiculita 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Thierry Reding 1 (0.1%)
+ Grzegorz Jaszczyk 1 (0.1%)
+ Stefan Chulski 1 (0.1%)
+ Abhishek Shah 1 (0.1%)
+ Lihua Zhao 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Wen He 1 (0.1%)
+ Levin Du 1 (0.1%)
+ Cristian Ciocaltea 1 (0.1%)
+ Vignesh Rajendran 1 (0.1%)
+ Emmanuel Vadot 1 (0.1%)
+ Xiaowei Bao 1 (0.1%)
+ Chunfeng Yun 1 (0.1%)
+ liu hao 1 (0.1%)
+ Sherry Sun 1 (0.1%)
+ Oliver Graute 1 (0.1%)
+ Manivannan Sadhasivam 1 (0.1%)
+ Michal Sojka 1 (0.1%)
+ Roman Kapl 1 (0.1%)
+ Walter Lozano 1 (0.1%)
+ Dmitry Torokhov 1 (0.1%)
+ William Zhang 1 (0.1%)
+ Icenowy Zheng 1 (0.1%)
+ Clément Péron 1 (0.1%)
+ Stefan Mavrodiev 1 (0.1%)
+ Sunil Mohan Adapa 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Naga Sureshkumar Relli 1 (0.1%)
+ Venkatesh Yadav Abbarapu 1 (0.1%)
+ Shubhrajyoti Datta 1 (0.1%)
+ Wasim Khan 1 (0.1%)
+ Ran Wang 1 (0.1%)
+ Daniel Drake 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Quentin Schulz 1 (0.1%)
+ Douglas Anderson 1 (0.1%)
+ Daniele Alessandrelli 1 (0.1%)
+ Kayla Theil 1 (0.1%)
+ Shyam Saini 1 (0.1%)
+ Jarkko Nikula 1 (0.1%)
+ Kedar Chitnis 1 (0.1%)
+ Arun Parameswaran 1 (0.1%)
+ Saravanan Sekar 1 (0.1%)
+ Fabio Berton 1 (0.1%)
+ Vipul Kumar 1 (0.1%)
+ Mian Yousaf Kaukab 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Kevin Scholz 32102 (16.6%)
+ Peng Fan 18461 (9.5%)
+ Tom Rini 13903 (7.2%)
+ Lokesh Vutla 8837 (4.6%)
+ Simon Glass 7574 (3.9%)
+ AKASHI Takahiro 7491 (3.9%)
+ Vignesh Raghavendra 7427 (3.8%)
+ Michal Simek 7352 (3.8%)
+ Kever Yang 5101 (2.6%)
+ Daniel Schwierzeck 4671 (2.4%)
+ Andy Yan 4421 (2.3%)
+ Heiko Stuebner 4193 (2.2%)
+ Yannick Fertré 3941 (2.0%)
+ Faiz Abbas 3748 (1.9%)
+ Andreas Färber 3705 (1.9%)
+ Neil Armstrong 3053 (1.6%)
+ YouMin Chen 3013 (1.6%)
+ Fabio Estevam 3001 (1.5%)
+ mingming lee 2890 (1.5%)
+ Patrick Wildt 2540 (1.3%)
+ Lukasz Majewski 2442 (1.3%)
+ Patrick Delaunay 2228 (1.1%)
+ Weijie Gao 2006 (1.0%)
+ Miquel Raynal 1830 (0.9%)
+ Patrice Chotard 1701 (0.9%)
+ Finley Xiao 1646 (0.8%)
+ Heinrich Schuchardt 1510 (0.8%)
+ Siva Durga Prasad Paladugu 1425 (0.7%)
+ Igor Opaniuk 1292 (0.7%)
+ Hannes Schmelzer 1125 (0.6%)
+ Oliver Graute 1107 (0.6%)
+ David Wu 1100 (0.6%)
+ Ryder Lee 1066 (0.5%)
+ Elaine Zhang 1056 (0.5%)
+ Tero Kristo 964 (0.5%)
+ Jean-Jacques Hiblot 950 (0.5%)
+ Heiko Schocher 927 (0.5%)
+ Marek Vasut 909 (0.5%)
+ Eugen Hristev 870 (0.4%)
+ Sandeep Sheriker Mallikarjun 856 (0.4%)
+ Troy Kisky 822 (0.4%)
+ Sam Protsenko 771 (0.4%)
+ Shawn Guo 721 (0.4%)
+ Keerthy 656 (0.3%)
+ Peng Ma 640 (0.3%)
+ Bin Meng 627 (0.3%)
+ Rick Chen 627 (0.3%)
+ Ibai Erkiaga 626 (0.3%)
+ Joseph Chen 622 (0.3%)
+ Jagan Teki 597 (0.3%)
+ liu hao 556 (0.3%)
+ Anatolij Gustschin 484 (0.2%)
+ Nicolas Ferre 480 (0.2%)
+ Grygorii Strashko 475 (0.2%)
+ Alex Marginean 457 (0.2%)
+ Yangbo Lu 451 (0.2%)
+ Suman Anna 418 (0.2%)
+ Tudor Ambarus 365 (0.2%)
+ Jacky Bai 341 (0.2%)
+ James Doublesin 316 (0.2%)
+ Manivannan Sadhasivam 299 (0.2%)
+ Matthias Brugger 294 (0.2%)
+ Álvaro Fernández Rojas 288 (0.1%)
+ Ye Li 286 (0.1%)
+ T Karthik Reddy 275 (0.1%)
+ Arun Parameswaran 271 (0.1%)
+ Roger Quadros 247 (0.1%)
+ Jeffy Chen 243 (0.1%)
+ Adam Ford 235 (0.1%)
+ Sagar Shrikant Kadam 229 (0.1%)
+ Otavio Salvador 226 (0.1%)
+ Philippe Reynes 219 (0.1%)
+ Joris Offouga 212 (0.1%)
+ Michael Trimarchi 206 (0.1%)
+ Nevo Hed 197 (0.1%)
+ Vasily Khoruzhick 177 (0.1%)
+ Guillaume La Roque 172 (0.1%)
+ Diego Rondini 165 (0.1%)
+ Soeren Moch 158 (0.1%)
+ William Zhang 156 (0.1%)
+ Rajan Vaja 154 (0.1%)
+ Eugeniy Paltsev 150 (0.1%)
+ Moses Christopher 145 (0.1%)
+ Rasmus Villemoes 136 (0.1%)
+ Udit Agarwal 134 (0.1%)
+ Clément Péron 131 (0.1%)
+ Andreas Dannenberg 129 (0.1%)
+ Laurentiu Tudor 127 (0.1%)
+ Sébastien Szymanski 119 (0.1%)
+ Yinbo Zhu 109 (0.1%)
+ Breno Matheus Lima 109 (0.1%)
+ Paul Kocialkowski 109 (0.1%)
+ Parthiban Nallathambi 106 (0.1%)
+ Lukas Auer 102 (0.1%)
+ Simon Goldschmidt 94 (0.0%)
+ Stefan Roese 92 (0.0%)
+ Douglas Anderson 85 (0.0%)
+ Bartosz Golaszewski 83 (0.0%)
+ Kursad Oney 71 (0.0%)
+ Peter Robinson 71 (0.0%)
+ Robert Hancock 65 (0.0%)
+ Stefano Babic 64 (0.0%)
+ Alexey Brodkin 63 (0.0%)
+ Cristian Ciocaltea 63 (0.0%)
+ Quentin Schulz 61 (0.0%)
+ Naga Sureshkumar Relli 59 (0.0%)
+ Thomas Hebb 57 (0.0%)
+ Joe Hershberger 57 (0.0%)
+ Yuantian Tang 57 (0.0%)
+ Jernej Skrabec 54 (0.0%)
+ Frieder Schrempf 53 (0.0%)
+ Yann Gautier 53 (0.0%)
+ Lihua Zhao 53 (0.0%)
+ Sunil Mohan Adapa 46 (0.0%)
+ Daniel Drake 37 (0.0%)
+ Marek Szyprowski 36 (0.0%)
+ Claudius Heine 36 (0.0%)
+ James Byrne 35 (0.0%)
+ Sjoerd Simons 34 (0.0%)
+ Michael Walle 31 (0.0%)
+ Mans Rullgard 30 (0.0%)
+ Krunal Bhargav 29 (0.0%)
+ Ramon Fried 27 (0.0%)
+ Jun Nie 27 (0.0%)
+ Robert P. J. Day 26 (0.0%)
+ Simon South 25 (0.0%)
+ Josef Holzmayr 25 (0.0%)
+ Sherry Sun 25 (0.0%)
+ Grzegorz Jaszczyk 23 (0.0%)
+ Jorge Ramirez-Ortiz 21 (0.0%)
+ Ashok Reddy Soma 20 (0.0%)
+ Shubhrajyoti Datta 19 (0.0%)
+ Ley Foon Tan 18 (0.0%)
+ Biwen Li 16 (0.0%)
+ Ricardo Salveti 15 (0.0%)
+ Florin Laurentiu Chiculita 15 (0.0%)
+ Ran Wang 15 (0.0%)
+ Stefan Chulski 14 (0.0%)
+ Mian Yousaf Kaukab 14 (0.0%)
+ Alexander Dahl 12 (0.0%)
+ Icenowy Zheng 12 (0.0%)
+ Roman Kapl 11 (0.0%)
+ Kuldeep Singh 10 (0.0%)
+ Chris Packham 10 (0.0%)
+ Levin Du 10 (0.0%)
+ Pankaj Bansal 9 (0.0%)
+ Harini Katakam 9 (0.0%)
+ Thomas Fitzsimmons 9 (0.0%)
+ Giulio Benetti 8 (0.0%)
+ Masahiro Yamada 8 (0.0%)
+ Oleksandr Rybalko 8 (0.0%)
+ Swapna Gurumani 8 (0.0%)
+ Cédric Le Goater 8 (0.0%)
+ Baruch Siach 6 (0.0%)
+ Mathew McBride 6 (0.0%)
+ Atish Patra 6 (0.0%)
+ Robert Beckett 5 (0.0%)
+ Priyanka Jain 5 (0.0%)
+ Nishant Mittal 5 (0.0%)
+ Emmanuel Vadot 5 (0.0%)
+ Dmitry Torokhov 5 (0.0%)
+ Ben Wolsieffer 4 (0.0%)
+ Wasim Khan 4 (0.0%)
+ Shyam Saini 4 (0.0%)
+ Kedar Chitnis 4 (0.0%)
+ Dario Binacchi 3 (0.0%)
+ Sergei Trofimovich 3 (0.0%)
+ Andrew F. Davis 3 (0.0%)
+ Andy Shevchenko 3 (0.0%)
+ Vignesh Rajendran 3 (0.0%)
+ Michal Sojka 3 (0.0%)
+ Ooi, Joyce 2 (0.0%)
+ Ralph Siemsen 2 (0.0%)
+ Wen He 2 (0.0%)
+ Daniele Alessandrelli 2 (0.0%)
+ Kayla Theil 2 (0.0%)
+ Saravanan Sekar 2 (0.0%)
+ Stephen Warren 1 (0.0%)
+ Patrik Dahlström 1 (0.0%)
+ Jack Mitchell 1 (0.0%)
+ Michael Auchter 1 (0.0%)
+ Andre Przywara 1 (0.0%)
+ Thierry Reding 1 (0.0%)
+ Abhishek Shah 1 (0.0%)
+ Xiaowei Bao 1 (0.0%)
+ Chunfeng Yun 1 (0.0%)
+ Walter Lozano 1 (0.0%)
+ Stefan Mavrodiev 1 (0.0%)
+ Venkatesh Yadav Abbarapu 1 (0.0%)
+ Jarkko Nikula 1 (0.0%)
+ Fabio Berton 1 (0.0%)
+ Vipul Kumar 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Daniel Schwierzeck 4671 (11.3%)
+ Yangbo Lu 289 (0.7%)
+ Nevo Hed 139 (0.3%)
+ Jacky Bai 109 (0.3%)
+ Sébastien Szymanski 90 (0.2%)
+ William Zhang 52 (0.1%)
+ Soeren Moch 49 (0.1%)
+ Rasmus Villemoes 48 (0.1%)
+ Bartosz Golaszewski 17 (0.0%)
+ Jun Nie 14 (0.0%)
+ Mian Yousaf Kaukab 14 (0.0%)
+ Alexey Brodkin 12 (0.0%)
+ Chris Packham 10 (0.0%)
+ Stefano Babic 5 (0.0%)
+ Josef Holzmayr 5 (0.0%)
+ Masahiro Yamada 4 (0.0%)
+ Frieder Schrempf 3 (0.0%)
+ Andrew F. Davis 2 (0.0%)
+ Daniele Alessandrelli 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 322)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 68 (21.1%)
+ Bin Meng 32 (9.9%)
+ Priyanka Jain 26 (8.1%)
+ Lokesh Vutla 18 (5.6%)
+ Peng Fan 14 (4.3%)
+ Otavio Salvador 13 (4.0%)
+ YouMin Chen 13 (4.0%)
+ Tom Rini 10 (3.1%)
+ Kever Yang 10 (3.1%)
+ Siva Durga Prasad Paladugu 9 (2.8%)
+ Frank Wunderlich 8 (2.5%)
+ Jean-Jacques Hiblot 7 (2.2%)
+ Keerthy 7 (2.2%)
+ Neil Armstrong 7 (2.2%)
+ Suman Anna 6 (1.9%)
+ Heiko Stuebner 5 (1.6%)
+ Tudor Ambarus 4 (1.2%)
+ Jagan Teki 4 (1.2%)
+ Simon Glass 4 (1.2%)
+ Alexey Brodkin 3 (0.9%)
+ Fabio Berton 3 (0.9%)
+ Heinrich Schuchardt 3 (0.9%)
+ Elaine Zhang 3 (0.9%)
+ Stefano Babic 2 (0.6%)
+ Stefan Agner 2 (0.6%)
+ Vladimir Olovyannikov 2 (0.6%)
+ Ashish Kumar 2 (0.6%)
+ Claudiu Beznea 2 (0.6%)
+ Stefan Roese 2 (0.6%)
+ Ye Li 2 (0.6%)
+ Anatolij Gustschin 2 (0.6%)
+ Nicolas Ferre 2 (0.6%)
+ Lukasz Majewski 2 (0.6%)
+ Kevin Scholz 2 (0.6%)
+ Nevo Hed 1 (0.3%)
+ Razvan Ionut Cirjan 1 (0.3%)
+ Sanchayan Maity 1 (0.3%)
+ Philipp Tomsich 1 (0.3%)
+ Chee Hong Ang 1 (0.3%)
+ Veeraiyan Chidambaram 1 (0.3%)
+ Steven Hao 1 (0.3%)
+ Anti Sullin 1 (0.3%)
+ Christophe Kerello 1 (0.3%)
+ Corneliu Doban 1 (0.3%)
+ Pramod Kumar 1 (0.3%)
+ Pavithra Ravi 1 (0.3%)
+ Bharat Kumar Reddy Gooty 1 (0.3%)
+ Prasanthi Chellakumar 1 (0.3%)
+ Harini Katakam 1 (0.3%)
+ Florin Laurentiu Chiculita 1 (0.3%)
+ Ashok Reddy Soma 1 (0.3%)
+ Ibai Erkiaga 1 (0.3%)
+ Eugen Hristev 1 (0.3%)
+ Tero Kristo 1 (0.3%)
+ Fabio Estevam 1 (0.3%)
+ Andy Yan 1 (0.3%)
+ Vignesh Raghavendra 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 709)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 144 (20.3%)
+ Kever Yang 92 (13.0%)
+ Tom Rini 54 (7.6%)
+ Simon Glass 53 (7.5%)
+ Priyanka Jain 52 (7.3%)
+ Peng Fan 27 (3.8%)
+ Fabio Estevam 24 (3.4%)
+ Stefan Roese 22 (3.1%)
+ Jagan Teki 16 (2.3%)
+ Oleksandr Suvorov 16 (2.3%)
+ Boris Brezillon 13 (1.8%)
+ Heinrich Schuchardt 10 (1.4%)
+ Anatolij Gustschin 10 (1.4%)
+ Ye Li 9 (1.3%)
+ Ley Foon Tan 9 (1.3%)
+ Simon Goldschmidt 9 (1.3%)
+ Daniel Schwierzeck 8 (1.1%)
+ Philippe Reynes 8 (1.1%)
+ Lukasz Majewski 7 (1.0%)
+ Stephen Warren 7 (1.0%)
+ Grygorii Strashko 7 (1.0%)
+ Frieder Schrempf 6 (0.8%)
+ Luca Ceresoli 6 (0.8%)
+ Ramon Fried 6 (0.8%)
+ Patrice Chotard 6 (0.8%)
+ Rick Chen 6 (0.8%)
+ Lokesh Vutla 5 (0.7%)
+ Bartosz Golaszewski 5 (0.7%)
+ Chris Packham 5 (0.7%)
+ Anup Patel 5 (0.7%)
+ Horia Geanta 5 (0.7%)
+ Heiko Schocher 5 (0.7%)
+ Philipp Tomsich 4 (0.6%)
+ Fabien Dessenne 4 (0.6%)
+ Tudor Ambarus 3 (0.4%)
+ Kursad Oney 3 (0.4%)
+ Alex Marginean 3 (0.4%)
+ Igor Opaniuk 3 (0.4%)
+ Otavio Salvador 2 (0.3%)
+ Neil Armstrong 2 (0.3%)
+ Heiko Stuebner 2 (0.3%)
+ Igal Liberman 2 (0.3%)
+ Jens Wiklander 2 (0.3%)
+ Patrick Wildt 2 (0.3%)
+ Patrick Delaunay 2 (0.3%)
+ Michal Simek 1 (0.1%)
+ Jean-Jacques Hiblot 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Eugen Hristev 1 (0.1%)
+ Ralph Siemsen 1 (0.1%)
+ Andre Przywara 1 (0.1%)
+ Joel Stanley 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Wolfgang Grandegger 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Aiden Park 1 (0.1%)
+ Eugeniu Rosca 1 (0.1%)
+ Maxime Ripard 1 (0.1%)
+ Joe Hershberger 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Marek Vasut 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 143)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 41 (28.7%)
+ Stephen Warren 14 (9.8%)
+ Simon Glass 11 (7.7%)
+ Levin Du 8 (5.6%)
+ Frank Wunderlich 6 (4.2%)
+ Frieder Schrempf 5 (3.5%)
+ Bartosz Golaszewski 5 (3.5%)
+ Max Krummenacher 5 (3.5%)
+ Chris Packham 4 (2.8%)
+ Jagan Teki 3 (2.1%)
+ Rick Chen 3 (2.1%)
+ Joris Offouga 3 (2.1%)
+ Tom Rini 2 (1.4%)
+ Heinrich Schuchardt 2 (1.4%)
+ Simon Goldschmidt 2 (1.4%)
+ Patrice Chotard 2 (1.4%)
+ Igal Liberman 2 (1.4%)
+ Eugen Hristev 2 (1.4%)
+ Peter Robinson 2 (1.4%)
+ Steffen Dirkwinkel 2 (1.4%)
+ Adam Ford 2 (1.4%)
+ Fabio Estevam 1 (0.7%)
+ Fabien Dessenne 1 (0.7%)
+ Alex Marginean 1 (0.7%)
+ Patrick Wildt 1 (0.7%)
+ Aiden Park 1 (0.7%)
+ Suman Anna 1 (0.7%)
+ Aurelien Jarno 1 (0.7%)
+ David Abdurachmanov 1 (0.7%)
+ Pierre-Jean Texier 1 (0.7%)
+ Anand Moon 1 (0.7%)
+ Guillaume Gardet 1 (0.7%)
+ thomas graichen 1 (0.7%)
+ Robby Cai 1 (0.7%)
+ Michael Walle 1 (0.7%)
+ Cristian Ciocaltea 1 (0.7%)
+ Eugeniy Paltsev 1 (0.7%)
+ Manivannan Sadhasivam 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 143)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 37 (25.9%)
+ Tom Rini 24 (16.8%)
+ Anatolij Gustschin 10 (7.0%)
+ Jagan Teki 9 (6.3%)
+ Peng Fan 7 (4.9%)
+ Adam Ford 5 (3.5%)
+ Igor Opaniuk 5 (3.5%)
+ Lukas Auer 5 (3.5%)
+ Ryder Lee 4 (2.8%)
+ Heinrich Schuchardt 3 (2.1%)
+ Vignesh Raghavendra 3 (2.1%)
+ Bin Meng 2 (1.4%)
+ Fabio Estevam 2 (1.4%)
+ Patrick Wildt 2 (1.4%)
+ Lokesh Vutla 2 (1.4%)
+ Marek Vasut 2 (1.4%)
+ Masahiro Yamada 2 (1.4%)
+ Oleksandr Rybalko 2 (1.4%)
+ Matthias Brugger 2 (1.4%)
+ Peter Robinson 1 (0.7%)
+ Michael Walle 1 (0.7%)
+ Jean-Jacques Hiblot 1 (0.7%)
+ Jacky Bai 1 (0.7%)
+ Jun Nie 1 (0.7%)
+ Stefan Chulski 1 (0.7%)
+ Emmanuel Vadot 1 (0.7%)
+ Pankaj Bansal 1 (0.7%)
+ Grzegorz Jaszczyk 1 (0.7%)
+ Jernej Skrabec 1 (0.7%)
+ Robert Hancock 1 (0.7%)
+ Vasily Khoruzhick 1 (0.7%)
+ Sagar Shrikant Kadam 1 (0.7%)
+ T Karthik Reddy 1 (0.7%)
+ Shawn Guo 1 (0.7%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 2 (7.4%)
+ Anatolij Gustschin 2 (7.4%)
+ Heinrich Schuchardt 2 (7.4%)
+ Rick Chen 2 (7.4%)
+ Luca Ceresoli 2 (7.4%)
+ Faiz Abbas 2 (7.4%)
+ Jagan Teki 1 (3.7%)
+ Peter Robinson 1 (3.7%)
+ Joris Offouga 1 (3.7%)
+ Aurelien Jarno 1 (3.7%)
+ Cristian Ciocaltea 1 (3.7%)
+ Eugeniy Paltsev 1 (3.7%)
+ Tero Kristo 1 (3.7%)
+ Andrew F. Davis 1 (3.7%)
+ Dan Murphy 1 (3.7%)
+ Ondrej Jirman 1 (3.7%)
+ Gray Remlin 1 (3.7%)
+ Christophe Priouzeau 1 (3.7%)
+ Richard Woodruff 1 (3.7%)
+ Andy Shevchenko 1 (3.7%)
+ Sam Protsenko 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 4 (14.8%)
+ Lukas Auer 3 (11.1%)
+ Vignesh Raghavendra 3 (11.1%)
+ Matthias Brugger 3 (11.1%)
+ Heinrich Schuchardt 2 (7.4%)
+ Fabio Estevam 2 (7.4%)
+ Michal Simek 2 (7.4%)
+ Tom Rini 1 (3.7%)
+ Anatolij Gustschin 1 (3.7%)
+ Jagan Teki 1 (3.7%)
+ Peng Fan 1 (3.7%)
+ Patrice Chotard 1 (3.7%)
+ Joe Hershberger 1 (3.7%)
+ Keerthy 1 (3.7%)
+ Breno Matheus Lima 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 429 (23.5%)
+ NXP 247 (13.5%)
+ Google, Inc. 236 (12.9%)
+ Texas Instruments 189 (10.4%)
+ DENX Software Engineering 133 (7.3%)
+ AMD 95 (5.2%)
+ Rockchip 84 (4.6%)
+ Konsulko Group 70 (3.8%)
+ Xilinx 70 (3.8%)
+ ST Microelectronics 61 (3.3%)
+ Linaro 43 (2.4%)
+ Amarula Solutions 28 (1.5%)
+ Bootlin 26 (1.4%)
+ BayLibre SAS 23 (1.3%)
+ SUSE 22 (1.2%)
+ Pepperl+Fuchs 11 (0.6%)
+ Broadcom 10 (0.5%)
+ Collabora Ltd. 8 (0.4%)
+ Boundary Devices 7 (0.4%)
+ Samsung 7 (0.4%)
+ Intel 6 (0.3%)
+ O.S. Systems 6 (0.3%)
+ National Instruments 5 (0.3%)
+ Gentoo 2 (0.1%)
+ NVidia 2 (0.1%)
+ Socionext Inc. 2 (0.1%)
+ ARM 1 (0.1%)
+ Wind River 1 (0.1%)
+ Marvell 1 (0.1%)
+ Semihalf Embedded Systems 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Texas Instruments 56305 (29.0%)
+ (Unknown) 34059 (17.6%)
+ NXP 21275 (11.0%)
+ Rockchip 16479 (8.5%)
+ Konsulko Group 13903 (7.2%)
+ Linaro 9311 (4.8%)
+ ST Microelectronics 7923 (4.1%)
+ Google, Inc. 7659 (3.9%)
+ AMD 7352 (3.8%)
+ DENX Software Engineering 5060 (2.6%)
+ SUSE 4013 (2.1%)
+ BayLibre SAS 3308 (1.7%)
+ Xilinx 2594 (1.3%)
+ Bootlin 2000 (1.0%)
+ Boundary Devices 822 (0.4%)
+ Amarula Solutions 807 (0.4%)
+ Broadcom 499 (0.3%)
+ O.S. Systems 227 (0.1%)
+ Pepperl+Fuchs 94 (0.0%)
+ National Instruments 58 (0.0%)
+ Wind River 53 (0.0%)
+ Collabora Ltd. 40 (0.0%)
+ Samsung 36 (0.0%)
+ Intel 23 (0.0%)
+ Semihalf Embedded Systems 23 (0.0%)
+ Marvell 14 (0.0%)
+ Socionext Inc. 8 (0.0%)
+ Gentoo 3 (0.0%)
+ NVidia 2 (0.0%)
+ ARM 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 322)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Xilinx 80 (24.8%)
+ (Unknown) 66 (20.5%)
+ NXP 46 (14.3%)
+ Texas Instruments 42 (13.0%)
+ Rockchip 27 (8.4%)
+ O.S. Systems 16 (5.0%)
+ Konsulko Group 10 (3.1%)
+ DENX Software Engineering 8 (2.5%)
+ BayLibre SAS 7 (2.2%)
+ Broadcom 6 (1.9%)
+ Google, Inc. 4 (1.2%)
+ Amarula Solutions 4 (1.2%)
+ Toradex 3 (0.9%)
+ ST Microelectronics 1 (0.3%)
+ Intel 1 (0.3%)
+ Artec Design 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 194)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 79 (40.7%)
+ NXP 22 (11.3%)
+ Texas Instruments 15 (7.7%)
+ Xilinx 11 (5.7%)
+ Rockchip 8 (4.1%)
+ DENX Software Engineering 8 (4.1%)
+ Linaro 6 (3.1%)
+ Broadcom 4 (2.1%)
+ ST Microelectronics 4 (2.1%)
+ BayLibre SAS 3 (1.5%)
+ Amarula Solutions 3 (1.5%)
+ Intel 3 (1.5%)
+ SUSE 3 (1.5%)
+ Bootlin 3 (1.5%)
+ Collabora Ltd. 3 (1.5%)
+ O.S. Systems 2 (1.0%)
+ Google, Inc. 2 (1.0%)
+ National Instruments 2 (1.0%)
+ NVidia 2 (1.0%)
+ Konsulko Group 1 (0.5%)
+ AMD 1 (0.5%)
+ Boundary Devices 1 (0.5%)
+ Pepperl+Fuchs 1 (0.5%)
+ Wind River 1 (0.5%)
+ Samsung 1 (0.5%)
+ Semihalf Embedded Systems 1 (0.5%)
+ Marvell 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ Gentoo 1 (0.5%)
+ ARM 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2020.04.rst b/doc/develop/statistics/u-boot-stats-v2020.04.rst
new file mode 100644
index 0000000..6650ad3
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2020.04.rst
@@ -0,0 +1,855 @@
+:orphan:
+
+Release Statistics for U-Boot v2020.04
+======================================
+
+* Processed 1639 csets from 189 developers
+
+* 30 employers found
+
+* A total of 108344 lines added, 33382 removed (delta 74962)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 309 (18.9%)
+ Heinrich Schuchardt 82 (5.0%)
+ Marek Vasut 54 (3.3%)
+ Vignesh Raghavendra 49 (3.0%)
+ Michal Simek 45 (2.7%)
+ Masahiro Yamada 38 (2.3%)
+ Igor Opaniuk 36 (2.2%)
+ Heiko Schocher 32 (2.0%)
+ Fabio Estevam 31 (1.9%)
+ Jagan Teki 30 (1.8%)
+ Ley Foon Tan 29 (1.8%)
+ Tom Rini 28 (1.7%)
+ Peng Fan 28 (1.7%)
+ Giulio Benetti 27 (1.6%)
+ Faiz Abbas 27 (1.6%)
+ Ran Wang 23 (1.4%)
+ Patrick Delaunay 21 (1.3%)
+ Baruch Siach 21 (1.3%)
+ Philippe Reynes 20 (1.2%)
+ Robert Beckett 19 (1.2%)
+ Rasmus Villemoes 18 (1.1%)
+ Holger Brunck 17 (1.0%)
+ Biwen Li 16 (1.0%)
+ Andre Przywara 16 (1.0%)
+ Wolfgang Wallner 15 (0.9%)
+ Anatolij Gustschin 15 (0.9%)
+ Kuldeep Singh 14 (0.9%)
+ Alifer Moraes 14 (0.9%)
+ Marek Szyprowski 14 (0.9%)
+ mingming lee 14 (0.9%)
+ Sean Anderson 13 (0.8%)
+ Alex Marginean 13 (0.8%)
+ Wasim Khan 13 (0.8%)
+ Angelo Durgehello 13 (0.8%)
+ Sughosh Ganu 13 (0.8%)
+ Andrew F. Davis 13 (0.8%)
+ Sam Protsenko 12 (0.7%)
+ Jean-Jacques Hiblot 12 (0.7%)
+ Andy Shevchenko 11 (0.7%)
+ Tom Warren 11 (0.7%)
+ Sam Shih 11 (0.7%)
+ Bin Meng 10 (0.6%)
+ Joris Offouga 10 (0.6%)
+ Ian Ray 9 (0.5%)
+ Yangbo Lu 8 (0.5%)
+ AKASHI Takahiro 8 (0.5%)
+ Priyanka Singh 7 (0.4%)
+ Lokesh Vutla 7 (0.4%)
+ Lukasz Majewski 7 (0.4%)
+ T Karthik Reddy 7 (0.4%)
+ Peng Ma 7 (0.4%)
+ Fabien Dessenne 7 (0.4%)
+ Chunfeng Yun 7 (0.4%)
+ Cristian Ciocaltea 7 (0.4%)
+ Peter Robinson 6 (0.4%)
+ Kever Yang 6 (0.4%)
+ Tudor Ambarus 6 (0.4%)
+ Patrice Chotard 6 (0.4%)
+ Eugeniy Paltsev 6 (0.4%)
+ Yuantian Tang 6 (0.4%)
+ Pedro Jardim 6 (0.4%)
+ Michael Walle 6 (0.4%)
+ Ashok Reddy Soma 6 (0.4%)
+ Alex Nemirovsky 5 (0.3%)
+ Meenakshi Aggarwal 5 (0.3%)
+ Michael Trimarchi 5 (0.3%)
+ Suniel Mahesh 5 (0.3%)
+ Andreas Dannenberg 5 (0.3%)
+ Joel Johnson 5 (0.3%)
+ Flavio Suligoi 5 (0.3%)
+ Yinbo Zhu 5 (0.3%)
+ Stephan Gerhold 5 (0.3%)
+ Ovidiu Panait 4 (0.2%)
+ Alexey Brodkin 4 (0.2%)
+ Alison Wang 4 (0.2%)
+ Otavio Salvador 4 (0.2%)
+ Marcel Ziswiler 4 (0.2%)
+ Jason Li 4 (0.2%)
+ MarkLee 4 (0.2%)
+ Jorge Ramirez-Ortiz 4 (0.2%)
+ Caleb Robey 4 (0.2%)
+ Steffen Dirkwinkel 4 (0.2%)
+ Ye Li 3 (0.2%)
+ Jan Kiszka 3 (0.2%)
+ Klaus H. Sorensen 3 (0.2%)
+ Madalin Bucur 3 (0.2%)
+ Oliver Graute 3 (0.2%)
+ Frieder Schrempf 3 (0.2%)
+ Heiko Stuebner 3 (0.2%)
+ Dario Binacchi 3 (0.2%)
+ Amit Singh Tomar 3 (0.2%)
+ Martin Fuzzey 3 (0.2%)
+ Chen-Yu Tsai 3 (0.2%)
+ Pankaj Bansal 3 (0.2%)
+ Pramod Kumar 3 (0.2%)
+ Adam Ford 3 (0.2%)
+ Eugeniu Rosca 3 (0.2%)
+ Lars Povlsen 2 (0.1%)
+ Stephen Warren 2 (0.1%)
+ Kristian Amlie 2 (0.1%)
+ Simon Goldschmidt 2 (0.1%)
+ Frank Wunderlich 2 (0.1%)
+ Fabien Lehoussel 2 (0.1%)
+ Grygorii Strashko 2 (0.1%)
+ Samuel Mendoza-Jonas 2 (0.1%)
+ Ilias Apalodimas 2 (0.1%)
+ Christophe Leroy 2 (0.1%)
+ Milan Obuch 2 (0.1%)
+ Markus Klotzbuecher 2 (0.1%)
+ Bharat Kumar Reddy Gooty 2 (0.1%)
+ Antonio Borneo 2 (0.1%)
+ Thirupathaiah Annapureddy 2 (0.1%)
+ Park, Aiden 2 (0.1%)
+ YouMin Chen 2 (0.1%)
+ Thomas Hebb 2 (0.1%)
+ Udit Agarwal 2 (0.1%)
+ Hou Zhiqiang 2 (0.1%)
+ Anand Moon 2 (0.1%)
+ Christian Hewitt 2 (0.1%)
+ Thor Thayer 2 (0.1%)
+ Claudius Heine 2 (0.1%)
+ Denis Zalevskiy 2 (0.1%)
+ Stefan Roese 1 (0.1%)
+ Chee Hong Ang 1 (0.1%)
+ Jan-Christoph Tebbe 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Vishruth 1 (0.1%)
+ JC Kuo 1 (0.1%)
+ Lihua Zhao 1 (0.1%)
+ Vladimir Oltean 1 (0.1%)
+ Vikas Singh 1 (0.1%)
+ Petr Štetiar 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Marek Behún 1 (0.1%)
+ Harald Seiler 1 (0.1%)
+ Miquel Raynal 1 (0.1%)
+ Tomasz Duszynski 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Walter Lozano 1 (0.1%)
+ Alex Kiernan 1 (0.1%)
+ Clemens Gruber 1 (0.1%)
+ Matthias Brugger 1 (0.1%)
+ Pankit Garg 1 (0.1%)
+ Max Krummenacher 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Arthur Li 1 (0.1%)
+ Samuel Mescoff 1 (0.1%)
+ Seung-Woo Kim 1 (0.1%)
+ Rajan Vaja 1 (0.1%)
+ Madan Srinivas 1 (0.1%)
+ Carl Gelfand 1 (0.1%)
+ Jared Baldridge 1 (0.1%)
+ Hugh Cole-Baker 1 (0.1%)
+ Tero Kristo 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Marek Bykowski 1 (0.1%)
+ Sébastien Szymanski 1 (0.1%)
+ Luka Kovacic 1 (0.1%)
+ Robert Marko 1 (0.1%)
+ Maxime Ripard 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Guillermo Rodríguez 1 (0.1%)
+ Christoph Müllner 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Marcin Wojtas 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Fabien Parent 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Shawn Guo 1 (0.1%)
+ Patrik Dahlström 1 (0.1%)
+ Xiaowei Bao 1 (0.1%)
+ Dhananjay Phadke 1 (0.1%)
+ Rainer Boschung 1 (0.1%)
+ Matthias Schoepfer 1 (0.1%)
+ Arkadiusz Karas 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Jason Kridner 1 (0.1%)
+ Alexandre Besnard 1 (0.1%)
+ Zumeng Chen 1 (0.1%)
+ Sudeep Holla 1 (0.1%)
+ Raviteja Narayanam 1 (0.1%)
+ Rajesh Ravi 1 (0.1%)
+ Han Nandor 1 (0.1%)
+ Parthiban Nallathambi 1 (0.1%)
+ Wen He 1 (0.1%)
+ Vabhav Sharma 1 (0.1%)
+ Florinel Iordache 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Michael Auchter 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 23135 (18.7%)
+ Peng Fan 6869 (5.6%)
+ Heiko Schocher 6326 (5.1%)
+ Michal Simek 4952 (4.0%)
+ Ley Foon Tan 4752 (3.8%)
+ Igor Opaniuk 4700 (3.8%)
+ Baruch Siach 4567 (3.7%)
+ Robert Beckett 3815 (3.1%)
+ Giulio Benetti 3134 (2.5%)
+ mingming lee 2755 (2.2%)
+ Marek Vasut 2569 (2.1%)
+ Sam Shih 2530 (2.0%)
+ Holger Brunck 2393 (1.9%)
+ Stephan Gerhold 2290 (1.9%)
+ Tom Rini 2200 (1.8%)
+ Philippe Reynes 2105 (1.7%)
+ Jagan Teki 2086 (1.7%)
+ Tom Warren 1986 (1.6%)
+ Anatolij Gustschin 1954 (1.6%)
+ Chen-Yu Tsai 1603 (1.3%)
+ Angelo Durgehello 1600 (1.3%)
+ Vignesh Raghavendra 1593 (1.3%)
+ Fabio Estevam 1519 (1.2%)
+ Heinrich Schuchardt 1510 (1.2%)
+ Andre Przywara 1492 (1.2%)
+ Samuel Mendoza-Jonas 1384 (1.1%)
+ Sam Protsenko 1357 (1.1%)
+ Peng Ma 1188 (1.0%)
+ Michael Walle 1091 (0.9%)
+ Lukasz Majewski 1086 (0.9%)
+ Biwen Li 1061 (0.9%)
+ Patrick Delaunay 998 (0.8%)
+ Martin Fuzzey 884 (0.7%)
+ Joris Offouga 758 (0.6%)
+ Amit Singh Tomar 745 (0.6%)
+ Parthiban Nallathambi 732 (0.6%)
+ Arkadiusz Karas 730 (0.6%)
+ Stefano Babic 691 (0.6%)
+ Sughosh Ganu 670 (0.5%)
+ Cristian Ciocaltea 629 (0.5%)
+ Florinel Iordache 620 (0.5%)
+ Masahiro Yamada 613 (0.5%)
+ Jason Kridner 577 (0.5%)
+ Faiz Abbas 536 (0.4%)
+ Alex Nemirovsky 497 (0.4%)
+ Ilias Apalodimas 487 (0.4%)
+ Andrew F. Davis 469 (0.4%)
+ Fabien Dessenne 468 (0.4%)
+ Jason Li 442 (0.4%)
+ Caleb Robey 430 (0.3%)
+ Bin Meng 397 (0.3%)
+ Alex Marginean 373 (0.3%)
+ Ashok Reddy Soma 322 (0.3%)
+ Andreas Dannenberg 317 (0.3%)
+ Han Nandor 298 (0.2%)
+ Thirupathaiah Annapureddy 293 (0.2%)
+ Tudor Ambarus 291 (0.2%)
+ Christian Hewitt 291 (0.2%)
+ Bharat Kumar Reddy Gooty 250 (0.2%)
+ Jean-Jacques Hiblot 239 (0.2%)
+ Wasim Khan 234 (0.2%)
+ Alexey Brodkin 232 (0.2%)
+ Ran Wang 231 (0.2%)
+ Rasmus Villemoes 222 (0.2%)
+ Ye Li 220 (0.2%)
+ YouMin Chen 220 (0.2%)
+ Grygorii Strashko 210 (0.2%)
+ Ian Ray 206 (0.2%)
+ Kuldeep Singh 201 (0.2%)
+ Arthur Li 195 (0.2%)
+ Eugeniu Rosca 191 (0.2%)
+ Klaus H. Sorensen 185 (0.1%)
+ Pedro Jardim 183 (0.1%)
+ Yangbo Lu 181 (0.1%)
+ Andy Shevchenko 180 (0.1%)
+ Heiko Stuebner 173 (0.1%)
+ Marek Szyprowski 172 (0.1%)
+ Suniel Mahesh 157 (0.1%)
+ Wolfgang Wallner 135 (0.1%)
+ Zumeng Chen 135 (0.1%)
+ Eugeniy Paltsev 133 (0.1%)
+ Chunfeng Yun 130 (0.1%)
+ Sean Anderson 129 (0.1%)
+ Yuantian Tang 125 (0.1%)
+ MarkLee 124 (0.1%)
+ Michael Trimarchi 119 (0.1%)
+ Steffen Dirkwinkel 114 (0.1%)
+ Peter Robinson 111 (0.1%)
+ Alifer Moraes 110 (0.1%)
+ Adam Ford 98 (0.1%)
+ Priyanka Singh 91 (0.1%)
+ AKASHI Takahiro 90 (0.1%)
+ Patrice Chotard 79 (0.1%)
+ Denis Zalevskiy 76 (0.1%)
+ Marcel Ziswiler 61 (0.0%)
+ Joel Johnson 60 (0.0%)
+ JC Kuo 59 (0.0%)
+ T Karthik Reddy 57 (0.0%)
+ Clemens Gruber 55 (0.0%)
+ Maxime Ripard 55 (0.0%)
+ Meenakshi Aggarwal 52 (0.0%)
+ Frieder Schrempf 51 (0.0%)
+ Frank Wunderlich 50 (0.0%)
+ Park, Aiden 48 (0.0%)
+ Alex Kiernan 43 (0.0%)
+ Alison Wang 41 (0.0%)
+ Pankaj Bansal 36 (0.0%)
+ Kever Yang 35 (0.0%)
+ Atish Patra 34 (0.0%)
+ Vladimir Oltean 33 (0.0%)
+ Pramod Kumar 31 (0.0%)
+ Udit Agarwal 30 (0.0%)
+ Lars Povlsen 28 (0.0%)
+ Thor Thayer 27 (0.0%)
+ Lokesh Vutla 25 (0.0%)
+ Stefan Roese 24 (0.0%)
+ Ovidiu Panait 23 (0.0%)
+ Chee Hong Ang 22 (0.0%)
+ Hugh Cole-Baker 21 (0.0%)
+ Rajesh Ravi 21 (0.0%)
+ Otavio Salvador 20 (0.0%)
+ Claudius Heine 19 (0.0%)
+ Luka Kovacic 19 (0.0%)
+ Simon Goldschmidt 18 (0.0%)
+ Yinbo Zhu 16 (0.0%)
+ Stephen Warren 15 (0.0%)
+ Wen He 15 (0.0%)
+ Roger Quadros 13 (0.0%)
+ Guillermo Rodríguez 13 (0.0%)
+ Hou Zhiqiang 12 (0.0%)
+ Seung-Woo Kim 12 (0.0%)
+ Tomasz Duszynski 11 (0.0%)
+ Marcin Wojtas 11 (0.0%)
+ Madan Srinivas 10 (0.0%)
+ Thomas Hebb 9 (0.0%)
+ Madalin Bucur 8 (0.0%)
+ Robert Marko 8 (0.0%)
+ Xiaowei Bao 8 (0.0%)
+ Oliver Graute 7 (0.0%)
+ Christophe Leroy 7 (0.0%)
+ Antonio Borneo 7 (0.0%)
+ Marek Behún 7 (0.0%)
+ Patrik Dahlström 7 (0.0%)
+ Joakim Tjernlund 7 (0.0%)
+ Flavio Suligoi 6 (0.0%)
+ Dario Binacchi 6 (0.0%)
+ Kristian Amlie 6 (0.0%)
+ Rajan Vaja 6 (0.0%)
+ Jorge Ramirez-Ortiz 5 (0.0%)
+ Pankit Garg 5 (0.0%)
+ Jan Kiszka 4 (0.0%)
+ Fabien Lehoussel 4 (0.0%)
+ Markus Klotzbuecher 4 (0.0%)
+ Miquel Raynal 4 (0.0%)
+ Sébastien Szymanski 4 (0.0%)
+ Rob Herring 4 (0.0%)
+ Rainer Boschung 4 (0.0%)
+ Sudeep Holla 4 (0.0%)
+ Milan Obuch 3 (0.0%)
+ Mark Kettenis 3 (0.0%)
+ Anand Moon 2 (0.0%)
+ Jaehoon Chung 2 (0.0%)
+ Vishruth 2 (0.0%)
+ Lihua Zhao 2 (0.0%)
+ Harald Seiler 2 (0.0%)
+ Chris Packham 2 (0.0%)
+ Walter Lozano 2 (0.0%)
+ Matthias Brugger 2 (0.0%)
+ Max Krummenacher 2 (0.0%)
+ Jared Baldridge 2 (0.0%)
+ Jernej Skrabec 2 (0.0%)
+ Dhananjay Phadke 2 (0.0%)
+ Keerthy 2 (0.0%)
+ Alexandre Besnard 2 (0.0%)
+ Vabhav Sharma 2 (0.0%)
+ Jan-Christoph Tebbe 1 (0.0%)
+ Vikas Singh 1 (0.0%)
+ Petr Štetiar 1 (0.0%)
+ Samuel Mescoff 1 (0.0%)
+ Carl Gelfand 1 (0.0%)
+ Tero Kristo 1 (0.0%)
+ Marek Bykowski 1 (0.0%)
+ Christoph Müllner 1 (0.0%)
+ Fabien Parent 1 (0.0%)
+ Eric Nelson 1 (0.0%)
+ Shawn Guo 1 (0.0%)
+ Matthias Schoepfer 1 (0.0%)
+ Raviteja Narayanam 1 (0.0%)
+ Michael Auchter 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 2438 (7.3%)
+ Peng Ma 971 (2.9%)
+ Tom Warren 727 (2.2%)
+ Stefano Babic 691 (2.1%)
+ Andre Przywara 558 (1.7%)
+ Tom Rini 376 (1.1%)
+ Grygorii Strashko 208 (0.6%)
+ Pedro Jardim 173 (0.5%)
+ Yangbo Lu 113 (0.3%)
+ Alifer Moraes 87 (0.3%)
+ Denis Zalevskiy 51 (0.2%)
+ Clemens Gruber 45 (0.1%)
+ Steffen Dirkwinkel 39 (0.1%)
+ Park, Aiden 35 (0.1%)
+ Hou Zhiqiang 11 (0.0%)
+ Madan Srinivas 10 (0.0%)
+ Thomas Hebb 7 (0.0%)
+ Tomasz Duszynski 6 (0.0%)
+ Chee Hong Ang 4 (0.0%)
+ Ian Ray 3 (0.0%)
+ Christophe Leroy 3 (0.0%)
+ Sébastien Szymanski 2 (0.0%)
+ Max Krummenacher 2 (0.0%)
+ Joakim Tjernlund 1 (0.0%)
+ Rainer Boschung 1 (0.0%)
+ Walter Lozano 1 (0.0%)
+ Matthias Schoepfer 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 307)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 102 (33.2%)
+ Priyanka Jain 35 (11.4%)
+ Michal Simek 20 (6.5%)
+ Bin Meng 11 (3.6%)
+ Robert Beckett 11 (3.6%)
+ Minkyu Kang 8 (2.6%)
+ Heinrich Schuchardt 8 (2.6%)
+ Jagan Teki 8 (2.6%)
+ Matthias Brugger 7 (2.3%)
+ Alexey Brodkin 6 (2.0%)
+ Neil Armstrong 5 (1.6%)
+ Alex Nemirovsky 5 (1.6%)
+ Andre Przywara 4 (1.3%)
+ Ian Ray 4 (1.3%)
+ Stefan Roese 4 (1.3%)
+ Jason Kridner 4 (1.3%)
+ Tom Warren 3 (1.0%)
+ Vladimir Olovyannikov 3 (1.0%)
+ Rasmus Villemoes 3 (1.0%)
+ Marcel Ziswiler 3 (1.0%)
+ Patrick Delaunay 3 (1.0%)
+ Tom Rini 2 (0.7%)
+ Luis Araneda 2 (0.7%)
+ Ryder Lee 2 (0.7%)
+ Ashish Kumar 2 (0.7%)
+ Rajat Srivastava 2 (0.7%)
+ Kever Yang 2 (0.7%)
+ Masahiro Yamada 2 (0.7%)
+ Michael Trimarchi 2 (0.7%)
+ Alex Marginean 2 (0.7%)
+ Faiz Abbas 2 (0.7%)
+ Igor Opaniuk 2 (0.7%)
+ Peng Ma 1 (0.3%)
+ Alifer Moraes 1 (0.3%)
+ Chee Hong Ang 1 (0.3%)
+ Max Krummenacher 1 (0.3%)
+ Thierry Reding 1 (0.3%)
+ Manish Tomar 1 (0.3%)
+ Fabio Berton 1 (0.3%)
+ Florin Chiculita 1 (0.3%)
+ Shengzhou Liu 1 (0.3%)
+ Valentin Longchamp 1 (0.3%)
+ Venkateswara Rao Mandela 1 (0.3%)
+ Quanyang Wang 1 (0.3%)
+ Arnd Bergmann 1 (0.3%)
+ Robin Gong 1 (0.3%)
+ Tien Fong Chee 1 (0.3%)
+ Brad Campbell 1 (0.3%)
+ Stefan Agner 1 (0.3%)
+ Yogesh Gaur 1 (0.3%)
+ Sriram Dash 1 (0.3%)
+ Tero Kristo 1 (0.3%)
+ Andy Shevchenko 1 (0.3%)
+ YouMin Chen 1 (0.3%)
+ Jean-Jacques Hiblot 1 (0.3%)
+ Andreas Dannenberg 1 (0.3%)
+ Caleb Robey 1 (0.3%)
+ Andrew F. Davis 1 (0.3%)
+ Marek Vasut 1 (0.3%)
+ Peng Fan 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 858)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 167 (19.5%)
+ Priyanka Jain 107 (12.5%)
+ Simon Glass 85 (9.9%)
+ Kever Yang 45 (5.2%)
+ Patrice Chotard 36 (4.2%)
+ Oleksandr Suvorov 32 (3.7%)
+ Simon Goldschmidt 31 (3.6%)
+ Jagan Teki 30 (3.5%)
+ Stefan Roese 30 (3.5%)
+ Heiko Schocher 28 (3.3%)
+ Fabio Estevam 25 (2.9%)
+ Patrick Delaunay 22 (2.6%)
+ Lokesh Vutla 19 (2.2%)
+ Heinrich Schuchardt 16 (1.9%)
+ Ryder Lee 15 (1.7%)
+ Tom Rini 14 (1.6%)
+ Peng Fan 13 (1.5%)
+ Lukasz Majewski 13 (1.5%)
+ Grygorii Strashko 11 (1.3%)
+ Jaehoon Chung 11 (1.3%)
+ Anatolij Gustschin 7 (0.8%)
+ Stefano Babic 6 (0.7%)
+ Rick Chen 6 (0.7%)
+ Eric Nelson 5 (0.6%)
+ Daniel Schwierzeck 5 (0.6%)
+ Pragnesh Patel 5 (0.6%)
+ Linus Walleij 5 (0.6%)
+ Mario Six 5 (0.6%)
+ Anand Moon 5 (0.6%)
+ Ley Foon Tan 5 (0.6%)
+ Jun Chen 4 (0.5%)
+ Miquel Raynal 4 (0.5%)
+ Neil Armstrong 3 (0.3%)
+ Marek Vasut 3 (0.3%)
+ Stephen Warren 3 (0.3%)
+ Sam Protsenko 3 (0.3%)
+ Andre Przywara 2 (0.2%)
+ Alexandre Belloni 2 (0.2%)
+ Horatiu Vultur 2 (0.2%)
+ Lukas Auer 2 (0.2%)
+ Joel Stanley 2 (0.2%)
+ Ye Li 2 (0.2%)
+ Sughosh Ganu 2 (0.2%)
+ Masahiro Yamada 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Alex Marginean 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Yangbo Lu 1 (0.1%)
+ Park, Aiden 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Keerthy 1 (0.1%)
+ Mathieu Poirier 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Cédric Le Goater 1 (0.1%)
+ Oliver Graute 1 (0.1%)
+ Frieder Schrempf 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Vladimir Oltean 1 (0.1%)
+ Wolfgang Wallner 1 (0.1%)
+ Heiko Stuebner 1 (0.1%)
+ Kuldeep Singh 1 (0.1%)
+ Vignesh Raghavendra 1 (0.1%)
+ Philippe Reynes 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 63)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 13 (20.6%)
+ Peter Robinson 8 (12.7%)
+ Jagan Teki 5 (7.9%)
+ Fabio Estevam 4 (6.3%)
+ Simon Goldschmidt 3 (4.8%)
+ Corentin Labbe 3 (4.8%)
+ Patrice Chotard 2 (3.2%)
+ Heinrich Schuchardt 2 (3.2%)
+ Guillaume La Roque 2 (3.2%)
+ Frank Wunderlich 2 (3.2%)
+ Patrick Delaunay 1 (1.6%)
+ Lokesh Vutla 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Marek Vasut 1 (1.6%)
+ Andy Shevchenko 1 (1.6%)
+ Park, Aiden 1 (1.6%)
+ Wolfgang Wallner 1 (1.6%)
+ Kuldeep Singh 1 (1.6%)
+ Matthias Brugger 1 (1.6%)
+ Alifer Moraes 1 (1.6%)
+ Andreas Dannenberg 1 (1.6%)
+ Matt Porter 1 (1.6%)
+ Mauro Condarelli 1 (1.6%)
+ Álvaro Fernández Rojas 1 (1.6%)
+ Ferry Toth 1 (1.6%)
+ Ard Biesheuvel 1 (1.6%)
+ Robert Marko 1 (1.6%)
+ Michael Walle 1 (1.6%)
+ Baruch Siach 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 63)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 6 (9.5%)
+ Anatolij Gustschin 4 (6.3%)
+ Andre Przywara 4 (6.3%)
+ Igor Opaniuk 4 (6.3%)
+ Bin Meng 3 (4.8%)
+ Heinrich Schuchardt 3 (4.8%)
+ Marek Vasut 3 (4.8%)
+ Masahiro Yamada 3 (4.8%)
+ Amit Singh Tomar 3 (4.8%)
+ Tom Rini 2 (3.2%)
+ Simon Glass 2 (3.2%)
+ Peng Fan 2 (3.2%)
+ Ye Li 2 (3.2%)
+ Vignesh Raghavendra 2 (3.2%)
+ Sean Anderson 2 (3.2%)
+ Sam Shih 2 (3.2%)
+ Fabio Estevam 1 (1.6%)
+ Patrick Delaunay 1 (1.6%)
+ Andy Shevchenko 1 (1.6%)
+ Wolfgang Wallner 1 (1.6%)
+ Michael Walle 1 (1.6%)
+ Stefan Roese 1 (1.6%)
+ Lukasz Majewski 1 (1.6%)
+ Alex Marginean 1 (1.6%)
+ Keerthy 1 (1.6%)
+ Philippe Reynes 1 (1.6%)
+ Michal Simek 1 (1.6%)
+ Tom Warren 1 (1.6%)
+ Jean-Jacques Hiblot 1 (1.6%)
+ Jan Kiszka 1 (1.6%)
+ Vishruth 1 (1.6%)
+ Luka Kovacic 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Igor Opaniuk 3 (15.0%)
+ Fabio Estevam 3 (15.0%)
+ Tom Rini 1 (5.0%)
+ Simon Glass 1 (5.0%)
+ Patrick Delaunay 1 (5.0%)
+ Andy Shevchenko 1 (5.0%)
+ Michal Simek 1 (5.0%)
+ Andreas Dannenberg 1 (5.0%)
+ Matt Porter 1 (5.0%)
+ Oliver Graute 1 (5.0%)
+ Carl Gelfand 1 (5.0%)
+ Ramin Seyed-Moussavi 1 (5.0%)
+ Praneeth Bajjuri 1 (5.0%)
+ Vagrant Cascadian 1 (5.0%)
+ Vishal Mahaveer 1 (5.0%)
+ Robert P. J. Day 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 20)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Anatolij Gustschin 6 (30.0%)
+ Fabio Estevam 3 (15.0%)
+ Heinrich Schuchardt 2 (10.0%)
+ Michal Simek 1 (5.0%)
+ Bin Meng 1 (5.0%)
+ Ye Li 1 (5.0%)
+ Vignesh Raghavendra 1 (5.0%)
+ Philippe Reynes 1 (5.0%)
+ Lokesh Vutla 1 (5.0%)
+ Rob Herring 1 (5.0%)
+ Shawn Guo 1 (5.0%)
+ Lars Povlsen 1 (5.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 540 (32.9%)
+ Google, Inc. 309 (18.9%)
+ NXP 172 (10.5%)
+ Texas Instruments 124 (7.6%)
+ DENX Software Engineering 113 (6.9%)
+ AMD 45 (2.7%)
+ Intel 45 (2.7%)
+ Socionext Inc. 38 (2.3%)
+ Amarula Solutions 37 (2.3%)
+ ST Microelectronics 36 (2.2%)
+ Konsulko Group 28 (1.7%)
+ Linaro 25 (1.5%)
+ Collabora Ltd. 20 (1.2%)
+ ARM 17 (1.0%)
+ Samsung 16 (1.0%)
+ NVidia 15 (0.9%)
+ Xilinx 15 (0.9%)
+ General Electric 11 (0.7%)
+ Rockchip 8 (0.5%)
+ Toradex 5 (0.3%)
+ O.S. Systems 4 (0.2%)
+ Broadcom 3 (0.2%)
+ Siemens 3 (0.2%)
+ Bootlin 2 (0.1%)
+ Wind River 2 (0.1%)
+ Pepperl+Fuchs 2 (0.1%)
+ BayLibre SAS 1 (0.1%)
+ National Instruments 1 (0.1%)
+ Semihalf Embedded Systems 1 (0.1%)
+ SUSE 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 44534 (36.1%)
+ Google, Inc. 23135 (18.7%)
+ DENX Software Engineering 12671 (10.3%)
+ NXP 11684 (9.5%)
+ Intel 5029 (4.1%)
+ AMD 4952 (4.0%)
+ Texas Instruments 4422 (3.6%)
+ Collabora Ltd. 3817 (3.1%)
+ Amarula Solutions 2346 (1.9%)
+ Konsulko Group 2200 (1.8%)
+ NVidia 2062 (1.7%)
+ ST Microelectronics 1552 (1.3%)
+ ARM 1496 (1.2%)
+ Linaro 1249 (1.0%)
+ Socionext Inc. 613 (0.5%)
+ Xilinx 386 (0.3%)
+ General Electric 282 (0.2%)
+ Broadcom 271 (0.2%)
+ Rockchip 255 (0.2%)
+ Samsung 186 (0.2%)
+ Wind River 137 (0.1%)
+ Toradex 63 (0.1%)
+ Bootlin 59 (0.0%)
+ O.S. Systems 20 (0.0%)
+ Pepperl+Fuchs 18 (0.0%)
+ Semihalf Embedded Systems 11 (0.0%)
+ Siemens 4 (0.0%)
+ SUSE 2 (0.0%)
+ BayLibre SAS 1 (0.0%)
+ National Instruments 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 307)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Texas Instruments 114 (37.1%)
+ NXP 49 (16.0%)
+ (Unknown) 41 (13.4%)
+ Xilinx 20 (6.5%)
+ Collabora Ltd. 11 (3.6%)
+ Amarula Solutions 10 (3.3%)
+ Samsung 8 (2.6%)
+ Toradex 7 (2.3%)
+ SUSE 7 (2.3%)
+ DENX Software Engineering 5 (1.6%)
+ BayLibre SAS 5 (1.6%)
+ NVidia 4 (1.3%)
+ ARM 4 (1.3%)
+ General Electric 4 (1.3%)
+ Intel 3 (1.0%)
+ ST Microelectronics 3 (1.0%)
+ Broadcom 3 (1.0%)
+ Rockchip 3 (1.0%)
+ Konsulko Group 2 (0.7%)
+ Socionext Inc. 2 (0.7%)
+ Wind River 1 (0.3%)
+ O.S. Systems 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 191)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 89 (46.6%)
+ NXP 26 (13.6%)
+ Texas Instruments 13 (6.8%)
+ DENX Software Engineering 8 (4.2%)
+ Intel 5 (2.6%)
+ Linaro 5 (2.6%)
+ Xilinx 4 (2.1%)
+ NVidia 4 (2.1%)
+ ST Microelectronics 4 (2.1%)
+ Amarula Solutions 3 (1.6%)
+ Samsung 3 (1.6%)
+ Collabora Ltd. 2 (1.0%)
+ Toradex 2 (1.0%)
+ ARM 2 (1.0%)
+ General Electric 2 (1.0%)
+ Broadcom 2 (1.0%)
+ Rockchip 2 (1.0%)
+ Wind River 2 (1.0%)
+ Bootlin 2 (1.0%)
+ SUSE 1 (0.5%)
+ BayLibre SAS 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ O.S. Systems 1 (0.5%)
+ Google, Inc. 1 (0.5%)
+ AMD 1 (0.5%)
+ Pepperl+Fuchs 1 (0.5%)
+ Semihalf Embedded Systems 1 (0.5%)
+ Siemens 1 (0.5%)
+ National Instruments 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2020.07.rst b/doc/develop/statistics/u-boot-stats-v2020.07.rst
new file mode 100644
index 0000000..ea99c59
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2020.07.rst
@@ -0,0 +1,939 @@
+:orphan:
+
+Release Statistics for U-Boot v2020.07
+======================================
+
+* Processed 1918 csets from 203 developers
+
+* 32 employers found
+
+* A total of 122895 lines added, 44517 removed (delta 78378)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 190 (9.9%)
+ Marek Vasut 132 (6.9%)
+ Heinrich Schuchardt 127 (6.6%)
+ Patrick Delaunay 124 (6.5%)
+ Jagan Teki 77 (4.0%)
+ Tom Rini 59 (3.1%)
+ Michal Simek 54 (2.8%)
+ Peng Fan 53 (2.8%)
+ Ye Li 43 (2.2%)
+ AKASHI Takahiro 37 (1.9%)
+ Fabio Estevam 35 (1.8%)
+ Madalin Bucur 34 (1.8%)
+ Bin Meng 33 (1.7%)
+ Biwen Li 32 (1.7%)
+ Eugeniy Paltsev 31 (1.6%)
+ Giulio Benetti 30 (1.6%)
+ Masahiro Yamada 28 (1.5%)
+ Neil Armstrong 26 (1.4%)
+ Ioana Ciornei 26 (1.4%)
+ Joel Johnson 22 (1.1%)
+ Rasmus Villemoes 22 (1.1%)
+ Pragnesh Patel 21 (1.1%)
+ Kever Yang 19 (1.0%)
+ Kuldeep Singh 19 (1.0%)
+ Weijie Gao 19 (1.0%)
+ Dario Binacchi 18 (0.9%)
+ Chunfeng Yun 16 (0.8%)
+ Igor Opaniuk 15 (0.8%)
+ Hou Zhiqiang 15 (0.8%)
+ Vignesh Raghavendra 15 (0.8%)
+ Stefan Roese 14 (0.7%)
+ Atish Patra 13 (0.7%)
+ Amit Singh Tomar 13 (0.7%)
+ Marek Behún 13 (0.7%)
+ Michael Walle 12 (0.6%)
+ Heiko Stuebner 12 (0.6%)
+ Ovidiu Panait 12 (0.6%)
+ Keerthy 12 (0.6%)
+ Pali Rohár 11 (0.6%)
+ Harald Seiler 10 (0.5%)
+ Ley Foon Tan 9 (0.5%)
+ Chen-Yu Tsai 9 (0.5%)
+ Anatolij Gustschin 8 (0.4%)
+ Frank Wang 8 (0.4%)
+ Lokesh Vutla 8 (0.4%)
+ Trevor Woerner 8 (0.4%)
+ Tero Kristo 8 (0.4%)
+ Walter Lozano 7 (0.4%)
+ Sean Anderson 7 (0.4%)
+ Marcin Juszkiewicz 7 (0.4%)
+ Andy Shevchenko 7 (0.4%)
+ Han Xu 7 (0.4%)
+ Suman Anna 7 (0.4%)
+ Andre Przywara 7 (0.4%)
+ Philippe Schenker 7 (0.4%)
+ Patrice Chotard 6 (0.3%)
+ Peter Robinson 6 (0.3%)
+ Matthias Brugger 6 (0.3%)
+ Jerome Brunet 6 (0.3%)
+ Jan Kiszka 6 (0.3%)
+ Ilias Apalodimas 6 (0.3%)
+ Michael Krummsdorf 6 (0.3%)
+ Heiko Schocher 5 (0.3%)
+ Patrick Wildt 5 (0.3%)
+ Yannick Fertre 5 (0.3%)
+ Vladimir Oltean 5 (0.3%)
+ Mark Kettenis 5 (0.3%)
+ Samuel Holland 5 (0.3%)
+ Alice Guo 5 (0.3%)
+ Yuantian Tang 5 (0.3%)
+ Lin Jinhan 5 (0.3%)
+ T Karthik Reddy 5 (0.3%)
+ Rayagonda Kokatanur 5 (0.3%)
+ Moses Christopher 5 (0.3%)
+ Adam Ford 4 (0.2%)
+ Lukasz Majewski 4 (0.2%)
+ Bernhard Messerklinger 4 (0.2%)
+ Urja Rannikko 4 (0.2%)
+ Ashok Reddy Soma 4 (0.2%)
+ Claudius Heine 4 (0.2%)
+ Florinel Iordache 4 (0.2%)
+ Jun Chen 4 (0.2%)
+ Suniel Mahesh 3 (0.2%)
+ Haibo Chen 3 (0.2%)
+ Jaehoon Chung 3 (0.2%)
+ Max Krummenacher 3 (0.2%)
+ Etienne Carriere 3 (0.2%)
+ Hayes Wang 3 (0.2%)
+ Christian Gmeiner 3 (0.2%)
+ Laurentiu Tudor 3 (0.2%)
+ Chris Packham 3 (0.2%)
+ Andrew F. Davis 3 (0.2%)
+ Fugang Duan 3 (0.2%)
+ Frank Li 3 (0.2%)
+ Philippe Reynes 3 (0.2%)
+ Qu Wenruo 3 (0.2%)
+ Sam Protsenko 3 (0.2%)
+ Alexander Kochetkov 2 (0.1%)
+ Vagrant Cascadian 2 (0.1%)
+ Otavio Salvador 2 (0.1%)
+ Stefan Agner 2 (0.1%)
+ Tom Warren 2 (0.1%)
+ Jon Hunter 2 (0.1%)
+ Yangbo Lu 2 (0.1%)
+ b.l.huang 2 (0.1%)
+ Frédéric Danis 2 (0.1%)
+ Yoshio Furuyama 2 (0.1%)
+ Robert Marko 2 (0.1%)
+ Jakov Petrina 2 (0.1%)
+ Ezra Buehler 2 (0.1%)
+ Deepak Das 2 (0.1%)
+ Sughosh Ganu 2 (0.1%)
+ Petr Borsodi 2 (0.1%)
+ Christophe Roullier 2 (0.1%)
+ Kyle Evans 2 (0.1%)
+ Beniamino Galvani 2 (0.1%)
+ Sven Roederer 2 (0.1%)
+ Breno Lima 2 (0.1%)
+ Álvaro Fernández Rojas 2 (0.1%)
+ Bharat Kumar Reddy Gooty 2 (0.1%)
+ Sam Shih 2 (0.1%)
+ Nicolas Heemeryck 2 (0.1%)
+ Oliver Graute 1 (0.1%)
+ Martyn Welch 1 (0.1%)
+ Oleksandr Suvorov 1 (0.1%)
+ Marcel Ziswiler 1 (0.1%)
+ Alex Nemirovsky 1 (0.1%)
+ Arthur Li 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Sébastien Szymanski 1 (0.1%)
+ Jaiprakash Singh 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Roman Stratiienko 1 (0.1%)
+ Corentin Labbe 1 (0.1%)
+ Eugen Hristev 1 (0.1%)
+ Raul E Rangel 1 (0.1%)
+ Luka Kovacic 1 (0.1%)
+ Romain Naour 1 (0.1%)
+ Kurt Miller 1 (0.1%)
+ Andrius Štikonas 1 (0.1%)
+ Gary Bisson 1 (0.1%)
+ Andreas Dannenberg 1 (0.1%)
+ Praneeth Bajjuri 1 (0.1%)
+ Pramod Kumar 1 (0.1%)
+ Razvan Ionut Cirjan 1 (0.1%)
+ Pankit Garg 1 (0.1%)
+ Ashish Kumar 1 (0.1%)
+ Tiaki Rice 1 (0.1%)
+ Jan Luebbe 1 (0.1%)
+ Christophe Leroy 1 (0.1%)
+ Jonathan Gray 1 (0.1%)
+ Lionel Debieve 1 (0.1%)
+ Marek Szyprowski 1 (0.1%)
+ Nicolas Saenz Julienne 1 (0.1%)
+ Siva Durga Prasad Paladugu 1 (0.1%)
+ Leonard Crestez 1 (0.1%)
+ Murali Karicheri 1 (0.1%)
+ Thirupathaiah Annapureddy 1 (0.1%)
+ Josef Lusticky 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Sherry Sun 1 (0.1%)
+ Marek Bykowski 1 (0.1%)
+ Alifer Moraes 1 (0.1%)
+ Franck LENORMAND 1 (0.1%)
+ Seb Fagard 1 (0.1%)
+ Tudor Ambarus 1 (0.1%)
+ Bacem Daassi 1 (0.1%)
+ Pratyush Yadav 1 (0.1%)
+ Meenakshi Aggarwal 1 (0.1%)
+ Alison Wang 1 (0.1%)
+ Arnaud Ferraris 1 (0.1%)
+ Mauro Condarelli 1 (0.1%)
+ Patrick van Gelder 1 (0.1%)
+ Saeed Nowshadi 1 (0.1%)
+ Benedikt Grassl 1 (0.1%)
+ Baruch Siach 1 (0.1%)
+ Lihua Zhao 1 (0.1%)
+ Peter Collingbourne 1 (0.1%)
+ Jonathan Corbet 1 (0.1%)
+ Landen Chao 1 (0.1%)
+ Charles Frey 1 (0.1%)
+ Lukas Auer 1 (0.1%)
+ Hiroyuki Yokoyama 1 (0.1%)
+ Yinbo Zhu 1 (0.1%)
+ Markus Niebel 1 (0.1%)
+ Thomas Hebb 1 (0.1%)
+ Yusuke Ashiduka 1 (0.1%)
+ Francois Gervais 1 (0.1%)
+ Karl Palsson 1 (0.1%)
+ Josua Mayer 1 (0.1%)
+ Josip Kelecic 1 (0.1%)
+ Varalaxmi Bingi 1 (0.1%)
+ Amit Kumar Mahapatra 1 (0.1%)
+ Manish Narani 1 (0.1%)
+ Nava kishore Manne 1 (0.1%)
+ Sudeep Holla 1 (0.1%)
+ Quanyang Wang 1 (0.1%)
+ Alain Volmat 1 (0.1%)
+ Ludovic Barre 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Michael Auchter 1 (0.1%)
+ Eugeniu Rosca 1 (0.1%)
+ Yegor Yefremov 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marek Vasut 15726 (11.5%)
+ Simon Glass 13123 (9.6%)
+ Patrick Delaunay 11073 (8.1%)
+ Jagan Teki 8289 (6.1%)
+ Tom Rini 6578 (4.8%)
+ AKASHI Takahiro 5076 (3.7%)
+ Madalin Bucur 4333 (3.2%)
+ Michal Simek 3939 (2.9%)
+ Adam Ford 3602 (2.6%)
+ Bernhard Messerklinger 3306 (2.4%)
+ Pragnesh Patel 3121 (2.3%)
+ Neil Armstrong 2955 (2.2%)
+ Masahiro Yamada 2858 (2.1%)
+ Jerome Brunet 2857 (2.1%)
+ Heinrich Schuchardt 2791 (2.0%)
+ Alifer Moraes 2771 (2.0%)
+ Ioana Ciornei 2600 (1.9%)
+ Peng Fan 2524 (1.9%)
+ Giulio Benetti 2044 (1.5%)
+ Weijie Gao 2014 (1.5%)
+ Chen-Yu Tsai 1856 (1.4%)
+ Kuldeep Singh 1439 (1.1%)
+ Peter Robinson 1377 (1.0%)
+ Amit Singh Tomar 1349 (1.0%)
+ Biwen Li 1310 (1.0%)
+ Chunfeng Yun 1271 (0.9%)
+ Rayagonda Kokatanur 1185 (0.9%)
+ Eugeniy Paltsev 1092 (0.8%)
+ Han Xu 1050 (0.8%)
+ Franck LENORMAND 1030 (0.8%)
+ Dario Binacchi 1027 (0.8%)
+ Michael Krummsdorf 1024 (0.8%)
+ Ashok Reddy Soma 1008 (0.7%)
+ Ilias Apalodimas 847 (0.6%)
+ Ye Li 839 (0.6%)
+ Marek Behún 710 (0.5%)
+ Vignesh Raghavendra 616 (0.5%)
+ Landen Chao 577 (0.4%)
+ Bin Meng 541 (0.4%)
+ Heiko Stuebner 520 (0.4%)
+ Keerthy 519 (0.4%)
+ Heiko Schocher 472 (0.3%)
+ Michael Walle 453 (0.3%)
+ Pali Rohár 453 (0.3%)
+ Hou Zhiqiang 445 (0.3%)
+ Fabio Estevam 420 (0.3%)
+ b.l.huang 414 (0.3%)
+ Breno Lima 404 (0.3%)
+ Kever Yang 386 (0.3%)
+ Atish Patra 378 (0.3%)
+ Joel Johnson 357 (0.3%)
+ Frank Wang 357 (0.3%)
+ Alice Guo 338 (0.2%)
+ Ley Foon Tan 313 (0.2%)
+ Hayes Wang 279 (0.2%)
+ Mauro Condarelli 279 (0.2%)
+ Sean Anderson 269 (0.2%)
+ Tero Kristo 268 (0.2%)
+ Stefan Roese 262 (0.2%)
+ Beniamino Galvani 259 (0.2%)
+ Lin Jinhan 257 (0.2%)
+ Sam Shih 248 (0.2%)
+ Walter Lozano 242 (0.2%)
+ Philippe Schenker 237 (0.2%)
+ Fugang Duan 234 (0.2%)
+ Yuantian Tang 227 (0.2%)
+ Sughosh Ganu 225 (0.2%)
+ Lokesh Vutla 208 (0.2%)
+ Rob Herring 206 (0.2%)
+ Robert Marko 204 (0.1%)
+ Luka Kovacic 165 (0.1%)
+ Harald Seiler 164 (0.1%)
+ Igor Opaniuk 161 (0.1%)
+ Rasmus Villemoes 158 (0.1%)
+ Trevor Woerner 151 (0.1%)
+ Deepak Das 148 (0.1%)
+ Andre Przywara 142 (0.1%)
+ Ovidiu Panait 133 (0.1%)
+ Suman Anna 133 (0.1%)
+ Yoshio Furuyama 130 (0.1%)
+ Petr Borsodi 128 (0.1%)
+ Jaiprakash Singh 111 (0.1%)
+ Laurentiu Tudor 102 (0.1%)
+ Suniel Mahesh 100 (0.1%)
+ Frédéric Danis 87 (0.1%)
+ Moses Christopher 84 (0.1%)
+ Florinel Iordache 81 (0.1%)
+ Philippe Reynes 81 (0.1%)
+ Martyn Welch 72 (0.1%)
+ Vladimir Oltean 71 (0.1%)
+ Michael Auchter 69 (0.1%)
+ Andy Shevchenko 68 (0.0%)
+ Chris Packham 67 (0.0%)
+ Alain Volmat 59 (0.0%)
+ Yangbo Lu 58 (0.0%)
+ Christophe Roullier 55 (0.0%)
+ Andrew F. Davis 53 (0.0%)
+ Yusuke Ashiduka 53 (0.0%)
+ Marek Bykowski 52 (0.0%)
+ Jan Kiszka 50 (0.0%)
+ Yannick Fertre 48 (0.0%)
+ Andreas Dannenberg 47 (0.0%)
+ Claudius Heine 45 (0.0%)
+ Yinbo Zhu 45 (0.0%)
+ Anatolij Gustschin 42 (0.0%)
+ Etienne Carriere 42 (0.0%)
+ Thirupathaiah Annapureddy 41 (0.0%)
+ Lukas Auer 40 (0.0%)
+ Qu Wenruo 39 (0.0%)
+ Mark Kettenis 38 (0.0%)
+ T Karthik Reddy 38 (0.0%)
+ Christian Gmeiner 36 (0.0%)
+ Samuel Holland 31 (0.0%)
+ Matthias Brugger 30 (0.0%)
+ Marcin Juszkiewicz 29 (0.0%)
+ Manish Narani 29 (0.0%)
+ Patrick Wildt 28 (0.0%)
+ Kurt Miller 27 (0.0%)
+ Patrice Chotard 26 (0.0%)
+ Jun Chen 25 (0.0%)
+ Daniel Schwierzeck 23 (0.0%)
+ Haibo Chen 22 (0.0%)
+ Álvaro Fernández Rojas 22 (0.0%)
+ Arthur Li 22 (0.0%)
+ Peter Collingbourne 22 (0.0%)
+ Ludovic Barre 22 (0.0%)
+ Max Krummenacher 21 (0.0%)
+ Alexander Kochetkov 21 (0.0%)
+ Nicolas Heemeryck 21 (0.0%)
+ Jan Luebbe 21 (0.0%)
+ Urja Rannikko 19 (0.0%)
+ Raul E Rangel 17 (0.0%)
+ Pratyush Yadav 17 (0.0%)
+ Lukasz Majewski 15 (0.0%)
+ Ashish Kumar 15 (0.0%)
+ Jakov Petrina 14 (0.0%)
+ Kyle Evans 14 (0.0%)
+ Praneeth Bajjuri 14 (0.0%)
+ Razvan Ionut Cirjan 14 (0.0%)
+ Lihua Zhao 14 (0.0%)
+ Jon Hunter 13 (0.0%)
+ Meenakshi Aggarwal 13 (0.0%)
+ Otavio Salvador 12 (0.0%)
+ Ezra Buehler 12 (0.0%)
+ Andrius Štikonas 12 (0.0%)
+ Benedikt Grassl 12 (0.0%)
+ Frank Li 11 (0.0%)
+ Oliver Graute 11 (0.0%)
+ Joakim Tjernlund 11 (0.0%)
+ Nava kishore Manne 11 (0.0%)
+ Jaehoon Chung 10 (0.0%)
+ Leonard Crestez 10 (0.0%)
+ Josip Kelecic 10 (0.0%)
+ Pramod Kumar 9 (0.0%)
+ Charles Frey 9 (0.0%)
+ Sam Protsenko 8 (0.0%)
+ Pankit Garg 8 (0.0%)
+ Tiaki Rice 8 (0.0%)
+ Eugen Hristev 7 (0.0%)
+ Josua Mayer 7 (0.0%)
+ Bharat Kumar Reddy Gooty 6 (0.0%)
+ Stefano Babic 6 (0.0%)
+ Sébastien Szymanski 6 (0.0%)
+ Josef Lusticky 6 (0.0%)
+ Quanyang Wang 6 (0.0%)
+ Sven Roederer 5 (0.0%)
+ Hiroyuki Yokoyama 5 (0.0%)
+ Stefan Agner 4 (0.0%)
+ Oleksandr Suvorov 4 (0.0%)
+ Roman Stratiienko 4 (0.0%)
+ Lionel Debieve 4 (0.0%)
+ Nicolas Saenz Julienne 4 (0.0%)
+ Murali Karicheri 4 (0.0%)
+ Seb Fagard 4 (0.0%)
+ Alison Wang 4 (0.0%)
+ Markus Niebel 4 (0.0%)
+ Vagrant Cascadian 3 (0.0%)
+ Alex Nemirovsky 3 (0.0%)
+ Gary Bisson 3 (0.0%)
+ Tudor Ambarus 3 (0.0%)
+ Arnaud Ferraris 3 (0.0%)
+ Saeed Nowshadi 3 (0.0%)
+ Tom Warren 2 (0.0%)
+ Corentin Labbe 2 (0.0%)
+ Sherry Sun 2 (0.0%)
+ Francois Gervais 2 (0.0%)
+ Karl Palsson 2 (0.0%)
+ Varalaxmi Bingi 2 (0.0%)
+ Amit Kumar Mahapatra 2 (0.0%)
+ Eugeniu Rosca 2 (0.0%)
+ Yegor Yefremov 2 (0.0%)
+ Marcel Ziswiler 1 (0.0%)
+ Romain Naour 1 (0.0%)
+ Christophe Leroy 1 (0.0%)
+ Jonathan Gray 1 (0.0%)
+ Marek Szyprowski 1 (0.0%)
+ Siva Durga Prasad Paladugu 1 (0.0%)
+ Bacem Daassi 1 (0.0%)
+ Patrick van Gelder 1 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Jonathan Corbet 1 (0.0%)
+ Thomas Hebb 1 (0.0%)
+ Sudeep Holla 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Masahiro Yamada 1021 (2.3%)
+ Kuldeep Singh 682 (1.5%)
+ Ashok Reddy Soma 179 (0.4%)
+ Frank Wang 94 (0.2%)
+ Kever Yang 89 (0.2%)
+ Heiko Schocher 85 (0.2%)
+ Igor Opaniuk 79 (0.2%)
+ Martyn Welch 69 (0.2%)
+ Walter Lozano 54 (0.1%)
+ Claudius Heine 42 (0.1%)
+ Lukas Auer 40 (0.1%)
+ Fabio Estevam 29 (0.1%)
+ Lokesh Vutla 28 (0.1%)
+ Max Krummenacher 15 (0.0%)
+ Arthur Li 10 (0.0%)
+ Rasmus Villemoes 9 (0.0%)
+ Jakov Petrina 6 (0.0%)
+ Michael Auchter 5 (0.0%)
+ Benedikt Grassl 5 (0.0%)
+ Sébastien Szymanski 5 (0.0%)
+ Trevor Woerner 3 (0.0%)
+ Yannick Fertre 3 (0.0%)
+ Alex Nemirovsky 2 (0.0%)
+ Karl Palsson 2 (0.0%)
+ Leonard Crestez 1 (0.0%)
+ Seb Fagard 1 (0.0%)
+ Romain Naour 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 285)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Peng Fan 59 (20.7%)
+ Alexey Brodkin 30 (10.5%)
+ Michal Simek 16 (5.6%)
+ Priyanka Jain 15 (5.3%)
+ Frank Wunderlich 14 (4.9%)
+ Neil Armstrong 11 (3.9%)
+ Patrick Delaunay 11 (3.9%)
+ Matthias Brugger 10 (3.5%)
+ Tom Rini 8 (2.8%)
+ Ye Li 7 (2.5%)
+ Bin Meng 6 (2.1%)
+ Fabio Estevam 5 (1.8%)
+ Simon Glass 5 (1.8%)
+ Lokesh Vutla 4 (1.4%)
+ Ashish Kumar 4 (1.4%)
+ Frieder Schrempf 4 (1.4%)
+ Vabhav Sharma 4 (1.4%)
+ Bharat Kumar Reddy Gooty 4 (1.4%)
+ Jagan Teki 4 (1.4%)
+ Miquel Raynal 3 (1.1%)
+ Harald Seiler 3 (1.1%)
+ Frank Wang 2 (0.7%)
+ Wolfgang Wallner 2 (0.7%)
+ Vladimir Vid 2 (0.7%)
+ Vladimir Olovyannikov 2 (0.7%)
+ Vladimir Oltean 2 (0.7%)
+ Andreas Dannenberg 2 (0.7%)
+ Suniel Mahesh 2 (0.7%)
+ Robert Marko 2 (0.7%)
+ Vignesh Raghavendra 2 (0.7%)
+ Han Xu 2 (0.7%)
+ Rayagonda Kokatanur 2 (0.7%)
+ Masahiro Yamada 1 (0.4%)
+ Kuldeep Singh 1 (0.4%)
+ Ashok Reddy Soma 1 (0.4%)
+ Kever Yang 1 (0.4%)
+ Michael Auchter 1 (0.4%)
+ Alex Nemirovsky 1 (0.4%)
+ Christophe Leroy 1 (0.4%)
+ Michael Trimarchi 1 (0.4%)
+ Adrian Alonso 1 (0.4%)
+ Russell King 1 (0.4%)
+ Shawn Guo 1 (0.4%)
+ Oleksij Rempel 1 (0.4%)
+ David S. Miller 1 (0.4%)
+ Holger Brunck 1 (0.4%)
+ Faiz Abbas 1 (0.4%)
+ Pipat Methavanitpong 1 (0.4%)
+ Bastian Krause 1 (0.4%)
+ Catia Han 1 (0.4%)
+ Florin Laurentiu Chiculita 1 (0.4%)
+ Shengzhou Liu 1 (0.4%)
+ Xiaowei Bao 1 (0.4%)
+ Arjun Jyothi 1 (0.4%)
+ Sheetal Tigadoli 1 (0.4%)
+ Filip Brozovic 1 (0.4%)
+ Shiril Tichkule 1 (0.4%)
+ Anatolij Gustschin 1 (0.4%)
+ Patrick Wildt 1 (0.4%)
+ Yangbo Lu 1 (0.4%)
+ Christophe Roullier 1 (0.4%)
+ Stefan Roese 1 (0.4%)
+ Sean Anderson 1 (0.4%)
+ Sughosh Ganu 1 (0.4%)
+ Michael Walle 1 (0.4%)
+ Michael Krummsdorf 1 (0.4%)
+ Ilias Apalodimas 1 (0.4%)
+ Marek Vasut 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1117)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 158 (14.1%)
+ Priyanka Jain 130 (11.6%)
+ Bin Meng 102 (9.1%)
+ Kever Yang 91 (8.1%)
+ Stefan Roese 66 (5.9%)
+ Patrice Chotard 56 (5.0%)
+ Tom Rini 49 (4.4%)
+ Jagan Teki 42 (3.8%)
+ Patrick Delaunay 41 (3.7%)
+ Fabio Estevam 33 (3.0%)
+ Heinrich Schuchardt 28 (2.5%)
+ Peng Fan 26 (2.3%)
+ Wolfgang Wallner 21 (1.9%)
+ Anatolij Gustschin 18 (1.6%)
+ Daniel Schwierzeck 17 (1.5%)
+ Weijie Gao 17 (1.5%)
+ Heiko Schocher 12 (1.1%)
+ Jaehoon Chung 11 (1.0%)
+ Atish Patra 11 (1.0%)
+ Philipp Tomsich 10 (0.9%)
+ Manivannan Sadhasivam 10 (0.9%)
+ Masahiro Yamada 9 (0.8%)
+ Oleksandr Suvorov 9 (0.8%)
+ Lukasz Majewski 9 (0.8%)
+ Wasim Khan 8 (0.7%)
+ Punit Agrawal 8 (0.7%)
+ Andre Przywara 8 (0.7%)
+ Marek Vasut 7 (0.6%)
+ Rick Chen 7 (0.6%)
+ Ye Li 6 (0.5%)
+ Razvan Ionut Cirjan 6 (0.5%)
+ Andy Shevchenko 6 (0.5%)
+ Pragnesh Patel 6 (0.5%)
+ Lokesh Vutla 5 (0.4%)
+ Linus Walleij 5 (0.4%)
+ Neil Armstrong 4 (0.4%)
+ Frieder Schrempf 3 (0.3%)
+ Sagar Kadam 3 (0.3%)
+ Minkyu Kang 3 (0.3%)
+ Simon Goldschmidt 3 (0.3%)
+ Marek Behún 3 (0.3%)
+ Vladimir Oltean 2 (0.2%)
+ Michael Walle 2 (0.2%)
+ Enric Balletbo i Serra 2 (0.2%)
+ Luca Ceresoli 2 (0.2%)
+ Anup Patel 2 (0.2%)
+ Ramon Fried 2 (0.2%)
+ Stefano Babic 2 (0.2%)
+ Chris Packham 2 (0.2%)
+ Fugang Duan 2 (0.2%)
+ Michal Simek 1 (0.1%)
+ Vignesh Raghavendra 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Russell King 1 (0.1%)
+ Sughosh Ganu 1 (0.1%)
+ Igor Opaniuk 1 (0.1%)
+ Philippe Cornu 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Furquan Shaikh 1 (0.1%)
+ Palmer Dabbelt 1 (0.1%)
+ Diana Craciun 1 (0.1%)
+ George McCollister 1 (0.1%)
+ Florian Fainelli 1 (0.1%)
+ Anson Huang 1 (0.1%)
+ Bai Ping 1 (0.1%)
+ Grygorii Strashko 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Ryan Harkin 1 (0.1%)
+ Vikas MANOCHA 1 (0.1%)
+ Anand Moon 1 (0.1%)
+ Magnus Lilja 1 (0.1%)
+ Felix Brack 1 (0.1%)
+ Eugeniu Rosca 1 (0.1%)
+ Eugen Hristev 1 (0.1%)
+ T Karthik Reddy 1 (0.1%)
+ Luka Kovacic 1 (0.1%)
+ Ley Foon Tan 1 (0.1%)
+ Amit Singh Tomar 1 (0.1%)
+ Ioana Ciornei 1 (0.1%)
+ Adam Ford 1 (0.1%)
+ AKASHI Takahiro 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 132)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 33 (25.0%)
+ Jagan Teki 18 (13.6%)
+ Suniel Mahesh 9 (6.8%)
+ Heiko Schocher 6 (4.5%)
+ Sagar Kadam 6 (4.5%)
+ Tom Rini 5 (3.8%)
+ Peter Robinson 5 (3.8%)
+ Loic Devulder 4 (3.0%)
+ Peter Geis 4 (3.0%)
+ Simon Glass 3 (2.3%)
+ Heinrich Schuchardt 3 (2.3%)
+ Igor Opaniuk 3 (2.3%)
+ Adam Ford 3 (2.3%)
+ Vladimir Oltean 2 (1.5%)
+ Luka Kovacic 2 (1.5%)
+ Vagrant Cascadian 2 (1.5%)
+ Dario Binacchi 2 (1.5%)
+ Stefan Roese 1 (0.8%)
+ Patrice Chotard 1 (0.8%)
+ Patrick Delaunay 1 (0.8%)
+ Wolfgang Wallner 1 (0.8%)
+ Marek Vasut 1 (0.8%)
+ Michal Simek 1 (0.8%)
+ Russell King 1 (0.8%)
+ Anand Moon 1 (0.8%)
+ Ley Foon Tan 1 (0.8%)
+ Frank Wunderlich 1 (0.8%)
+ Walter Lozano 1 (0.8%)
+ Sébastien Szymanski 1 (0.8%)
+ Soeren Moch 1 (0.8%)
+ Troy Kisky 1 (0.8%)
+ Marco Franchi 1 (0.8%)
+ Derek Atkins 1 (0.8%)
+ Jorge Ramirez-Ortiz 1 (0.8%)
+ Marcin Juszkiewicz 1 (0.8%)
+ Mark Kettenis 1 (0.8%)
+ Jan Kiszka 1 (0.8%)
+ Pali Rohár 1 (0.8%)
+ Jerome Brunet 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 132)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Pragnesh Patel 25 (18.9%)
+ Jagan Teki 15 (11.4%)
+ Fabio Estevam 15 (11.4%)
+ Simon Glass 13 (9.8%)
+ Chen-Yu Tsai 8 (6.1%)
+ Atish Patra 6 (4.5%)
+ Andy Shevchenko 4 (3.0%)
+ Ye Li 3 (2.3%)
+ Frank Wang 3 (2.3%)
+ Bernhard Messerklinger 3 (2.3%)
+ Peter Robinson 2 (1.5%)
+ Dario Binacchi 2 (1.5%)
+ Patrick Delaunay 2 (1.5%)
+ Michal Simek 2 (1.5%)
+ Mark Kettenis 2 (1.5%)
+ Robert Marko 2 (1.5%)
+ Jon Hunter 2 (1.5%)
+ Philippe Schenker 2 (1.5%)
+ Lin Jinhan 2 (1.5%)
+ Hou Zhiqiang 2 (1.5%)
+ Bin Meng 1 (0.8%)
+ Heiko Schocher 1 (0.8%)
+ Tom Rini 1 (0.8%)
+ Heinrich Schuchardt 1 (0.8%)
+ Patrice Chotard 1 (0.8%)
+ Jan Kiszka 1 (0.8%)
+ Jerome Brunet 1 (0.8%)
+ Anatolij Gustschin 1 (0.8%)
+ Masahiro Yamada 1 (0.8%)
+ Neil Armstrong 1 (0.8%)
+ Eugeniu Rosca 1 (0.8%)
+ Kuldeep Singh 1 (0.8%)
+ Patrick Wildt 1 (0.8%)
+ Martyn Welch 1 (0.8%)
+ Andrius Štikonas 1 (0.8%)
+ Landen Chao 1 (0.8%)
+ Alifer Moraes 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 38)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 4 (10.5%)
+ Tom Rini 4 (10.5%)
+ Ard Biesheuvel 3 (7.9%)
+ Fabio Estevam 2 (5.3%)
+ Heinrich Schuchardt 2 (5.3%)
+ Jerome Brunet 2 (5.3%)
+ Suniel Mahesh 2 (5.3%)
+ Grygorii Strashko 2 (5.3%)
+ Dario 2 (5.3%)
+ Simon Glass 1 (2.6%)
+ Michal Simek 1 (2.6%)
+ Heiko Schocher 1 (2.6%)
+ Adam Ford 1 (2.6%)
+ Russell King 1 (2.6%)
+ Soeren Moch 1 (2.6%)
+ Derek Atkins 1 (2.6%)
+ Jorge Ramirez-Ortiz 1 (2.6%)
+ Rick Chen 1 (2.6%)
+ Michael Walle 1 (2.6%)
+ Stefano Babic 1 (2.6%)
+ Nicolas Carrier 1 (2.6%)
+ Alex Kiernan 1 (2.6%)
+ Chee Hong Ang 1 (2.6%)
+ Sicris Rey Embay 1 (2.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 38)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Fabio Estevam 7 (18.4%)
+ Heinrich Schuchardt 6 (15.8%)
+ Tom Rini 4 (10.5%)
+ Andy Shevchenko 4 (10.5%)
+ Simon Glass 3 (7.9%)
+ Jagan Teki 2 (5.3%)
+ Neil Armstrong 2 (5.3%)
+ Lokesh Vutla 2 (5.3%)
+ Bin Meng 1 (2.6%)
+ Masahiro Yamada 1 (2.6%)
+ Eugeniu Rosca 1 (2.6%)
+ Ley Foon Tan 1 (2.6%)
+ Peng Fan 1 (2.6%)
+ AKASHI Takahiro 1 (2.6%)
+ Romain Naour 1 (2.6%)
+ Andrew F. Davis 1 (2.6%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 630 (32.8%)
+ NXP 276 (14.4%)
+ Google, Inc. 191 (10.0%)
+ DENX Software Engineering 178 (9.3%)
+ ST Microelectronics 140 (7.3%)
+ Amarula Solutions 80 (4.2%)
+ Konsulko Group 59 (3.1%)
+ Texas Instruments 57 (3.0%)
+ AMD 54 (2.8%)
+ Linaro 48 (2.5%)
+ BayLibre SAS 33 (1.7%)
+ Rockchip 32 (1.7%)
+ Socionext Inc. 28 (1.5%)
+ Intel 16 (0.8%)
+ Xilinx 15 (0.8%)
+ Toradex 14 (0.7%)
+ Collabora Ltd. 11 (0.6%)
+ SUSE 9 (0.5%)
+ ARM 8 (0.4%)
+ Wind River 8 (0.4%)
+ Broadcom 7 (0.4%)
+ Siemens 6 (0.3%)
+ NVidia 4 (0.2%)
+ Samsung 4 (0.2%)
+ Debian.org 2 (0.1%)
+ O.S. Systems 2 (0.1%)
+ Boundary Devices 1 (0.1%)
+ Fujitsu 1 (0.1%)
+ LWN.net 1 (0.1%)
+ National Instruments 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Renesas Electronics 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 37254 (27.3%)
+ NXP 17353 (12.7%)
+ DENX Software Engineering 16732 (12.3%)
+ Google, Inc. 13145 (9.6%)
+ ST Microelectronics 11287 (8.3%)
+ Amarula Solutions 8389 (6.2%)
+ Konsulko Group 6578 (4.8%)
+ Linaro 6190 (4.5%)
+ BayLibre SAS 5814 (4.3%)
+ AMD 3939 (2.9%)
+ Socionext Inc. 2858 (2.1%)
+ Texas Instruments 1879 (1.4%)
+ Broadcom 1191 (0.9%)
+ Xilinx 1094 (0.8%)
+ Rockchip 1000 (0.7%)
+ Collabora Ltd. 404 (0.3%)
+ Intel 381 (0.3%)
+ Toradex 267 (0.2%)
+ ARM 143 (0.1%)
+ SUSE 69 (0.1%)
+ National Instruments 69 (0.1%)
+ Wind River 61 (0.0%)
+ Fujitsu 53 (0.0%)
+ Siemens 50 (0.0%)
+ Pengutronix 21 (0.0%)
+ NVidia 15 (0.0%)
+ O.S. Systems 12 (0.0%)
+ Samsung 11 (0.0%)
+ Renesas Electronics 5 (0.0%)
+ Debian.org 3 (0.0%)
+ Boundary Devices 3 (0.0%)
+ LWN.net 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 285)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NXP 100 (35.1%)
+ (Unknown) 79 (27.7%)
+ Xilinx 17 (6.0%)
+ ST Microelectronics 12 (4.2%)
+ BayLibre SAS 11 (3.9%)
+ Broadcom 10 (3.5%)
+ SUSE 10 (3.5%)
+ Texas Instruments 9 (3.2%)
+ Konsulko Group 8 (2.8%)
+ Amarula Solutions 7 (2.5%)
+ DENX Software Engineering 5 (1.8%)
+ Google, Inc. 5 (1.8%)
+ Rockchip 3 (1.1%)
+ Bootlin 3 (1.1%)
+ Linaro 2 (0.7%)
+ Pengutronix 2 (0.7%)
+ National Instruments 1 (0.4%)
+ Wind River 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 204)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 91 (44.6%)
+ NXP 30 (14.7%)
+ Texas Instruments 10 (4.9%)
+ Xilinx 8 (3.9%)
+ DENX Software Engineering 8 (3.9%)
+ ST Microelectronics 7 (3.4%)
+ Toradex 5 (2.5%)
+ Linaro 4 (2.0%)
+ Collabora Ltd. 4 (2.0%)
+ BayLibre SAS 3 (1.5%)
+ Rockchip 3 (1.5%)
+ Wind River 3 (1.5%)
+ Broadcom 2 (1.0%)
+ SUSE 2 (1.0%)
+ Amarula Solutions 2 (1.0%)
+ Google, Inc. 2 (1.0%)
+ Intel 2 (1.0%)
+ ARM 2 (1.0%)
+ NVidia 2 (1.0%)
+ Samsung 2 (1.0%)
+ Konsulko Group 1 (0.5%)
+ Pengutronix 1 (0.5%)
+ National Instruments 1 (0.5%)
+ AMD 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ Fujitsu 1 (0.5%)
+ Siemens 1 (0.5%)
+ O.S. Systems 1 (0.5%)
+ Renesas Electronics 1 (0.5%)
+ Debian.org 1 (0.5%)
+ Boundary Devices 1 (0.5%)
+ LWN.net 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2020.10.rst b/doc/develop/statistics/u-boot-stats-v2020.10.rst
new file mode 100644
index 0000000..0c0ccbe
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2020.10.rst
@@ -0,0 +1,977 @@
+:orphan:
+
+Release Statistics for U-Boot v2020.10
+======================================
+
+* Processed 2048 csets from 227 developers
+
+* 31 employers found
+
+* A total of 166886 lines added, 60806 removed (delta 106080)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 352 (17.2%)
+ Heinrich Schuchardt 153 (7.5%)
+ Marek Vasut 112 (5.5%)
+ Patrick Delaunay 103 (5.0%)
+ Tom Rini 80 (3.9%)
+ Jagan Teki 74 (3.6%)
+ Michal Simek 48 (2.3%)
+ Masahiro Yamada 39 (1.9%)
+ AKASHI Takahiro 36 (1.8%)
+ Stefan Roese 34 (1.7%)
+ Peng Fan 34 (1.7%)
+ Bin Meng 27 (1.3%)
+ Michael Walle 25 (1.2%)
+ Rayagonda Kokatanur 25 (1.2%)
+ Walter Lozano 24 (1.2%)
+ Igor Opaniuk 23 (1.1%)
+ Suneel Garapati 22 (1.1%)
+ Ovidiu Panait 22 (1.1%)
+ Sean Anderson 20 (1.0%)
+ Vignesh Raghavendra 20 (1.0%)
+ Rasmus Villemoes 19 (0.9%)
+ Andy Shevchenko 19 (0.9%)
+ Dave Gerlach 19 (0.9%)
+ Lokesh Vutla 18 (0.9%)
+ Adam Ford 17 (0.8%)
+ Anatolij Gustschin 17 (0.8%)
+ Pali Rohár 16 (0.8%)
+ Frank Wunderlich 16 (0.8%)
+ Faiz Abbas 16 (0.8%)
+ Daniel Schwierzeck 14 (0.7%)
+ Joao Marcos Costa 14 (0.7%)
+ Ye Li 14 (0.7%)
+ Stefan Bosch 14 (0.7%)
+ Heiko Stuebner 13 (0.6%)
+ Anastasiia Lukianenko 12 (0.6%)
+ Dario Binacchi 12 (0.6%)
+ Kever Yang 11 (0.5%)
+ Christophe Kerello 11 (0.5%)
+ Philippe Reynes 11 (0.5%)
+ Pragnesh Patel 9 (0.4%)
+ Marek Szyprowski 9 (0.4%)
+ Sagar Shrikant Kadam 9 (0.4%)
+ Niel Fourie 9 (0.4%)
+ Xiaowei Bao 9 (0.4%)
+ Amit Singh Tomar 9 (0.4%)
+ Marcel Ziswiler 9 (0.4%)
+ T Karthik Reddy 8 (0.4%)
+ Lukasz Majewski 8 (0.4%)
+ Ibai Erkiaga 8 (0.4%)
+ Oleksandr Andrushchenko 8 (0.4%)
+ Tero Kristo 8 (0.4%)
+ Fabio Estevam 7 (0.3%)
+ John Robertson 7 (0.3%)
+ Wolfgang Wallner 7 (0.3%)
+ Andre Przywara 7 (0.3%)
+ Dan Murphy 7 (0.3%)
+ Patrice Chotard 6 (0.3%)
+ Kuldeep Singh 6 (0.3%)
+ Chuanjia Liu 6 (0.3%)
+ Chia-Wei, Wang 6 (0.3%)
+ Patrick Oppenlander 6 (0.3%)
+ Ilias Apalodimas 6 (0.3%)
+ Zhao Qiang 6 (0.3%)
+ Biwen Li 6 (0.3%)
+ Johannes Krottmayer 6 (0.3%)
+ Shivamurthy Shastri 6 (0.3%)
+ Nicolas Saenz Julienne 6 (0.3%)
+ Denis 'GNUtoo' Carikli 6 (0.3%)
+ Baruch Siach 5 (0.2%)
+ Chris Packham 5 (0.2%)
+ Ashok Reddy Soma 5 (0.2%)
+ Luka Kovacic 5 (0.2%)
+ David Woodhouse 5 (0.2%)
+ Ard Biesheuvel 5 (0.2%)
+ Sylwester Nawrocki 5 (0.2%)
+ Simon Guinot 5 (0.2%)
+ Andre Heider 4 (0.2%)
+ Heiko Schocher 4 (0.2%)
+ Peter Robinson 4 (0.2%)
+ Hou Zhiqiang 4 (0.2%)
+ Hayes Wang 4 (0.2%)
+ Wig Cheng 4 (0.2%)
+ Andrew F. Davis 4 (0.2%)
+ Suman Anna 4 (0.2%)
+ Jan Kiszka 4 (0.2%)
+ Robert Marko 4 (0.2%)
+ Yangbo Lu 4 (0.2%)
+ Nicolas Boichat 4 (0.2%)
+ Suniel Mahesh 4 (0.2%)
+ Soeren Moch 3 (0.1%)
+ Neil Armstrong 3 (0.1%)
+ Wasim Khan 3 (0.1%)
+ Chaitanya Sakinam 3 (0.1%)
+ hui.song 3 (0.1%)
+ Anand Moon 3 (0.1%)
+ Jason Wessel 3 (0.1%)
+ Sherry Sun 3 (0.1%)
+ Roman Kovalivskyi 3 (0.1%)
+ Stephen Warren 3 (0.1%)
+ Bharat Gooty 3 (0.1%)
+ Jian Li 3 (0.1%)
+ Mike Looijmans 3 (0.1%)
+ Lad Prabhakar 2 (0.1%)
+ Madalin Bucur 2 (0.1%)
+ Meenakshi Aggarwal 2 (0.1%)
+ Martin Kaistra 2 (0.1%)
+ Vladimir Vid 2 (0.1%)
+ Maxim Uvarov 2 (0.1%)
+ Philippe Schenker 2 (0.1%)
+ Konstantin Porotchkin 2 (0.1%)
+ Reuben Dowle 2 (0.1%)
+ Ley Foon Tan 2 (0.1%)
+ John Chau 2 (0.1%)
+ Usama Arif 2 (0.1%)
+ Andrii Anisov 2 (0.1%)
+ Jway Lin 2 (0.1%)
+ Bernhard Messerklinger 2 (0.1%)
+ Pramod Kumar 2 (0.1%)
+ MarkLee 2 (0.1%)
+ Jacky Bai 2 (0.1%)
+ Johannes Holland 2 (0.1%)
+ Yash Shah 2 (0.1%)
+ Christian Hewitt 2 (0.1%)
+ Luca Ceresoli 2 (0.1%)
+ Gregory CLEMENT 2 (0.1%)
+ Eugen Hristev 2 (0.1%)
+ Peter Ujfalusi 2 (0.1%)
+ Ravik Hasija 2 (0.1%)
+ Etienne Carriere 1 (0.0%)
+ Naoki Hayama 1 (0.0%)
+ Rick Chen 1 (0.0%)
+ Grigore Popescu 1 (0.0%)
+ Thirupathaiah Annapureddy 1 (0.0%)
+ Ran Wang 1 (0.0%)
+ Dennis Gilmore 1 (0.0%)
+ Vladimir Oltean 1 (0.0%)
+ Mian Yousaf Kaukab 1 (0.0%)
+ Mauro Condarelli 1 (0.0%)
+ Ralph Siemsen 1 (0.0%)
+ Thomas Fitzsimmons 1 (0.0%)
+ Haibo Chen 1 (0.0%)
+ Denis Pynkin 1 (0.0%)
+ Miquel Raynal 1 (0.0%)
+ Thomas Petazzoni 1 (0.0%)
+ Marek Behún 1 (0.0%)
+ Manivannan Sadhasivam 1 (0.0%)
+ Ramon Fried 1 (0.0%)
+ Robert Reither 1 (0.0%)
+ Mingming Lee 1 (0.0%)
+ Pedro Aguilar 1 (0.0%)
+ Matthias Brugger 1 (0.0%)
+ zachary 1 (0.0%)
+ Chee Hong Ang 1 (0.0%)
+ Gary Bisson 1 (0.0%)
+ yurii.pidhornyi 1 (0.0%)
+ Frank Li 1 (0.0%)
+ Jassi Brar 1 (0.0%)
+ Filip Brozovic 1 (0.0%)
+ Wilson Ding 1 (0.0%)
+ Evan Wang 1 (0.0%)
+ Ruben Di Battista 1 (0.0%)
+ Grygorii Tertychnyi 1 (0.0%)
+ Aaron Williams 1 (0.0%)
+ Trommel, Kees (Contractor) 1 (0.0%)
+ Chunfeng Yun 1 (0.0%)
+ Igor Lantsman 1 (0.0%)
+ Matthias Schiffer 1 (0.0%)
+ Stefano Babic 1 (0.0%)
+ Srinath Mannam 1 (0.0%)
+ Leo Liang 1 (0.0%)
+ Kishon Vijay Abraham I 1 (0.0%)
+ Jean-Jacques Hiblot 1 (0.0%)
+ Derald D. Woods 1 (0.0%)
+ Alex Nemirovsky 1 (0.0%)
+ Icenowy Zheng 1 (0.0%)
+ Brian Moyer 1 (0.0%)
+ Yan Liu 1 (0.0%)
+ Jonas Smedegaard 1 (0.0%)
+ Yann Gautier 1 (0.0%)
+ Doyle, Patrick 1 (0.0%)
+ Parthiban Nallathambi 1 (0.0%)
+ Ivan Mikhaylov 1 (0.0%)
+ Vikas Gupta 1 (0.0%)
+ Abhishek Shah 1 (0.0%)
+ chenshuo 1 (0.0%)
+ Marcin Sloniewski 1 (0.0%)
+ Jakob Riepler 1 (0.0%)
+ Manish Tomar 1 (0.0%)
+ Yuantian Tang 1 (0.0%)
+ Udit Agarwal 1 (0.0%)
+ Era Tiwari 1 (0.0%)
+ Alex Bee 1 (0.0%)
+ Stefan Sørensen 1 (0.0%)
+ Holger Brunck 1 (0.0%)
+ Mylène Josserand 1 (0.0%)
+ Chin Liang See 1 (0.0%)
+ Thomas Schaefer 1 (0.0%)
+ Ilko Iliev 1 (0.0%)
+ Mo, Yuezhang 1 (0.0%)
+ Sébastien Szymanski 1 (0.0%)
+ Oliver Chen 1 (0.0%)
+ Seung-Woo Kim 1 (0.0%)
+ Bhargav Shah 1 (0.0%)
+ Sven Auhagen 1 (0.0%)
+ Arthur Li 1 (0.0%)
+ Dhananjay Phadke 1 (0.0%)
+ Bruno Thomsen 1 (0.0%)
+ Pascal Vizeli 1 (0.0%)
+ Volodymyr Babchuk 1 (0.0%)
+ Fabrice Gasnier 1 (0.0%)
+ Christian Gmeiner 1 (0.0%)
+ Hugh Cole-Baker 1 (0.0%)
+ Marcin Juszkiewicz 1 (0.0%)
+ Patrick van Gelder 1 (0.0%)
+ Saeed Nowshadi 1 (0.0%)
+ Siva Durga Prasad Paladugu 1 (0.0%)
+ Rajan Vaja 1 (0.0%)
+ Troy Kisky 1 (0.0%)
+ Chuanhua Han 1 (0.0%)
+ Harald Seiler 1 (0.0%)
+ Bin Liu 1 (0.0%)
+ Florin Chiculita 1 (0.0%)
+ Tom Warren 1 (0.0%)
+ Bryan O'Donoghue 1 (0.0%)
+ Krebs, Olaf 1 (0.0%)
+ Pratyush Yadav 1 (0.0%)
+ Marcus Comstedt 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Suneel Garapati 36718 (17.7%)
+ Jagan Teki 34103 (16.4%)
+ Stefan Bosch 17981 (8.7%)
+ Simon Glass 16554 (8.0%)
+ Tero Kristo 12230 (5.9%)
+ Tom Rini 8307 (4.0%)
+ Adam Ford 5638 (2.7%)
+ Oleksandr Andrushchenko 4905 (2.4%)
+ Heinrich Schuchardt 4360 (2.1%)
+ Marek Vasut 4331 (2.1%)
+ Dave Gerlach 3826 (1.8%)
+ Sean Anderson 3710 (1.8%)
+ Joao Marcos Costa 2936 (1.4%)
+ Patrick Delaunay 2843 (1.4%)
+ AKASHI Takahiro 2396 (1.2%)
+ Masahiro Yamada 2348 (1.1%)
+ Peng Fan 1515 (0.7%)
+ Vignesh Raghavendra 1474 (0.7%)
+ Lokesh Vutla 1458 (0.7%)
+ Daniel Schwierzeck 1455 (0.7%)
+ Andrii Anisov 1442 (0.7%)
+ Christophe Kerello 1428 (0.7%)
+ Niel Fourie 1404 (0.7%)
+ Srinath Mannam 1295 (0.6%)
+ Anastasiia Lukianenko 1186 (0.6%)
+ Rayagonda Kokatanur 1166 (0.6%)
+ Mike Looijmans 1165 (0.6%)
+ Heiko Stuebner 1095 (0.5%)
+ Walter Lozano 993 (0.5%)
+ Xiaowei Bao 987 (0.5%)
+ Jassi Brar 890 (0.4%)
+ Parthiban Nallathambi 840 (0.4%)
+ Igor Opaniuk 814 (0.4%)
+ Stefan Roese 811 (0.4%)
+ Bharat Gooty 803 (0.4%)
+ Michael Walle 756 (0.4%)
+ Peter Ujfalusi 752 (0.4%)
+ Frank Wunderlich 734 (0.4%)
+ Luka Kovacic 719 (0.3%)
+ Marcin Sloniewski 709 (0.3%)
+ Christian Hewitt 708 (0.3%)
+ Sylwester Nawrocki 666 (0.3%)
+ Rasmus Villemoes 656 (0.3%)
+ Chuanjia Liu 640 (0.3%)
+ Reuben Dowle 637 (0.3%)
+ Ye Li 509 (0.2%)
+ Faiz Abbas 485 (0.2%)
+ Michal Simek 484 (0.2%)
+ Philippe Reynes 483 (0.2%)
+ Robert Marko 477 (0.2%)
+ Hayes Wang 471 (0.2%)
+ Arthur Li 465 (0.2%)
+ David Woodhouse 462 (0.2%)
+ Ilias Apalodimas 430 (0.2%)
+ Marek Szyprowski 356 (0.2%)
+ Jway Lin 341 (0.2%)
+ Chuanhua Han 337 (0.2%)
+ Zhao Qiang 331 (0.2%)
+ Aaron Williams 318 (0.2%)
+ Usama Arif 317 (0.2%)
+ Anatolij Gustschin 281 (0.1%)
+ Bin Meng 277 (0.1%)
+ Sagar Shrikant Kadam 265 (0.1%)
+ Ovidiu Panait 254 (0.1%)
+ Dan Murphy 253 (0.1%)
+ Nicolas Saenz Julienne 247 (0.1%)
+ Hou Zhiqiang 240 (0.1%)
+ Vikas Gupta 238 (0.1%)
+ Denis 'GNUtoo' Carikli 235 (0.1%)
+ Pali Rohár 222 (0.1%)
+ Yash Shah 210 (0.1%)
+ Amit Singh Tomar 200 (0.1%)
+ Sherry Sun 195 (0.1%)
+ Marcel Ziswiler 193 (0.1%)
+ T Karthik Reddy 184 (0.1%)
+ Lukasz Majewski 179 (0.1%)
+ Oliver Chen 177 (0.1%)
+ Jan Kiszka 175 (0.1%)
+ Ibai Erkiaga 169 (0.1%)
+ Andy Shevchenko 160 (0.1%)
+ Roman Kovalivskyi 152 (0.1%)
+ Simon Guinot 149 (0.1%)
+ Dario Binacchi 147 (0.1%)
+ John Chau 141 (0.1%)
+ Shivamurthy Shastri 137 (0.1%)
+ Bhargav Shah 130 (0.1%)
+ Yangbo Lu 129 (0.1%)
+ John Robertson 116 (0.1%)
+ Pramod Kumar 108 (0.1%)
+ Kuldeep Singh 101 (0.0%)
+ Biwen Li 97 (0.0%)
+ Heiko Schocher 97 (0.0%)
+ Dennis Gilmore 93 (0.0%)
+ Chia-Wei, Wang 88 (0.0%)
+ Ramon Fried 86 (0.0%)
+ Filip Brozovic 85 (0.0%)
+ Patrice Chotard 84 (0.0%)
+ Patrick Oppenlander 79 (0.0%)
+ Evan Wang 78 (0.0%)
+ Derald D. Woods 76 (0.0%)
+ Andre Przywara 74 (0.0%)
+ Ard Biesheuvel 74 (0.0%)
+ Bernhard Messerklinger 73 (0.0%)
+ Manish Tomar 73 (0.0%)
+ Johannes Krottmayer 65 (0.0%)
+ Andre Heider 65 (0.0%)
+ Pascal Vizeli 63 (0.0%)
+ hui.song 61 (0.0%)
+ Ravik Hasija 61 (0.0%)
+ Nicolas Boichat 60 (0.0%)
+ Pragnesh Patel 58 (0.0%)
+ Wig Cheng 58 (0.0%)
+ Vladimir Oltean 58 (0.0%)
+ Dhananjay Phadke 57 (0.0%)
+ Kever Yang 56 (0.0%)
+ Suniel Mahesh 48 (0.0%)
+ Neil Armstrong 47 (0.0%)
+ Abhishek Shah 45 (0.0%)
+ Andrew F. Davis 41 (0.0%)
+ Johannes Holland 39 (0.0%)
+ Ran Wang 37 (0.0%)
+ Peter Robinson 35 (0.0%)
+ Chris Packham 34 (0.0%)
+ Sven Auhagen 34 (0.0%)
+ Wasim Khan 32 (0.0%)
+ Fabio Estevam 30 (0.0%)
+ Ralph Siemsen 28 (0.0%)
+ Bin Liu 28 (0.0%)
+ Baruch Siach 25 (0.0%)
+ Anand Moon 24 (0.0%)
+ Sébastien Szymanski 23 (0.0%)
+ Wolfgang Wallner 22 (0.0%)
+ Wilson Ding 21 (0.0%)
+ Troy Kisky 21 (0.0%)
+ Chee Hong Ang 20 (0.0%)
+ Ashok Reddy Soma 19 (0.0%)
+ Ley Foon Tan 19 (0.0%)
+ zachary 19 (0.0%)
+ Ivan Mikhaylov 19 (0.0%)
+ Suman Anna 17 (0.0%)
+ Madalin Bucur 17 (0.0%)
+ Chaitanya Sakinam 16 (0.0%)
+ Florin Chiculita 16 (0.0%)
+ Tom Warren 16 (0.0%)
+ Bryan O'Donoghue 16 (0.0%)
+ Jason Wessel 15 (0.0%)
+ Lad Prabhakar 15 (0.0%)
+ Gregory CLEMENT 15 (0.0%)
+ Yuantian Tang 15 (0.0%)
+ Mian Yousaf Kaukab 14 (0.0%)
+ Jonas Smedegaard 14 (0.0%)
+ Fabrice Gasnier 14 (0.0%)
+ Igor Lantsman 13 (0.0%)
+ chenshuo 13 (0.0%)
+ Mo, Yuezhang 13 (0.0%)
+ Philippe Schenker 12 (0.0%)
+ Eugen Hristev 12 (0.0%)
+ Jakob Riepler 12 (0.0%)
+ MarkLee 11 (0.0%)
+ Mylène Josserand 11 (0.0%)
+ Chin Liang See 11 (0.0%)
+ Siva Durga Prasad Paladugu 11 (0.0%)
+ Stephen Warren 10 (0.0%)
+ Meenakshi Aggarwal 10 (0.0%)
+ Yan Liu 10 (0.0%)
+ Krebs, Olaf 10 (0.0%)
+ Grygorii Tertychnyi 9 (0.0%)
+ Soeren Moch 8 (0.0%)
+ Etienne Carriere 8 (0.0%)
+ Stefan Sørensen 8 (0.0%)
+ Volodymyr Babchuk 8 (0.0%)
+ Luca Ceresoli 7 (0.0%)
+ Jean-Jacques Hiblot 7 (0.0%)
+ Rajan Vaja 7 (0.0%)
+ Haibo Chen 6 (0.0%)
+ Ruben Di Battista 6 (0.0%)
+ Vladimir Vid 5 (0.0%)
+ Mauro Condarelli 5 (0.0%)
+ Pedro Aguilar 5 (0.0%)
+ Brian Moyer 5 (0.0%)
+ Udit Agarwal 5 (0.0%)
+ Holger Brunck 5 (0.0%)
+ Saeed Nowshadi 5 (0.0%)
+ Marek Behún 4 (0.0%)
+ Manivannan Sadhasivam 4 (0.0%)
+ Kishon Vijay Abraham I 4 (0.0%)
+ Icenowy Zheng 4 (0.0%)
+ Yann Gautier 4 (0.0%)
+ Alex Bee 4 (0.0%)
+ Pratyush Yadav 4 (0.0%)
+ Jian Li 3 (0.0%)
+ Maxim Uvarov 3 (0.0%)
+ Robert Reither 3 (0.0%)
+ Mingming Lee 3 (0.0%)
+ Chunfeng Yun 3 (0.0%)
+ Stefano Babic 3 (0.0%)
+ Alex Nemirovsky 3 (0.0%)
+ Bruno Thomsen 3 (0.0%)
+ Christian Gmeiner 3 (0.0%)
+ Marcus Comstedt 3 (0.0%)
+ Martin Kaistra 2 (0.0%)
+ Konstantin Porotchkin 2 (0.0%)
+ Jacky Bai 2 (0.0%)
+ Rick Chen 2 (0.0%)
+ Grigore Popescu 2 (0.0%)
+ Thomas Fitzsimmons 2 (0.0%)
+ Gary Bisson 2 (0.0%)
+ yurii.pidhornyi 2 (0.0%)
+ Frank Li 2 (0.0%)
+ Trommel, Kees (Contractor) 2 (0.0%)
+ Leo Liang 2 (0.0%)
+ Marcin Juszkiewicz 2 (0.0%)
+ Patrick van Gelder 2 (0.0%)
+ Harald Seiler 2 (0.0%)
+ Naoki Hayama 1 (0.0%)
+ Thirupathaiah Annapureddy 1 (0.0%)
+ Denis Pynkin 1 (0.0%)
+ Miquel Raynal 1 (0.0%)
+ Thomas Petazzoni 1 (0.0%)
+ Matthias Brugger 1 (0.0%)
+ Matthias Schiffer 1 (0.0%)
+ Doyle, Patrick 1 (0.0%)
+ Era Tiwari 1 (0.0%)
+ Thomas Schaefer 1 (0.0%)
+ Ilko Iliev 1 (0.0%)
+ Seung-Woo Kim 1 (0.0%)
+ Hugh Cole-Baker 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Jagan Teki 30007 (49.3%)
+ Tom Rini 2437 (4.0%)
+ Andy Shevchenko 114 (0.2%)
+ Bhargav Shah 111 (0.2%)
+ Wig Cheng 47 (0.1%)
+ Derald D. Woods 33 (0.1%)
+ Ibai Erkiaga 24 (0.0%)
+ Sébastien Szymanski 20 (0.0%)
+ Mian Yousaf Kaukab 14 (0.0%)
+ Lad Prabhakar 13 (0.0%)
+ Gregory CLEMENT 13 (0.0%)
+ Jonas Smedegaard 13 (0.0%)
+ Jakob Riepler 12 (0.0%)
+ Ashok Reddy Soma 7 (0.0%)
+ Yangbo Lu 6 (0.0%)
+ Rajan Vaja 6 (0.0%)
+ Fabio Estevam 5 (0.0%)
+ zachary 5 (0.0%)
+ Grygorii Tertychnyi 5 (0.0%)
+ Chaitanya Sakinam 4 (0.0%)
+ Chin Liang See 3 (0.0%)
+ Masahiro Yamada 2 (0.0%)
+ Alex Bee 2 (0.0%)
+ Christian Gmeiner 2 (0.0%)
+ Harald Seiler 2 (0.0%)
+ Baruch Siach 1 (0.0%)
+ Soeren Moch 1 (0.0%)
+ Marcus Comstedt 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 252)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 30 (11.9%)
+ Peng Fan 19 (7.5%)
+ Matthias Brugger 16 (6.3%)
+ Tom Rini 15 (6.0%)
+ Hou Zhiqiang 13 (5.2%)
+ Bin Meng 11 (4.4%)
+ Anastasiia Lukianenko 11 (4.4%)
+ Priyanka Jain 10 (4.0%)
+ Oleksandr Andrushchenko 9 (3.6%)
+ Rayagonda Kokatanur 8 (3.2%)
+ Heinrich Schuchardt 7 (2.8%)
+ Jagan Teki 5 (2.0%)
+ Henry Yen 5 (2.0%)
+ Neil Armstrong 5 (2.0%)
+ Stefan Roese 5 (2.0%)
+ Simon Glass 5 (2.0%)
+ Aaron Williams 4 (1.6%)
+ Sylwester Nawrocki 4 (1.6%)
+ Bharat Gooty 4 (1.6%)
+ Alex Nemirovsky 3 (1.2%)
+ Siva Durga Prasad Paladugu 3 (1.2%)
+ Kever Yang 3 (1.2%)
+ Andre Heider 3 (1.2%)
+ Ye Li 3 (1.2%)
+ Lokesh Vutla 3 (1.2%)
+ Patrick Delaunay 3 (1.2%)
+ Masahiro Yamada 2 (0.8%)
+ Rajesh Ravi 2 (0.8%)
+ Radu Bacrau 2 (0.8%)
+ Suman Anna 2 (0.8%)
+ Pali Rohár 2 (0.8%)
+ Vignesh Raghavendra 2 (0.8%)
+ Tero Kristo 2 (0.8%)
+ Ashok Reddy Soma 1 (0.4%)
+ Jacky Bai 1 (0.4%)
+ Thirupathaiah Annapureddy 1 (0.4%)
+ Ioana Ciornei 1 (0.4%)
+ Heiko Thiery 1 (0.4%)
+ Ken Ma 1 (0.4%)
+ Roman Stratiienko 1 (0.4%)
+ Vishal Mahaveer 1 (0.4%)
+ Sheetal Tigadoli 1 (0.4%)
+ Vladimir Olovyannikov 1 (0.4%)
+ Ashish Kumar 1 (0.4%)
+ Anji J 1 (0.4%)
+ Mark Adler 1 (0.4%)
+ Silvano di Ninno 1 (0.4%)
+ Roger Quadros 1 (0.4%)
+ Konstantin Porotchkin 1 (0.4%)
+ Jean-Jacques Hiblot 1 (0.4%)
+ Biwen Li 1 (0.4%)
+ Ley Foon Tan 1 (0.4%)
+ Andrew F. Davis 1 (0.4%)
+ Suniel Mahesh 1 (0.4%)
+ Patrice Chotard 1 (0.4%)
+ Pramod Kumar 1 (0.4%)
+ Vikas Gupta 1 (0.4%)
+ Nicolas Saenz Julienne 1 (0.4%)
+ Marek Szyprowski 1 (0.4%)
+ Xiaowei Bao 1 (0.4%)
+ Faiz Abbas 1 (0.4%)
+ Daniel Schwierzeck 1 (0.4%)
+ Andrii Anisov 1 (0.4%)
+ Dave Gerlach 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 1270)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 276 (21.7%)
+ Simon Glass 262 (20.6%)
+ Wolfgang Wallner 92 (7.2%)
+ Patrice Chotard 85 (6.7%)
+ Priyanka Jain 80 (6.3%)
+ Stefan Roese 63 (5.0%)
+ Kever Yang 56 (4.4%)
+ Tom Rini 32 (2.5%)
+ Heiko Schocher 28 (2.2%)
+ Pragnesh Patel 25 (2.0%)
+ Anatolij Gustschin 23 (1.8%)
+ Rick Chen 22 (1.7%)
+ Heinrich Schuchardt 20 (1.6%)
+ Peng Fan 10 (0.8%)
+ Suman Anna 10 (0.8%)
+ Ye Li 9 (0.7%)
+ Fabio Estevam 9 (0.7%)
+ Sean Anderson 9 (0.7%)
+ Patrick Delaunay 8 (0.6%)
+ Konstantin Porotchkin 7 (0.6%)
+ Linus Walleij 7 (0.6%)
+ Ramon Fried 7 (0.6%)
+ Nicolas Saenz Julienne 6 (0.5%)
+ Daniel Schwierzeck 6 (0.5%)
+ Stefano Babic 6 (0.5%)
+ Jagan Teki 5 (0.4%)
+ Grygorii Strashko 5 (0.4%)
+ Leo Liang 5 (0.4%)
+ Igor Opaniuk 5 (0.4%)
+ Chunfeng Yun 4 (0.3%)
+ Horia Geantă 4 (0.3%)
+ Andre Przywara 4 (0.3%)
+ Lukasz Majewski 4 (0.3%)
+ Philippe Reynes 4 (0.3%)
+ Marek Vasut 4 (0.3%)
+ Michal Simek 3 (0.2%)
+ Lokesh Vutla 3 (0.2%)
+ Soeren Moch 3 (0.2%)
+ Jaehoon Chung 3 (0.2%)
+ Igal Liberman 3 (0.2%)
+ Michael Trimarchi 3 (0.2%)
+ Philipp Tomsich 3 (0.2%)
+ Neil Armstrong 2 (0.2%)
+ Andre Heider 2 (0.2%)
+ Ashish Kumar 2 (0.2%)
+ Andy Shevchenko 2 (0.2%)
+ Aiden Park 2 (0.2%)
+ Atish Patra 2 (0.2%)
+ Luca Ceresoli 2 (0.2%)
+ Manivannan Sadhasivam 2 (0.2%)
+ Kuldeep Singh 2 (0.2%)
+ Rayagonda Kokatanur 1 (0.1%)
+ Sylwester Nawrocki 1 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Jacky Bai 1 (0.1%)
+ Ley Foon Tan 1 (0.1%)
+ Faiz Abbas 1 (0.1%)
+ Biju Das 1 (0.1%)
+ Sughosh Ganu 1 (0.1%)
+ Grzegorz Jaszczyk 1 (0.1%)
+ Stefan Chulski 1 (0.1%)
+ Jun Li 1 (0.1%)
+ Hua Jing 1 (0.1%)
+ Marcin Niestroj 1 (0.1%)
+ Eric Nelson 1 (0.1%)
+ Richard Weinberger 1 (0.1%)
+ Frieder Schrempf 1 (0.1%)
+ Kurt Kanzenbach 1 (0.1%)
+ Julius Werner 1 (0.1%)
+ Andy.Wu 1 (0.1%)
+ Julien Grall 1 (0.1%)
+ Yegor Yefremov 1 (0.1%)
+ Alex Marginean 1 (0.1%)
+ Jian Li 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Madalin Bucur 1 (0.1%)
+ Vladimir Oltean 1 (0.1%)
+ Ilias Apalodimas 1 (0.1%)
+ Walter Lozano 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 130)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bin Meng 36 (27.7%)
+ Andre Heider 13 (10.0%)
+ Stefan Roese 8 (6.2%)
+ Pragnesh Patel 8 (6.2%)
+ Wolfgang Wallner 4 (3.1%)
+ Angelo Dureghello 4 (3.1%)
+ Anand Moon 4 (3.1%)
+ Heinrich Schuchardt 3 (2.3%)
+ Soeren Moch 3 (2.3%)
+ Masahiro Yamada 3 (2.3%)
+ iSoC Platform CI 3 (2.3%)
+ Tom Rini 2 (1.5%)
+ Leo Liang 2 (1.5%)
+ Philippe Reynes 2 (1.5%)
+ Michal Simek 2 (1.5%)
+ Pali Rohár 2 (1.5%)
+ Suniel Mahesh 2 (1.5%)
+ Petr Tesarik 2 (1.5%)
+ Frank Wunderlich 2 (1.5%)
+ Adam Ford 2 (1.5%)
+ Anatolij Gustschin 1 (0.8%)
+ Rick Chen 1 (0.8%)
+ Sean Anderson 1 (0.8%)
+ Andre Przywara 1 (0.8%)
+ Igal Liberman 1 (0.8%)
+ Faiz Abbas 1 (0.8%)
+ Biju Das 1 (0.8%)
+ Hua Jing 1 (0.8%)
+ Alex Marginean 1 (0.8%)
+ Walter Lozano 1 (0.8%)
+ Heiko Thiery 1 (0.8%)
+ Silvano di Ninno 1 (0.8%)
+ Derald D. Woods 1 (0.8%)
+ Baruch Siach 1 (0.8%)
+ Marek Behún 1 (0.8%)
+ Scott K Logan 1 (0.8%)
+ Dmitry N. Kolesnikov 1 (0.8%)
+ Ji Luo 1 (0.8%)
+ Aníbal Limón 1 (0.8%)
+ Matt Porter 1 (0.8%)
+ Vagrant Cascadian 1 (0.8%)
+ Guillaume La Roque 1 (0.8%)
+ Bartosz Golaszewski 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 130)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 26 (20.0%)
+ Pali Rohár 10 (7.7%)
+ Heinrich Schuchardt 9 (6.9%)
+ Daniel Schwierzeck 8 (6.2%)
+ Bin Meng 7 (5.4%)
+ Pragnesh Patel 6 (4.6%)
+ Jagan Teki 6 (4.6%)
+ Stefan Roese 4 (3.1%)
+ Michael Walle 4 (3.1%)
+ Tom Rini 3 (2.3%)
+ Anatolij Gustschin 3 (2.3%)
+ Neil Armstrong 3 (2.3%)
+ Faiz Abbas 2 (1.5%)
+ Marek Behún 2 (1.5%)
+ Konstantin Porotchkin 2 (1.5%)
+ Ley Foon Tan 2 (1.5%)
+ zachary 2 (1.5%)
+ Jason Wessel 2 (1.5%)
+ Wilson Ding 2 (1.5%)
+ Ovidiu Panait 2 (1.5%)
+ Evan Wang 2 (1.5%)
+ Sagar Shrikant Kadam 2 (1.5%)
+ Christian Hewitt 2 (1.5%)
+ Andre Heider 1 (0.8%)
+ Wolfgang Wallner 1 (0.8%)
+ Rick Chen 1 (0.8%)
+ Walter Lozano 1 (0.8%)
+ Peng Fan 1 (0.8%)
+ Fabio Estevam 1 (0.8%)
+ Lukasz Majewski 1 (0.8%)
+ Marek Vasut 1 (0.8%)
+ Manivannan Sadhasivam 1 (0.8%)
+ Chris Packham 1 (0.8%)
+ Andrew F. Davis 1 (0.8%)
+ Troy Kisky 1 (0.8%)
+ Hugh Cole-Baker 1 (0.8%)
+ Haibo Chen 1 (0.8%)
+ Volodymyr Babchuk 1 (0.8%)
+ Pascal Vizeli 1 (0.8%)
+ David Woodhouse 1 (0.8%)
+ Chuanjia Liu 1 (0.8%)
+ AKASHI Takahiro 1 (0.8%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Bosch 5 (20.0%)
+ Tom Rini 4 (16.0%)
+ Heinrich Schuchardt 2 (8.0%)
+ Scott K Logan 2 (8.0%)
+ Pali Rohár 1 (4.0%)
+ Andre Heider 1 (4.0%)
+ Soeren Moch 1 (4.0%)
+ Sean Anderson 1 (4.0%)
+ Dmitry N. Kolesnikov 1 (4.0%)
+ Matt Porter 1 (4.0%)
+ Vagrant Cascadian 1 (4.0%)
+ Oleksandr Andrushchenko 1 (4.0%)
+ Tian Yuanhao 1 (4.0%)
+ Goran Marinkovic 1 (4.0%)
+ Igor Lantsman 1 (4.0%)
+ Dennis Gilmore 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 25)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 5 (20.0%)
+ Heinrich Schuchardt 4 (16.0%)
+ Fabio Estevam 3 (12.0%)
+ Tom Rini 2 (8.0%)
+ Andre Heider 2 (8.0%)
+ Igor Lantsman 1 (4.0%)
+ Anatolij Gustschin 1 (4.0%)
+ Neil Armstrong 1 (4.0%)
+ Volodymyr Babchuk 1 (4.0%)
+ AKASHI Takahiro 1 (4.0%)
+ Michal Simek 1 (4.0%)
+ Baruch Siach 1 (4.0%)
+ Kever Yang 1 (4.0%)
+ Robert Reither 1 (4.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 641 (31.3%)
+ Google, Inc. 352 (17.2%)
+ DENX Software Engineering 187 (9.1%)
+ ST Microelectronics 122 (6.0%)
+ NXP 116 (5.7%)
+ Texas Instruments 103 (5.0%)
+ Konsulko Group 80 (3.9%)
+ Amarula Solutions 78 (3.8%)
+ AMD 48 (2.3%)
+ Linaro 48 (2.3%)
+ Socionext Inc. 39 (1.9%)
+ Broadcom 33 (1.6%)
+ Marvell 28 (1.4%)
+ Collabora Ltd. 26 (1.3%)
+ Wind River 25 (1.2%)
+ Xilinx 24 (1.2%)
+ Intel 23 (1.1%)
+ Bootlin 17 (0.8%)
+ Samsung 15 (0.7%)
+ Rockchip 11 (0.5%)
+ ARM 9 (0.4%)
+ NVidia 4 (0.2%)
+ Siemens 4 (0.2%)
+ BayLibre SAS 3 (0.1%)
+ Boundary Devices 2 (0.1%)
+ linutronix 2 (0.1%)
+ Renesas Electronics 2 (0.1%)
+ SUSE 2 (0.1%)
+ Toradex 2 (0.1%)
+ Sony 1 (0.0%)
+ Ronetix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 57323 (27.6%)
+ Marvell 37156 (17.9%)
+ Amarula Solutions 34151 (16.5%)
+ Texas Instruments 20589 (9.9%)
+ Google, Inc. 16554 (8.0%)
+ Konsulko Group 8307 (4.0%)
+ DENX Software Engineering 7124 (3.4%)
+ NXP 4974 (2.4%)
+ ST Microelectronics 4373 (2.1%)
+ Linaro 3759 (1.8%)
+ Broadcom 3655 (1.8%)
+ Bootlin 2935 (1.4%)
+ Socionext Inc. 2348 (1.1%)
+ Samsung 1023 (0.5%)
+ Collabora Ltd. 1005 (0.5%)
+ AMD 484 (0.2%)
+ Xilinx 395 (0.2%)
+ ARM 391 (0.2%)
+ Wind River 269 (0.1%)
+ Intel 210 (0.1%)
+ Siemens 175 (0.1%)
+ Rockchip 56 (0.0%)
+ BayLibre SAS 47 (0.0%)
+ NVidia 26 (0.0%)
+ Boundary Devices 23 (0.0%)
+ Renesas Electronics 15 (0.0%)
+ SUSE 15 (0.0%)
+ Sony 13 (0.0%)
+ Toradex 12 (0.0%)
+ linutronix 2 (0.0%)
+ Ronetix 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 252)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 57 (22.6%)
+ NXP 53 (21.0%)
+ Xilinx 34 (13.5%)
+ Broadcom 17 (6.7%)
+ SUSE 17 (6.7%)
+ Texas Instruments 15 (6.0%)
+ Konsulko Group 15 (6.0%)
+ Marvell 6 (2.4%)
+ Amarula Solutions 6 (2.4%)
+ Google, Inc. 5 (2.0%)
+ DENX Software Engineering 5 (2.0%)
+ Samsung 5 (2.0%)
+ BayLibre SAS 5 (2.0%)
+ ST Microelectronics 4 (1.6%)
+ Intel 3 (1.2%)
+ Rockchip 3 (1.2%)
+ Socionext Inc. 2 (0.8%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 228)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 109 (47.8%)
+ NXP 28 (12.3%)
+ Texas Instruments 14 (6.1%)
+ DENX Software Engineering 9 (3.9%)
+ Linaro 7 (3.1%)
+ Xilinx 6 (2.6%)
+ Broadcom 6 (2.6%)
+ Marvell 6 (2.6%)
+ ST Microelectronics 5 (2.2%)
+ Intel 4 (1.8%)
+ Bootlin 4 (1.8%)
+ Samsung 3 (1.3%)
+ Collabora Ltd. 3 (1.3%)
+ SUSE 2 (0.9%)
+ Amarula Solutions 2 (0.9%)
+ ARM 2 (0.9%)
+ Wind River 2 (0.9%)
+ NVidia 2 (0.9%)
+ Boundary Devices 2 (0.9%)
+ Konsulko Group 1 (0.4%)
+ Google, Inc. 1 (0.4%)
+ BayLibre SAS 1 (0.4%)
+ Rockchip 1 (0.4%)
+ Socionext Inc. 1 (0.4%)
+ AMD 1 (0.4%)
+ Siemens 1 (0.4%)
+ Renesas Electronics 1 (0.4%)
+ Sony 1 (0.4%)
+ Toradex 1 (0.4%)
+ linutronix 1 (0.4%)
+ Ronetix 1 (0.4%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2021.01.rst b/doc/develop/statistics/u-boot-stats-v2021.01.rst
new file mode 100644
index 0000000..f8193bb
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2021.01.rst
@@ -0,0 +1,754 @@
+:orphan:
+
+Release Statistics for U-Boot v2021.01
+======================================
+
+* Processed 1694 csets from 163 developers
+
+* 27 employers found
+
+* A total of 152587 lines added, 32307 removed (delta 120280)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 298 (17.6%)
+ Sean Anderson 140 (8.3%)
+ Heinrich Schuchardt 107 (6.3%)
+ Michal Simek 88 (5.2%)
+ Patrick Delaunay 50 (3.0%)
+ Stefan Roese 37 (2.2%)
+ Claudiu Beznea 33 (1.9%)
+ Qu Wenruo 32 (1.9%)
+ Xiaowei Bao 29 (1.7%)
+ Richard Genoud 28 (1.7%)
+ Neil Armstrong 25 (1.5%)
+ Andre Przywara 25 (1.5%)
+ Biju Das 23 (1.4%)
+ Eugen Hristev 23 (1.4%)
+ Tom Rini 22 (1.3%)
+ Hou Zhiqiang 21 (1.2%)
+ Sebastian Reichel 20 (1.2%)
+ Chee Hong Ang 19 (1.1%)
+ Samuel Holland 18 (1.1%)
+ Chunfeng Yun 18 (1.1%)
+ Marek Vasut 16 (0.9%)
+ Pali Rohár 16 (0.9%)
+ Alper Nebi Yasak 16 (0.9%)
+ T Karthik Reddy 16 (0.9%)
+ Robert Marko 15 (0.9%)
+ Yangbo Lu 15 (0.9%)
+ Heiko Schocher 15 (0.9%)
+ Peng Fan 14 (0.8%)
+ Michael Walle 14 (0.8%)
+ Jagan Teki 14 (0.8%)
+ Suman Anna 14 (0.8%)
+ Wasim Khan 13 (0.8%)
+ AKASHI Takahiro 13 (0.8%)
+ Ashok Reddy Soma 13 (0.8%)
+ Anatolij Gustschin 13 (0.8%)
+ Naoki Hayama 13 (0.8%)
+ Aaron Williams 13 (0.8%)
+ Igor Opaniuk 11 (0.6%)
+ Priyanka Jain 11 (0.6%)
+ Etienne Carriere 11 (0.6%)
+ Jean-Jacques Hiblot 11 (0.6%)
+ Vignesh Raghavendra 11 (0.6%)
+ Ley Foon Tan 10 (0.6%)
+ Marcel Ziswiler 9 (0.5%)
+ Pratyush Yadav 9 (0.5%)
+ Patrice Chotard 8 (0.5%)
+ Philippe Reynes 8 (0.5%)
+ Ilias Apalodimas 8 (0.5%)
+ Andy Shevchenko 8 (0.5%)
+ Lad Prabhakar 8 (0.5%)
+ Jaehoon Chung 8 (0.5%)
+ Oliver Graute 7 (0.4%)
+ Andre Heider 7 (0.4%)
+ Lukasz Majewski 6 (0.4%)
+ Bin Meng 6 (0.4%)
+ Holger Brunck 6 (0.4%)
+ Icenowy Zheng 6 (0.4%)
+ Dario Binacchi 6 (0.4%)
+ Ovidiu Panait 6 (0.4%)
+ Adam Ford 5 (0.3%)
+ Max Krummenacher 5 (0.3%)
+ Haibo Chen 5 (0.3%)
+ Thirupathaiah Annapureddy 5 (0.3%)
+ Faiz Abbas 5 (0.3%)
+ Marc Ferland 4 (0.2%)
+ Fabio Estevam 4 (0.2%)
+ Biwen Li 4 (0.2%)
+ Baruch Siach 4 (0.2%)
+ Peter Robinson 4 (0.2%)
+ Pragnesh Patel 4 (0.2%)
+ Nishanth Menon 4 (0.2%)
+ Laurentiu Tudor 4 (0.2%)
+ Suneel Garapati 4 (0.2%)
+ Stefan Agner 3 (0.2%)
+ Andrey Zhizhikin 3 (0.2%)
+ Frieder Schrempf 3 (0.2%)
+ Priyanka Singh 3 (0.2%)
+ Ruchika Gupta 3 (0.2%)
+ Meenakshi Aggarwal 3 (0.2%)
+ Luka Kovacic 3 (0.2%)
+ Tim Harvey 3 (0.2%)
+ Ian Ray 3 (0.2%)
+ Christian Gmeiner 3 (0.2%)
+ Siva Durga Prasad Paladugu 3 (0.2%)
+ Heiko Stuebner 3 (0.2%)
+ Shmuel Hazan 3 (0.2%)
+ Ryan Chen 3 (0.2%)
+ Jonas Smedegaard 3 (0.2%)
+ Frédéric Danis 3 (0.2%)
+ Chuanhua Han 3 (0.2%)
+ Edgar E. Iglesias 3 (0.2%)
+ Hugh Cole-Baker 2 (0.1%)
+ Paulo Alcantara 2 (0.1%)
+ Marek Szyprowski 2 (0.1%)
+ Hayes Wang 2 (0.1%)
+ Ran Wang 2 (0.1%)
+ Leo Yu-Chi Liang 2 (0.1%)
+ Hui Song 2 (0.1%)
+ Aleksandar Gerasimovski 2 (0.1%)
+ Manish Tomar 2 (0.1%)
+ Madalin Bucur 2 (0.1%)
+ Vladimir Oltean 2 (0.1%)
+ Nicolas Ferre 2 (0.1%)
+ Jack Mitchell 2 (0.1%)
+ Grzegorz Jaszczyk 2 (0.1%)
+ Chia-Wei, Wang 2 (0.1%)
+ Chance.Yang 2 (0.1%)
+ Rasmus Villemoes 2 (0.1%)
+ Alexandru Gagniuc 2 (0.1%)
+ Patrick Wildt 2 (0.1%)
+ Otavio Salvador 2 (0.1%)
+ David Woodhouse 2 (0.1%)
+ Dalon Westergreen 2 (0.1%)
+ Chin Liang See 2 (0.1%)
+ Dylan Hung 2 (0.1%)
+ Rayagonda Kokatanur 2 (0.1%)
+ Saeed Nowshadi 2 (0.1%)
+ Matwey V. Kornilov 2 (0.1%)
+ Clément Péron 1 (0.1%)
+ Sughosh Ganu 1 (0.1%)
+ Hongwei Zhang 1 (0.1%)
+ Pengpeng Chen 1 (0.1%)
+ Mikhail Kshevetskiy 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Brad Kim 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Alban Bedel 1 (0.1%)
+ Ioana Ciornei 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Manuel Reis 1 (0.1%)
+ Joshua Scott 1 (0.1%)
+ Gerard Koskamp 1 (0.1%)
+ Steven Lawrance 1 (0.1%)
+ Matteo Ghidoni 1 (0.1%)
+ Tyler Hicks 1 (0.1%)
+ Arnaud Aujon Chevallier 1 (0.1%)
+ Hoyeonjiki Kim 1 (0.1%)
+ Ivaylo Dimitrov 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Parthiban Nallathambi 1 (0.1%)
+ Kever Yang 1 (0.1%)
+ Amit Singh Tomar 1 (0.1%)
+ Teresa Remmet 1 (0.1%)
+ Jorge Ramirez-Ortiz 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Guillaume La Roque 1 (0.1%)
+ Igal Liberman 1 (0.1%)
+ Alexandre GRIVEAUX 1 (0.1%)
+ Razvan Ionut Cirjan 1 (0.1%)
+ Fabien Parent 1 (0.1%)
+ Ralph Siemsen 1 (0.1%)
+ George Hilliard 1 (0.1%)
+ Matthieu CASTET 1 (0.1%)
+ Moses Christopher 1 (0.1%)
+ Srinath Mannam 1 (0.1%)
+ Ibai Erkiaga 1 (0.1%)
+ Harini Katakam 1 (0.1%)
+ Walter Lozano 1 (0.1%)
+ Chuanjia Liu 1 (0.1%)
+ Vladimir Olovyannikov 1 (0.1%)
+ Bharat Kumar Reddy Gooty 1 (0.1%)
+ Vikas Gupta 1 (0.1%)
+ Trac Hoang 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Aaron Williams 24898 (15.0%)
+ Simon Glass 19251 (11.6%)
+ Suneel Garapati 14230 (8.6%)
+ Qu Wenruo 10501 (6.3%)
+ Heiko Schocher 9806 (5.9%)
+ Claudiu Beznea 6942 (4.2%)
+ Biju Das 6394 (3.9%)
+ Sean Anderson 5551 (3.4%)
+ Chunfeng Yun 4928 (3.0%)
+ Priyanka Jain 4504 (2.7%)
+ Tom Rini 3126 (1.9%)
+ Heinrich Schuchardt 2991 (1.8%)
+ Sebastian Reichel 2789 (1.7%)
+ Samuel Holland 2669 (1.6%)
+ Neil Armstrong 2661 (1.6%)
+ Teresa Remmet 2658 (1.6%)
+ Lad Prabhakar 2446 (1.5%)
+ Jean-Jacques Hiblot 2162 (1.3%)
+ Etienne Carriere 2139 (1.3%)
+ Meenakshi Aggarwal 2124 (1.3%)
+ Stefan Roese 2087 (1.3%)
+ Robert Marko 1855 (1.1%)
+ Michal Simek 1671 (1.0%)
+ Michael Walle 1604 (1.0%)
+ Patrick Delaunay 1236 (0.7%)
+ Grzegorz Jaszczyk 1166 (0.7%)
+ Eugen Hristev 1099 (0.7%)
+ Igor Opaniuk 1014 (0.6%)
+ Peng Fan 851 (0.5%)
+ Ilias Apalodimas 845 (0.5%)
+ Icenowy Zheng 824 (0.5%)
+ Hou Zhiqiang 800 (0.5%)
+ Frédéric Danis 793 (0.5%)
+ Alper Nebi Yasak 656 (0.4%)
+ Pragnesh Patel 650 (0.4%)
+ Pengpeng Chen 587 (0.4%)
+ Ashok Reddy Soma 561 (0.3%)
+ Luka Kovacic 507 (0.3%)
+ Siva Durga Prasad Paladugu 497 (0.3%)
+ Laurentiu Tudor 489 (0.3%)
+ Dalon Westergreen 479 (0.3%)
+ Jagan Teki 476 (0.3%)
+ Pratyush Yadav 476 (0.3%)
+ Ley Foon Tan 451 (0.3%)
+ Alexandre GRIVEAUX 413 (0.2%)
+ Marek Vasut 404 (0.2%)
+ T Karthik Reddy 387 (0.2%)
+ Paulo Alcantara 382 (0.2%)
+ Chee Hong Ang 380 (0.2%)
+ Patrice Chotard 379 (0.2%)
+ Andre Przywara 376 (0.2%)
+ Xiaowei Bao 365 (0.2%)
+ Parthiban Nallathambi 352 (0.2%)
+ Yangbo Lu 341 (0.2%)
+ Pali Rohár 334 (0.2%)
+ AKASHI Takahiro 325 (0.2%)
+ Richard Genoud 303 (0.2%)
+ Andre Heider 297 (0.2%)
+ Ruchika Gupta 291 (0.2%)
+ Suman Anna 280 (0.2%)
+ Philippe Reynes 278 (0.2%)
+ Wasim Khan 274 (0.2%)
+ Faiz Abbas 268 (0.2%)
+ Bin Meng 249 (0.2%)
+ Michael Trimarchi 232 (0.1%)
+ Biwen Li 205 (0.1%)
+ Marcel Ziswiler 187 (0.1%)
+ Christian Gmeiner 186 (0.1%)
+ Srinath Mannam 185 (0.1%)
+ Adam Ford 177 (0.1%)
+ Max Krummenacher 177 (0.1%)
+ Ibai Erkiaga 165 (0.1%)
+ Ovidiu Panait 151 (0.1%)
+ Heiko Stuebner 134 (0.1%)
+ Vikas Gupta 126 (0.1%)
+ Andy Shevchenko 123 (0.1%)
+ Shmuel Hazan 123 (0.1%)
+ Marc Ferland 122 (0.1%)
+ Oliver Graute 115 (0.1%)
+ Vignesh Raghavendra 112 (0.1%)
+ Chia-Wei, Wang 99 (0.1%)
+ Thirupathaiah Annapureddy 92 (0.1%)
+ Hui Song 90 (0.1%)
+ Haibo Chen 81 (0.0%)
+ Anatolij Gustschin 76 (0.0%)
+ Naoki Hayama 75 (0.0%)
+ Ryan Chen 73 (0.0%)
+ Patrick Wildt 73 (0.0%)
+ Holger Brunck 68 (0.0%)
+ Andrey Zhizhikin 64 (0.0%)
+ Ran Wang 63 (0.0%)
+ Lukasz Majewski 60 (0.0%)
+ Madalin Bucur 59 (0.0%)
+ Chuanhua Han 55 (0.0%)
+ Trac Hoang 47 (0.0%)
+ Harini Katakam 40 (0.0%)
+ Bharat Kumar Reddy Gooty 40 (0.0%)
+ Dario Binacchi 37 (0.0%)
+ George Hilliard 35 (0.0%)
+ Peter Robinson 32 (0.0%)
+ David Woodhouse 32 (0.0%)
+ Edgar E. Iglesias 30 (0.0%)
+ Saeed Nowshadi 29 (0.0%)
+ Hayes Wang 27 (0.0%)
+ Baruch Siach 26 (0.0%)
+ Leo Yu-Chi Liang 24 (0.0%)
+ Alban Bedel 23 (0.0%)
+ Ian Ray 22 (0.0%)
+ Ivaylo Dimitrov 22 (0.0%)
+ Jack Mitchell 21 (0.0%)
+ Rayagonda Kokatanur 21 (0.0%)
+ Jaehoon Chung 20 (0.0%)
+ Stefan Agner 19 (0.0%)
+ Frieder Schrempf 17 (0.0%)
+ Rasmus Villemoes 17 (0.0%)
+ Alexandru Gagniuc 17 (0.0%)
+ Dylan Hung 17 (0.0%)
+ Nicolas Ferre 16 (0.0%)
+ Chance.Yang 14 (0.0%)
+ Nishanth Menon 13 (0.0%)
+ Tyler Hicks 13 (0.0%)
+ Chuanjia Liu 13 (0.0%)
+ Matteo Ghidoni 12 (0.0%)
+ Fabio Estevam 11 (0.0%)
+ Vladimir Oltean 11 (0.0%)
+ Manuel Reis 11 (0.0%)
+ Razvan Ionut Cirjan 11 (0.0%)
+ Chin Liang See 10 (0.0%)
+ Ioana Ciornei 10 (0.0%)
+ Mikhail Kshevetskiy 9 (0.0%)
+ Joshua Scott 9 (0.0%)
+ Vladimir Olovyannikov 9 (0.0%)
+ Priyanka Singh 8 (0.0%)
+ Hugh Cole-Baker 8 (0.0%)
+ Matwey V. Kornilov 8 (0.0%)
+ Marek Szyprowski 7 (0.0%)
+ Guillaume La Roque 7 (0.0%)
+ Tim Harvey 6 (0.0%)
+ Aleksandar Gerasimovski 6 (0.0%)
+ Atish Patra 6 (0.0%)
+ Sughosh Ganu 5 (0.0%)
+ Roger Quadros 5 (0.0%)
+ Igal Liberman 5 (0.0%)
+ Matthieu CASTET 5 (0.0%)
+ Jonas Smedegaard 4 (0.0%)
+ Otavio Salvador 4 (0.0%)
+ Steven Lawrance 4 (0.0%)
+ Jorge Ramirez-Ortiz 4 (0.0%)
+ Manish Tomar 3 (0.0%)
+ Fabien Parent 3 (0.0%)
+ Clément Péron 2 (0.0%)
+ Chris Packham 2 (0.0%)
+ Gerard Koskamp 2 (0.0%)
+ Ralph Siemsen 2 (0.0%)
+ Hongwei Zhang 1 (0.0%)
+ Brad Kim 1 (0.0%)
+ Zhao Qiang 1 (0.0%)
+ Arnaud Aujon Chevallier 1 (0.0%)
+ Hoyeonjiki Kim 1 (0.0%)
+ Kever Yang 1 (0.0%)
+ Amit Singh Tomar 1 (0.0%)
+ Moses Christopher 1 (0.0%)
+ Walter Lozano 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Priyanka Jain 4493 (13.9%)
+ Tom Rini 1211 (3.7%)
+ Grzegorz Jaszczyk 1065 (3.3%)
+ Andre Przywara 42 (0.1%)
+ Pali Rohár 31 (0.1%)
+ Ibai Erkiaga 27 (0.1%)
+ Dario Binacchi 23 (0.1%)
+ Alban Bedel 19 (0.1%)
+ Alexandru Gagniuc 14 (0.0%)
+ Holger Brunck 13 (0.0%)
+ Stefan Agner 12 (0.0%)
+ Ioana Ciornei 10 (0.0%)
+ Frieder Schrempf 8 (0.0%)
+ Tyler Hicks 8 (0.0%)
+ Fabio Estevam 8 (0.0%)
+ Nishanth Menon 4 (0.0%)
+ Hugh Cole-Baker 4 (0.0%)
+ Baruch Siach 2 (0.0%)
+ Rasmus Villemoes 1 (0.0%)
+ Arnaud Aujon Chevallier 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 251)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 39 (15.5%)
+ Hou Zhiqiang 35 (13.9%)
+ Priyanka Jain 30 (12.0%)
+ Stefan Roese 17 (6.8%)
+ Pratyush Yadav 11 (4.4%)
+ Tom Warren 8 (3.2%)
+ Bin Meng 8 (3.2%)
+ Heinrich Schuchardt 8 (3.2%)
+ Tom Rini 6 (2.4%)
+ Baruch Siach 6 (2.4%)
+ Neil Armstrong 6 (2.4%)
+ Minkyu Kang 5 (2.0%)
+ Rayagonda Kokatanur 5 (2.0%)
+ Chee Hong Ang 5 (2.0%)
+ Ashok Reddy Soma 5 (2.0%)
+ Igor Opaniuk 5 (2.0%)
+ Andre Przywara 4 (1.6%)
+ Miquel Raynal 3 (1.2%)
+ Matthias Brugger 3 (1.2%)
+ Ley Foon Tan 3 (1.2%)
+ Xiaowei Bao 3 (1.2%)
+ Jagan Teki 3 (1.2%)
+ Sebastian Reichel 3 (1.2%)
+ Suniel Mahesh 2 (0.8%)
+ Vladimir Oltean 2 (0.8%)
+ Patrice Chotard 2 (0.8%)
+ Michael Trimarchi 2 (0.8%)
+ Siva Durga Prasad Paladugu 2 (0.8%)
+ Holger Brunck 1 (0.4%)
+ Ioana Ciornei 1 (0.4%)
+ Manish Tomar 1 (0.4%)
+ Zhao Qiang 1 (0.4%)
+ Lokesh Vutla 1 (0.4%)
+ Alex Nemirovsky 1 (0.4%)
+ Gaurav Jain 1 (0.4%)
+ Vikas Singh 1 (0.4%)
+ Daniel Schwierzeck 1 (0.4%)
+ Mattijs Korpershoek 1 (0.4%)
+ Ken Ma 1 (0.4%)
+ Siew Chin Lim 1 (0.4%)
+ Jaehoon Chung 1 (0.4%)
+ Ran Wang 1 (0.4%)
+ Hui Song 1 (0.4%)
+ Luka Kovacic 1 (0.4%)
+ Alper Nebi Yasak 1 (0.4%)
+ Sean Anderson 1 (0.4%)
+ Simon Glass 1 (0.4%)
+ Aaron Williams 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 967)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 237 (24.5%)
+ Bin Meng 138 (14.3%)
+ Priyanka Jain 72 (7.4%)
+ Jagan Teki 63 (6.5%)
+ Patrice Chotard 35 (3.6%)
+ Marek Behún 33 (3.4%)
+ Patrick Delaunay 25 (2.6%)
+ Stefan Roese 24 (2.5%)
+ Kever Yang 24 (2.5%)
+ Rick Chen 22 (2.3%)
+ Peng Fan 21 (2.2%)
+ Ley Foon Tan 20 (2.1%)
+ Heinrich Schuchardt 19 (2.0%)
+ Tom Rini 19 (2.0%)
+ Jaehoon Chung 19 (2.0%)
+ Lad Prabhakar 19 (2.0%)
+ Wolfgang Wallner 16 (1.7%)
+ Joao Marcos Costa 15 (1.6%)
+ Vladimir Oltean 9 (0.9%)
+ Oleksandr Suvorov 9 (0.9%)
+ Andre Przywara 8 (0.8%)
+ Biju Das 8 (0.8%)
+ Stephen Warren 7 (0.7%)
+ Heiko Schocher 7 (0.7%)
+ Igor Opaniuk 6 (0.6%)
+ Fabio Estevam 6 (0.6%)
+ Ramon Fried 5 (0.5%)
+ Leo Yu-Chi Liang 5 (0.5%)
+ Daniel Schwierzeck 4 (0.4%)
+ Pali Rohár 4 (0.4%)
+ Kevin Hilman 4 (0.4%)
+ Ovidiu Panait 4 (0.4%)
+ Ryan Chen 4 (0.4%)
+ Philippe Reynes 4 (0.4%)
+ Ilias Apalodimas 4 (0.4%)
+ Claudiu Beznea 4 (0.4%)
+ Boris Brezillon 3 (0.3%)
+ Philipp Tomsich 3 (0.3%)
+ Chia-Wei, Wang 3 (0.3%)
+ Andy Shevchenko 3 (0.3%)
+ Sean Anderson 2 (0.2%)
+ Nishanth Menon 2 (0.2%)
+ Yannick Fertré 2 (0.2%)
+ Cédric Le Goater 2 (0.2%)
+ Igal Liberman 2 (0.2%)
+ Pragnesh Patel 2 (0.2%)
+ Michal Simek 1 (0.1%)
+ Matthias Brugger 1 (0.1%)
+ Alper Nebi Yasak 1 (0.1%)
+ Grzegorz Jaszczyk 1 (0.1%)
+ Pavel Machek 1 (0.1%)
+ Lukas Auer 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Peter Chubb 1 (0.1%)
+ Oleksandr Andrushchenko 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Joe Bloggs 1 (0.1%)
+ Fred Bloggs 1 (0.1%)
+ Horia Geanta 1 (0.1%)
+ Grygorii Strashko 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Andre Heider 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Christian Gmeiner 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Qu Wenruo 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 91)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Patrick Delaunay 47 (51.6%)
+ Amit Singh Tomar 15 (16.5%)
+ Kevin Hilman 4 (4.4%)
+ Heinrich Schuchardt 2 (2.2%)
+ Michal Simek 2 (2.2%)
+ Dennis Gilmore 2 (2.2%)
+ Michael Opdenacker 2 (2.2%)
+ Gérald Kerma 2 (2.2%)
+ Heiko Thiery 2 (2.2%)
+ Frank Wunderlich 2 (2.2%)
+ Simon Glass 1 (1.1%)
+ Wolfgang Wallner 1 (1.1%)
+ Joao Marcos Costa 1 (1.1%)
+ Vladimir Oltean 1 (1.1%)
+ Pali Rohár 1 (1.1%)
+ Michael Walle 1 (1.1%)
+ Ashok Reddy Soma 1 (1.1%)
+ Codrin Ciubotariu 1 (1.1%)
+ Anand Moon 1 (1.1%)
+ Lord Edmund Blackaddër 1 (1.1%)
+ Andrey Zhizhikin 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 91)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Sean Anderson 46 (50.5%)
+ Andre Przywara 15 (16.5%)
+ Neil Armstrong 5 (5.5%)
+ Simon Glass 3 (3.3%)
+ Pali Rohár 2 (2.2%)
+ Michael Walle 2 (2.2%)
+ Stefan Roese 2 (2.2%)
+ Alper Nebi Yasak 2 (2.2%)
+ Edgar E. Iglesias 2 (2.2%)
+ Michal Simek 1 (1.1%)
+ Heiko Schocher 1 (1.1%)
+ Fabio Estevam 1 (1.1%)
+ Alexandru Gagniuc 1 (1.1%)
+ Arnaud Aujon Chevallier 1 (1.1%)
+ Gerard Koskamp 1 (1.1%)
+ Chuanjia Liu 1 (1.1%)
+ Manuel Reis 1 (1.1%)
+ Ivaylo Dimitrov 1 (1.1%)
+ Biwen Li 1 (1.1%)
+ Eugen Hristev 1 (1.1%)
+ Chunfeng Yun 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Damien Le Moal 3 (16.7%)
+ Tom Rini 2 (11.1%)
+ Mihai Sain 2 (11.1%)
+ Simon Glass 1 (5.6%)
+ Michael Walle 1 (5.6%)
+ Patrick Delaunay 1 (5.6%)
+ Heinrich Schuchardt 1 (5.6%)
+ Wolfgang Wallner 1 (5.6%)
+ Andrey Zhizhikin 1 (5.6%)
+ Anton Arapov 1 (5.6%)
+ Otto Meier 1 (5.6%)
+ Leo Krueger 1 (5.6%)
+ François Ozog 1 (5.6%)
+ Paulo Alcantara 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 18)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 3 (16.7%)
+ Sean Anderson 3 (16.7%)
+ Neil Armstrong 2 (11.1%)
+ Michal Simek 2 (11.1%)
+ Eugen Hristev 2 (11.1%)
+ Simon Glass 1 (5.6%)
+ Michael Walle 1 (5.6%)
+ Pali Rohár 1 (5.6%)
+ Alper Nebi Yasak 1 (5.6%)
+ Heiko Schocher 1 (5.6%)
+ Fabio Estevam 1 (5.6%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 613 (36.2%)
+ Google, Inc. 298 (17.6%)
+ NXP 141 (8.3%)
+ AMD 88 (5.2%)
+ DENX Software Engineering 87 (5.1%)
+ ST Microelectronics 60 (3.5%)
+ Texas Instruments 55 (3.2%)
+ Intel 41 (2.4%)
+ Xilinx 39 (2.3%)
+ Linaro 32 (1.9%)
+ SUSE 32 (1.9%)
+ Renesas Electronics 31 (1.8%)
+ BayLibre SAS 27 (1.6%)
+ ARM 25 (1.5%)
+ Collabora Ltd. 24 (1.4%)
+ Konsulko Group 22 (1.3%)
+ Marvell 18 (1.1%)
+ Amarula Solutions 15 (0.9%)
+ Toradex 14 (0.8%)
+ Samsung 10 (0.6%)
+ Broadcom 7 (0.4%)
+ Wind River 6 (0.4%)
+ General Electric 3 (0.2%)
+ O.S. Systems 2 (0.1%)
+ Semihalf Embedded Systems 2 (0.1%)
+ Phytec 1 (0.1%)
+ Rockchip 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Marvell 39133 (23.6%)
+ (Unknown) 36423 (22.0%)
+ Google, Inc. 19251 (11.6%)
+ DENX Software Engineering 12433 (7.5%)
+ NXP 10636 (6.4%)
+ SUSE 10501 (6.3%)
+ Renesas Electronics 8840 (5.3%)
+ Collabora Ltd. 3583 (2.2%)
+ Texas Instruments 3316 (2.0%)
+ Linaro 3299 (2.0%)
+ Konsulko Group 3126 (1.9%)
+ BayLibre SAS 2671 (1.6%)
+ Phytec 2658 (1.6%)
+ Xilinx 1709 (1.0%)
+ AMD 1671 (1.0%)
+ ST Microelectronics 1632 (1.0%)
+ Intel 1443 (0.9%)
+ Semihalf Embedded Systems 1166 (0.7%)
+ Amarula Solutions 708 (0.4%)
+ Broadcom 428 (0.3%)
+ ARM 376 (0.2%)
+ Toradex 364 (0.2%)
+ Wind River 151 (0.1%)
+ Samsung 27 (0.0%)
+ General Electric 22 (0.0%)
+ O.S. Systems 4 (0.0%)
+ Rockchip 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 251)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ NXP 77 (30.7%)
+ Xilinx 46 (18.3%)
+ (Unknown) 28 (11.2%)
+ DENX Software Engineering 17 (6.8%)
+ Texas Instruments 12 (4.8%)
+ Intel 9 (3.6%)
+ NVidia 8 (3.2%)
+ BayLibre SAS 7 (2.8%)
+ Amarula Solutions 7 (2.8%)
+ Konsulko Group 6 (2.4%)
+ Samsung 6 (2.4%)
+ Broadcom 5 (2.0%)
+ Toradex 5 (2.0%)
+ ARM 4 (1.6%)
+ SUSE 3 (1.2%)
+ Collabora Ltd. 3 (1.2%)
+ Bootlin 3 (1.2%)
+ Marvell 2 (0.8%)
+ ST Microelectronics 2 (0.8%)
+ Google, Inc. 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 164)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 77 (47.0%)
+ NXP 21 (12.8%)
+ Xilinx 7 (4.3%)
+ Texas Instruments 7 (4.3%)
+ Broadcom 6 (3.7%)
+ DENX Software Engineering 5 (3.0%)
+ Intel 5 (3.0%)
+ Linaro 5 (3.0%)
+ BayLibre SAS 3 (1.8%)
+ Collabora Ltd. 3 (1.8%)
+ Marvell 3 (1.8%)
+ ST Microelectronics 3 (1.8%)
+ Amarula Solutions 2 (1.2%)
+ Samsung 2 (1.2%)
+ Toradex 2 (1.2%)
+ Renesas Electronics 2 (1.2%)
+ Konsulko Group 1 (0.6%)
+ ARM 1 (0.6%)
+ SUSE 1 (0.6%)
+ Google, Inc. 1 (0.6%)
+ Phytec 1 (0.6%)
+ AMD 1 (0.6%)
+ Semihalf Embedded Systems 1 (0.6%)
+ Wind River 1 (0.6%)
+ General Electric 1 (0.6%)
+ O.S. Systems 1 (0.6%)
+ Rockchip 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2021.04.rst b/doc/develop/statistics/u-boot-stats-v2021.04.rst
new file mode 100644
index 0000000..2f5df96
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2021.04.rst
@@ -0,0 +1,851 @@
+:orphan:
+
+Release Statistics for U-Boot v2021.04
+======================================
+
+* Processed 1675 csets from 194 developers
+
+* 28 employers found
+
+* A total of 117874 lines added, 48394 removed (delta 69480)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Simon Glass 285 (17.0%)
+ Heinrich Schuchardt 203 (12.1%)
+ Patrick Delaunay 85 (5.1%)
+ Bin Meng 59 (3.5%)
+ Pali Rohár 41 (2.4%)
+ Tom Rini 40 (2.4%)
+ Dario Binacchi 39 (2.3%)
+ Biwen Li 34 (2.0%)
+ Claudiu Beznea 27 (1.6%)
+ Marek Vasut 26 (1.6%)
+ Andy Shevchenko 26 (1.6%)
+ Marek Szyprowski 25 (1.5%)
+ Weijie Gao 25 (1.5%)
+ Ovidiu Panait 25 (1.5%)
+ Marek Behún 23 (1.4%)
+ Michael Walle 22 (1.3%)
+ Michal Simek 22 (1.3%)
+ Eugen Hristev 20 (1.2%)
+ Jernej Skrabec 20 (1.2%)
+ Faiz Abbas 20 (1.2%)
+ Sean Anderson 19 (1.1%)
+ Andre Przywara 17 (1.0%)
+ Adam Ford 16 (1.0%)
+ Priyanka Jain 15 (0.9%)
+ Nicolas Saenz Julienne 15 (0.9%)
+ Li Jun 15 (0.9%)
+ Sughosh Ganu 15 (0.9%)
+ AKASHI Takahiro 15 (0.9%)
+ Fabio Estevam 14 (0.8%)
+ Peng Fan 14 (0.8%)
+ Chee Hong Ang 14 (0.8%)
+ Siew Chin Lim 13 (0.8%)
+ Neil Armstrong 13 (0.8%)
+ Jaehoon Chung 13 (0.8%)
+ Ye Li 13 (0.8%)
+ Patrice Chotard 12 (0.7%)
+ Ilias Apalodimas 11 (0.7%)
+ Alexandru Gagniuc 11 (0.7%)
+ Matthias Brugger 10 (0.6%)
+ Stefan Roese 8 (0.5%)
+ Christian Hewitt 8 (0.5%)
+ Moti Buskila 7 (0.4%)
+ T Karthik Reddy 7 (0.4%)
+ Fabien Parent 7 (0.4%)
+ Padmarao Begari 7 (0.4%)
+ Igor Opaniuk 6 (0.4%)
+ Lokesh Vutla 6 (0.4%)
+ Minkyu Kang 6 (0.4%)
+ Rasmus Villemoes 6 (0.4%)
+ Harm Berntsen 6 (0.4%)
+ Aswath Govindraju 6 (0.4%)
+ Philippe Reynes 6 (0.4%)
+ Hou Zhiqiang 5 (0.3%)
+ Kuldeep Singh 5 (0.3%)
+ Aleksandar Gerasimovski 5 (0.3%)
+ Eugeniu Rosca 5 (0.3%)
+ Alice Guo 5 (0.3%)
+ Chia-Wei, Wang 5 (0.3%)
+ Heiko Schocher 4 (0.2%)
+ Tim Harvey 4 (0.2%)
+ Klaus Heinrich Kiwi 4 (0.2%)
+ Peter Robinson 4 (0.2%)
+ Niel Fourie 4 (0.2%)
+ David Lechner 4 (0.2%)
+ Dennis Gilmore 4 (0.2%)
+ Robert Marko 4 (0.2%)
+ Chris Packham 3 (0.2%)
+ Ley Foon Tan 3 (0.2%)
+ Chunfeng Yun 3 (0.2%)
+ Wasim Khan 3 (0.2%)
+ Alper Nebi Yasak 3 (0.2%)
+ Pragnesh Patel 3 (0.2%)
+ Alex Marginean 3 (0.2%)
+ Mathew McBride 3 (0.2%)
+ Kory Maincent 3 (0.2%)
+ Kever Yang 3 (0.2%)
+ Phil Sutter 3 (0.2%)
+ Andre Heider 3 (0.2%)
+ Joel Stanley 3 (0.2%)
+ Greg Gallagher 3 (0.2%)
+ Tudor Ambarus 3 (0.2%)
+ Holger Brunck 3 (0.2%)
+ Lad Prabhakar 3 (0.2%)
+ Nishanth Menon 3 (0.2%)
+ Vladimir Oltean 2 (0.1%)
+ Mark Kettenis 2 (0.1%)
+ Yannick Fertre 2 (0.1%)
+ Etienne Carriere 2 (0.1%)
+ Ramon Fried 2 (0.1%)
+ Rajesh Bhagat 2 (0.1%)
+ Oleksandr Suvorov 2 (0.1%)
+ Baruch Siach 2 (0.1%)
+ Alex Leibovich 2 (0.1%)
+ Roger Pau Monne 2 (0.1%)
+ Brandon Maier 2 (0.1%)
+ Sinan Akman 2 (0.1%)
+ Yuezhang Mo 2 (0.1%)
+ Jorge Ramirez-Ortiz 2 (0.1%)
+ Vignesh Raghavendra 2 (0.1%)
+ Jean-Philippe ROMAIN 2 (0.1%)
+ Roman Kovalivskyi 2 (0.1%)
+ Gary Bisson 2 (0.1%)
+ Ravik Hasija 2 (0.1%)
+ Stanislav Pinchuk 2 (0.1%)
+ SkyLake.Huang 2 (0.1%)
+ Ying-Chun Liu (PaulLiu) 2 (0.1%)
+ Marc Ferland 2 (0.1%)
+ Shawn Lin 2 (0.1%)
+ Hugh Cole-Baker 2 (0.1%)
+ Hongwei Zhang 2 (0.1%)
+ Kate Liu 2 (0.1%)
+ Vabhav Sharma 2 (0.1%)
+ Jerome Brunet 2 (0.1%)
+ Nicolas Ferre 2 (0.1%)
+ Philipp Tomsich 2 (0.1%)
+ Peter Bergin 1 (0.1%)
+ Andrey Zhizhikin 1 (0.1%)
+ Samuel Holland 1 (0.1%)
+ Jessica Clarke 1 (0.1%)
+ Maxim Kochetkov 1 (0.1%)
+ Frank Wunderlich 1 (0.1%)
+ schspa 1 (0.1%)
+ Daniel Golle 1 (0.1%)
+ Sujeet Baranwal 1 (0.1%)
+ Dalon Westergreen 1 (0.1%)
+ Stephen Carlson 1 (0.1%)
+ Bernhard Kirchen 1 (0.1%)
+ Bharat Gooty 1 (0.1%)
+ Haibo Chen 1 (0.1%)
+ Frieder Schrempf 1 (0.1%)
+ Stefan Brüns 1 (0.1%)
+ Reto Schneider 1 (0.1%)
+ Hauke Mehrtens 1 (0.1%)
+ heaterC 1 (0.1%)
+ Kostya Porotchkin 1 (0.1%)
+ Su Baocheng 1 (0.1%)
+ Diego Sueiro 1 (0.1%)
+ Vincent Stehlé 1 (0.1%)
+ Qu Wenruo 1 (0.1%)
+ Jesper Schmitz Mouridsen 1 (0.1%)
+ Tobias Schramm 1 (0.1%)
+ Moses Christopher 1 (0.1%)
+ Stefan Bosch 1 (0.1%)
+ Claudiu Manoil 1 (0.1%)
+ Asherah Connor 1 (0.1%)
+ Fabrice GIRARDOT 1 (0.1%)
+ Nipun Gupta 1 (0.1%)
+ Zhao Qiang 1 (0.1%)
+ Ioana Ciornei 1 (0.1%)
+ Roman Stratiienko 1 (0.1%)
+ Suman Anna 1 (0.1%)
+ Ashok Reddy Soma 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Ilies CHERGUI 1 (0.1%)
+ Seung-Woo Kim 1 (0.1%)
+ Guillermo Rodriguez 1 (0.1%)
+ Biju Das 1 (0.1%)
+ Volodymyr Babchuk 1 (0.1%)
+ Alex Nemirovsky 1 (0.1%)
+ Abbie Chang 1 (0.1%)
+ Aaron Tseng 1 (0.1%)
+ Yang Liu 1 (0.1%)
+ Teresa Remmet 1 (0.1%)
+ Martin Fuzzey 1 (0.1%)
+ Han Xu 1 (0.1%)
+ Martin Hundebøll 1 (0.1%)
+ Kai Stuhlemmer (ebee Engineering) 1 (0.1%)
+ David Bauer 1 (0.1%)
+ Campbell Suter 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ David Wu 1 (0.1%)
+ David Rivshin 1 (0.1%)
+ Ian Ray 1 (0.1%)
+ Matthias Schiffer 1 (0.1%)
+ Ryan Chen 1 (0.1%)
+ Dylan Hung 1 (0.1%)
+ Florian Klink 1 (0.1%)
+ Steve Bennett 1 (0.1%)
+ Joel Peshkin 1 (0.1%)
+ Corneliu Doban 1 (0.1%)
+ Marcin Juszkiewicz 1 (0.1%)
+ Artem Lapkin 1 (0.1%)
+ Felix Brack 1 (0.1%)
+ Praneeth Bajjuri 1 (0.1%)
+ Tomas Novotny 1 (0.1%)
+ Icenowy Zheng 1 (0.1%)
+ Pascal Vizeli 1 (0.1%)
+ Stefan Agner 1 (0.1%)
+ Vikhyat Goyal 1 (0.1%)
+ Harini Katakam 1 (0.1%)
+ Siva Durga Prasad Paladugu 1 (0.1%)
+ Adrian Fiergolski 1 (0.1%)
+ Lyle Franklin 1 (0.1%)
+ Anton Leontiev 1 (0.1%)
+ ================================= =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Tom Rini 19605 (13.8%)
+ Simon Glass 17340 (12.2%)
+ Heinrich Schuchardt 10305 (7.3%)
+ Adam Ford 6826 (4.8%)
+ Dario Binacchi 6048 (4.3%)
+ Tim Harvey 5842 (4.1%)
+ Weijie Gao 4501 (3.2%)
+ Lokesh Vutla 4408 (3.1%)
+ Jernej Skrabec 4219 (3.0%)
+ Fabio Estevam 4137 (2.9%)
+ Peng Fan 3871 (2.7%)
+ Chia-Wei, Wang 3182 (2.2%)
+ Niel Fourie 2917 (2.1%)
+ Teresa Remmet 2827 (2.0%)
+ AKASHI Takahiro 2634 (1.9%)
+ Neil Armstrong 2421 (1.7%)
+ Padmarao Begari 2101 (1.5%)
+ Patrick Delaunay 1799 (1.3%)
+ Kate Liu 1755 (1.2%)
+ Christian Hewitt 1731 (1.2%)
+ Ryan Chen 1574 (1.1%)
+ Aaron Tseng 1516 (1.1%)
+ Dylan Hung 1286 (0.9%)
+ Marek Szyprowski 1254 (0.9%)
+ Fabien Parent 1237 (0.9%)
+ Sughosh Ganu 1148 (0.8%)
+ Chee Hong Ang 1108 (0.8%)
+ Shawn Lin 1054 (0.7%)
+ Ilias Apalodimas 1015 (0.7%)
+ Pali Rohár 981 (0.7%)
+ Sean Anderson 813 (0.6%)
+ Li Jun 741 (0.5%)
+ Siew Chin Lim 737 (0.5%)
+ Biju Das 733 (0.5%)
+ Michael Walle 705 (0.5%)
+ Bin Meng 671 (0.5%)
+ Claudiu Manoil 666 (0.5%)
+ Faiz Abbas 653 (0.5%)
+ Marek Vasut 637 (0.4%)
+ Eugen Hristev 633 (0.4%)
+ Igor Opaniuk 630 (0.4%)
+ SkyLake.Huang 627 (0.4%)
+ Ying-Chun Liu (PaulLiu) 594 (0.4%)
+ Nicolas Saenz Julienne 565 (0.4%)
+ Alex Marginean 562 (0.4%)
+ Andre Przywara 539 (0.4%)
+ Michal Simek 533 (0.4%)
+ Stephen Carlson 519 (0.4%)
+ David Bauer 516 (0.4%)
+ Biwen Li 482 (0.3%)
+ Andre Heider 467 (0.3%)
+ Ovidiu Panait 456 (0.3%)
+ Jerome Brunet 455 (0.3%)
+ Jaehoon Chung 417 (0.3%)
+ Andy Shevchenko 351 (0.2%)
+ Claudiu Beznea 339 (0.2%)
+ Stefan Roese 254 (0.2%)
+ Pragnesh Patel 250 (0.2%)
+ Matthias Brugger 245 (0.2%)
+ Greg Gallagher 245 (0.2%)
+ Alexandru Gagniuc 240 (0.2%)
+ Alice Guo 227 (0.2%)
+ Praneeth Bajjuri 219 (0.2%)
+ Moses Christopher 208 (0.1%)
+ Corneliu Doban 190 (0.1%)
+ Patrice Chotard 161 (0.1%)
+ Abbie Chang 147 (0.1%)
+ Jorge Ramirez-Ortiz 138 (0.1%)
+ Holger Brunck 131 (0.1%)
+ Philippe Reynes 129 (0.1%)
+ T Karthik Reddy 118 (0.1%)
+ Marc Ferland 118 (0.1%)
+ Heiko Schocher 117 (0.1%)
+ Marek Behún 109 (0.1%)
+ Brandon Maier 106 (0.1%)
+ Zhao Qiang 105 (0.1%)
+ Eugeniu Rosca 96 (0.1%)
+ Sinan Akman 87 (0.1%)
+ Bharat Gooty 83 (0.1%)
+ Lad Prabhakar 80 (0.1%)
+ Roman Kovalivskyi 80 (0.1%)
+ Ley Foon Tan 76 (0.1%)
+ Hou Zhiqiang 75 (0.1%)
+ Reto Schneider 69 (0.0%)
+ Dennis Gilmore 64 (0.0%)
+ Ye Li 60 (0.0%)
+ Kory Maincent 60 (0.0%)
+ Suman Anna 59 (0.0%)
+ David Lechner 58 (0.0%)
+ Ioana Ciornei 58 (0.0%)
+ Moti Buskila 57 (0.0%)
+ Nicolas Ferre 56 (0.0%)
+ Vabhav Sharma 55 (0.0%)
+ Priyanka Jain 54 (0.0%)
+ Vladimir Oltean 54 (0.0%)
+ Phil Sutter 50 (0.0%)
+ Alex Nemirovsky 48 (0.0%)
+ Rasmus Villemoes 46 (0.0%)
+ Aswath Govindraju 45 (0.0%)
+ Etienne Carriere 43 (0.0%)
+ Lyle Franklin 36 (0.0%)
+ Wasim Khan 35 (0.0%)
+ Hongwei Zhang 35 (0.0%)
+ Campbell Suter 35 (0.0%)
+ Tomas Novotny 35 (0.0%)
+ Aleksandar Gerasimovski 32 (0.0%)
+ Peter Robinson 32 (0.0%)
+ Chunfeng Yun 27 (0.0%)
+ Jean-Philippe ROMAIN 26 (0.0%)
+ Kuldeep Singh 25 (0.0%)
+ Vikhyat Goyal 25 (0.0%)
+ Andrey Zhizhikin 24 (0.0%)
+ Siva Durga Prasad Paladugu 24 (0.0%)
+ Chris Packham 23 (0.0%)
+ Tudor Ambarus 23 (0.0%)
+ Harini Katakam 23 (0.0%)
+ Joel Stanley 22 (0.0%)
+ Icenowy Zheng 21 (0.0%)
+ Pascal Vizeli 21 (0.0%)
+ Harm Berntsen 20 (0.0%)
+ Nishanth Menon 19 (0.0%)
+ Philipp Tomsich 18 (0.0%)
+ Frieder Schrempf 18 (0.0%)
+ Rajesh Bhagat 17 (0.0%)
+ Robert Marko 15 (0.0%)
+ Oleksandr Suvorov 15 (0.0%)
+ Alex Leibovich 15 (0.0%)
+ Vignesh Raghavendra 15 (0.0%)
+ Samuel Holland 15 (0.0%)
+ Artem Lapkin 15 (0.0%)
+ Peter Bergin 14 (0.0%)
+ Dalon Westergreen 14 (0.0%)
+ Stefan Brüns 14 (0.0%)
+ Ian Ray 14 (0.0%)
+ Joel Peshkin 14 (0.0%)
+ Anton Leontiev 14 (0.0%)
+ Mathew McBride 13 (0.0%)
+ Stefan Agner 13 (0.0%)
+ Kever Yang 12 (0.0%)
+ Baruch Siach 12 (0.0%)
+ Maxim Kochetkov 10 (0.0%)
+ Matthias Schiffer 10 (0.0%)
+ Mark Kettenis 9 (0.0%)
+ Gary Bisson 9 (0.0%)
+ Ravik Hasija 9 (0.0%)
+ Han Xu 8 (0.0%)
+ Minkyu Kang 7 (0.0%)
+ Alper Nebi Yasak 7 (0.0%)
+ Ramon Fried 7 (0.0%)
+ Hugh Cole-Baker 7 (0.0%)
+ Jessica Clarke 7 (0.0%)
+ Sujeet Baranwal 7 (0.0%)
+ Roger Pau Monne 6 (0.0%)
+ Haibo Chen 6 (0.0%)
+ Tobias Schramm 6 (0.0%)
+ Yannick Fertre 5 (0.0%)
+ Yuezhang Mo 5 (0.0%)
+ Stanislav Pinchuk 5 (0.0%)
+ Klaus Heinrich Kiwi 4 (0.0%)
+ Su Baocheng 4 (0.0%)
+ Diego Sueiro 4 (0.0%)
+ Stephen Warren 4 (0.0%)
+ Seung-Woo Kim 4 (0.0%)
+ Steve Bennett 4 (0.0%)
+ Stefan Bosch 3 (0.0%)
+ Ilies CHERGUI 3 (0.0%)
+ David Rivshin 3 (0.0%)
+ Daniel Golle 2 (0.0%)
+ Qu Wenruo 2 (0.0%)
+ Jesper Schmitz Mouridsen 2 (0.0%)
+ Fabrice GIRARDOT 2 (0.0%)
+ Nipun Gupta 2 (0.0%)
+ Roman Stratiienko 2 (0.0%)
+ Guillermo Rodriguez 2 (0.0%)
+ Volodymyr Babchuk 2 (0.0%)
+ Kai Stuhlemmer (ebee Engineering) 2 (0.0%)
+ David Wu 2 (0.0%)
+ Felix Brack 2 (0.0%)
+ Frank Wunderlich 1 (0.0%)
+ schspa 1 (0.0%)
+ Bernhard Kirchen 1 (0.0%)
+ Hauke Mehrtens 1 (0.0%)
+ heaterC 1 (0.0%)
+ Kostya Porotchkin 1 (0.0%)
+ Vincent Stehlé 1 (0.0%)
+ Asherah Connor 1 (0.0%)
+ Ashok Reddy Soma 1 (0.0%)
+ Yang Liu 1 (0.0%)
+ Martin Fuzzey 1 (0.0%)
+ Martin Hundebøll 1 (0.0%)
+ Atish Patra 1 (0.0%)
+ Florian Klink 1 (0.0%)
+ Marcin Juszkiewicz 1 (0.0%)
+ Adrian Fiergolski 1 (0.0%)
+ ================================= =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 19221 (39.7%)
+ Pali Rohár 387 (0.8%)
+ Jaehoon Chung 184 (0.4%)
+ Alice Guo 67 (0.1%)
+ Roman Kovalivskyi 51 (0.1%)
+ Nicolas Ferre 46 (0.1%)
+ Marc Ferland 43 (0.1%)
+ Priyanka Jain 43 (0.1%)
+ Stephen Carlson 42 (0.1%)
+ Brandon Maier 25 (0.1%)
+ Patrice Chotard 23 (0.0%)
+ Kuldeep Singh 16 (0.0%)
+ Samuel Holland 15 (0.0%)
+ Etienne Carriere 12 (0.0%)
+ Oleksandr Suvorov 11 (0.0%)
+ David Lechner 7 (0.0%)
+ Peter Robinson 6 (0.0%)
+ Mathew McBride 5 (0.0%)
+ Jessica Clarke 5 (0.0%)
+ Peter Bergin 1 (0.0%)
+ Hugh Cole-Baker 1 (0.0%)
+ Roger Pau Monne 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 245)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andre Przywara 28 (11.4%)
+ Peng Fan 27 (11.0%)
+ Neil Armstrong 26 (10.6%)
+ Aswath Govindraju 20 (8.2%)
+ Michal Simek 18 (7.3%)
+ Matthias Brugger 17 (6.9%)
+ Marek Behún 12 (4.9%)
+ Priyanka Jain 8 (3.3%)
+ Siew Chin Lim 7 (2.9%)
+ Bin Meng 6 (2.4%)
+ Patrick Delaunay 6 (2.4%)
+ Heinrich Schuchardt 6 (2.4%)
+ Roman Kovalivskyi 5 (2.0%)
+ Minkyu Kang 5 (2.0%)
+ Tom Rini 4 (1.6%)
+ Jaehoon Chung 4 (1.6%)
+ Alex Nemirovsky 4 (1.6%)
+ Vladimir Oltean 4 (1.6%)
+ Jernej Skrabec 4 (1.6%)
+ Claudiu Manoil 3 (1.2%)
+ Simon Glass 3 (1.2%)
+ Rayagonda Kokatanur 2 (0.8%)
+ Rainer Boschung 2 (0.8%)
+ Chia-Wei, Wang 2 (0.8%)
+ Pali Rohár 1 (0.4%)
+ Jagan Teki 1 (0.4%)
+ Jane Wan 1 (0.4%)
+ Boris Brezillon 1 (0.4%)
+ Bruce Monroe 1 (0.4%)
+ Arie Haenel 1 (0.4%)
+ Julien Lenoir 1 (0.4%)
+ Mark Brown 1 (0.4%)
+ Valentin Longchamp 1 (0.4%)
+ Peter Chen 1 (0.4%)
+ Sherry Sun 1 (0.4%)
+ Sebastian Reichel 1 (0.4%)
+ Kevin Scholz 1 (0.4%)
+ Stefan Agner 1 (0.4%)
+ Wasim Khan 1 (0.4%)
+ Tudor Ambarus 1 (0.4%)
+ Reto Schneider 1 (0.4%)
+ Abbie Chang 1 (0.4%)
+ Michael Walle 1 (0.4%)
+ Alex Marginean 1 (0.4%)
+ Marek Szyprowski 1 (0.4%)
+ Tim Harvey 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 886)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 241 (27.2%)
+ Priyanka Jain 117 (13.2%)
+ Patrice Chotard 64 (7.2%)
+ Stefan Roese 61 (6.9%)
+ Bin Meng 54 (6.1%)
+ Jaehoon Chung 37 (4.2%)
+ Andre Przywara 25 (2.8%)
+ Peng Fan 18 (2.0%)
+ Patrick Delaunay 17 (1.9%)
+ Lukasz Majewski 17 (1.9%)
+ Heiko Schocher 16 (1.8%)
+ Heinrich Schuchardt 14 (1.6%)
+ Tom Rini 13 (1.5%)
+ Samuel Holland 13 (1.5%)
+ Jagan Teki 10 (1.1%)
+ Kostya Porotchkin 10 (1.1%)
+ Fabio Estevam 10 (1.1%)
+ Jernej Skrabec 8 (0.9%)
+ Ramon Fried 8 (0.9%)
+ Ye Li 8 (0.9%)
+ Peter Chen 7 (0.8%)
+ Anup Patel 7 (0.8%)
+ Kever Yang 7 (0.8%)
+ Neil Armstrong 6 (0.7%)
+ Andy Shevchenko 6 (0.7%)
+ Ryan Chen 6 (0.7%)
+ Marek Behún 5 (0.6%)
+ Vladimir Oltean 5 (0.6%)
+ Pratyush Yadav 5 (0.6%)
+ Rick Chen 5 (0.6%)
+ Sean Anderson 5 (0.6%)
+ Qu Wenruo 4 (0.5%)
+ Paulo Alcantara (SUSE) 4 (0.5%)
+ Nadav Haklai 3 (0.3%)
+ Ley Foon Tan 3 (0.3%)
+ Claudiu Manoil 2 (0.2%)
+ Wasim Khan 2 (0.2%)
+ Peter Robinson 2 (0.2%)
+ Andrey Zhizhikin 2 (0.2%)
+ Michael Trimarchi 2 (0.2%)
+ Leo Liang 2 (0.2%)
+ Jens Wiklander 2 (0.2%)
+ Christian Gmeiner 2 (0.2%)
+ Torsten Duwe 2 (0.2%)
+ Alex Leibovich 2 (0.2%)
+ Igor Opaniuk 2 (0.2%)
+ Biju Das 2 (0.2%)
+ Minkyu Kang 1 (0.1%)
+ Pali Rohár 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Etienne Carriere 1 (0.1%)
+ Ashok Reddy Soma 1 (0.1%)
+ Stefan Chulski 1 (0.1%)
+ Patrick Wildt 1 (0.1%)
+ Andy Wu 1 (0.1%)
+ Laurentiu Tudor 1 (0.1%)
+ Fugang Duan 1 (0.1%)
+ Madalin Bucur 1 (0.1%)
+ Igal Liberman 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Pavel Machek 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ Stephen Warren 1 (0.1%)
+ Sujeet Baranwal 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Moti Buskila 1 (0.1%)
+ Marek Vasut 1 (0.1%)
+ Pragnesh Patel 1 (0.1%)
+ Ilias Apalodimas 1 (0.1%)
+ Nicolas Saenz Julienne 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 83)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Chris Packham 20 (24.1%)
+ Peter Robinson 17 (20.5%)
+ Jaehoon Chung 5 (6.0%)
+ faqiang.zhu 5 (6.0%)
+ Bin Meng 4 (4.8%)
+ Jernej Skrabec 4 (4.8%)
+ Andre Przywara 2 (2.4%)
+ Samuel Holland 2 (2.4%)
+ Wasim Khan 2 (2.4%)
+ Patrice Chotard 1 (1.2%)
+ Patrick Delaunay 1 (1.2%)
+ Heinrich Schuchardt 1 (1.2%)
+ Tom Rini 1 (1.2%)
+ Ye Li 1 (1.2%)
+ Neil Armstrong 1 (1.2%)
+ Andy Shevchenko 1 (1.2%)
+ Andrey Zhizhikin 1 (1.2%)
+ Michael Walle 1 (1.2%)
+ Stephen Warren 1 (1.2%)
+ Atish Patra 1 (1.2%)
+ sa_ip-sw-jenkins 1 (1.2%)
+ Suneel Garapati 1 (1.2%)
+ Oliver Graute 1 (1.2%)
+ iSoC Platform CI 1 (1.2%)
+ Chrstopher Obbard 1 (1.2%)
+ Miquel Raynal 1 (1.2%)
+ Ondrej Jirman 1 (1.2%)
+ Thomas Graichen 1 (1.2%)
+ Priit Laes 1 (1.2%)
+ Icenowy Zheng 1 (1.2%)
+ Dario Binacchi 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 83)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Nicolas Saenz Julienne 13 (15.7%)
+ Andre Przywara 9 (10.8%)
+ Marek Behún 7 (8.4%)
+ Moti Buskila 7 (8.4%)
+ Marek Szyprowski 5 (6.0%)
+ Li Jun 5 (6.0%)
+ Padmarao Begari 4 (4.8%)
+ Matthias Brugger 3 (3.6%)
+ Jernej Skrabec 2 (2.4%)
+ Heinrich Schuchardt 2 (2.4%)
+ Fabio Estevam 2 (2.4%)
+ Ramon Fried 2 (2.4%)
+ Alex Leibovich 2 (2.4%)
+ Sujeet Baranwal 2 (2.4%)
+ Marek Vasut 2 (2.4%)
+ Patrice Chotard 1 (1.2%)
+ Tom Rini 1 (1.2%)
+ Neil Armstrong 1 (1.2%)
+ Andy Shevchenko 1 (1.2%)
+ Michael Walle 1 (1.2%)
+ Dario Binacchi 1 (1.2%)
+ Kostya Porotchkin 1 (1.2%)
+ Sean Anderson 1 (1.2%)
+ Pali Rohár 1 (1.2%)
+ Ilias Apalodimas 1 (1.2%)
+ Stephen Carlson 1 (1.2%)
+ heaterC 1 (1.2%)
+ Hou Zhiqiang 1 (1.2%)
+ Vignesh Raghavendra 1 (1.2%)
+ Baruch Siach 1 (1.2%)
+ Andre Heider 1 (1.2%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 50)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Bruce Monroe 7 (14.0%)
+ Arie Haenel 7 (14.0%)
+ Julien Lenoir 7 (14.0%)
+ Heinrich Schuchardt 6 (12.0%)
+ Kever Yang 3 (6.0%)
+ Peter Robinson 2 (4.0%)
+ Bin Meng 2 (4.0%)
+ Simon Glass 2 (4.0%)
+ Nicolas Saenz Julienne 1 (2.0%)
+ Atish Patra 1 (2.0%)
+ Suneel Garapati 1 (2.0%)
+ Paulo Alcantara (SUSE) 1 (2.0%)
+ Peter Bergin 1 (2.0%)
+ Jesper Schmitz Mouridsen 1 (2.0%)
+ Lukas Rusak 1 (2.0%)
+ Markus Reichl 1 (2.0%)
+ Dean Saridakis 1 (2.0%)
+ Thorsten Spille 1 (2.0%)
+ Junghoon Kim 1 (2.0%)
+ Alexander von Gluck IV 1 (2.0%)
+ Moshe, Yaniv 1 (2.0%)
+ Rasmus Villemoes 1 (2.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 50)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 28 (56.0%)
+ Heinrich Schuchardt 6 (12.0%)
+ Tom Rini 3 (6.0%)
+ Fabio Estevam 2 (4.0%)
+ Ovidiu Panait 2 (4.0%)
+ Andre Przywara 1 (2.0%)
+ Ramon Fried 1 (2.0%)
+ Andy Shevchenko 1 (2.0%)
+ Ilias Apalodimas 1 (2.0%)
+ Baruch Siach 1 (2.0%)
+ Stephen Warren 1 (2.0%)
+ Priyanka Jain 1 (2.0%)
+ Michal Simek 1 (2.0%)
+ Seung-Woo Kim 1 (2.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 748 (44.7%)
+ Google, Inc. 285 (17.0%)
+ NXP 124 (7.4%)
+ ST Microelectronics 103 (6.1%)
+ Intel 57 (3.4%)
+ Samsung 45 (2.7%)
+ Linaro 43 (2.6%)
+ DENX Software Engineering 42 (2.5%)
+ Konsulko Group 40 (2.4%)
+ Texas Instruments 39 (2.3%)
+ Wind River 25 (1.5%)
+ AMD 22 (1.3%)
+ BayLibre SAS 22 (1.3%)
+ ARM 18 (1.1%)
+ Marvell 11 (0.7%)
+ SUSE 11 (0.7%)
+ Xilinx 11 (0.7%)
+ Rockchip 6 (0.4%)
+ IBM 4 (0.2%)
+ Renesas Electronics 4 (0.2%)
+ Bootlin 3 (0.2%)
+ Broadcom 3 (0.2%)
+ Sony 2 (0.1%)
+ Boundary Devices 2 (0.1%)
+ Toradex 2 (0.1%)
+ General Electric 1 (0.1%)
+ Phytec 1 (0.1%)
+ Siemens 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 65641 (46.3%)
+ Konsulko Group 19605 (13.8%)
+ Google, Inc. 17340 (12.2%)
+ NXP 7103 (5.0%)
+ Texas Instruments 5418 (3.8%)
+ Linaro 5391 (3.8%)
+ BayLibre SAS 4113 (2.9%)
+ DENX Software Engineering 3925 (2.8%)
+ Phytec 2827 (2.0%)
+ Intel 2286 (1.6%)
+ ST Microelectronics 2034 (1.4%)
+ Samsung 1682 (1.2%)
+ Rockchip 1068 (0.8%)
+ Renesas Electronics 813 (0.6%)
+ ARM 543 (0.4%)
+ AMD 533 (0.4%)
+ Wind River 456 (0.3%)
+ Broadcom 287 (0.2%)
+ SUSE 247 (0.2%)
+ Xilinx 191 (0.1%)
+ Marvell 80 (0.1%)
+ Bootlin 60 (0.0%)
+ Toradex 15 (0.0%)
+ General Electric 14 (0.0%)
+ Boundary Devices 9 (0.0%)
+ Sony 5 (0.0%)
+ IBM 4 (0.0%)
+ Siemens 4 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 245)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 50 (20.4%)
+ NXP 46 (18.8%)
+ ARM 28 (11.4%)
+ BayLibre SAS 26 (10.6%)
+ Texas Instruments 21 (8.6%)
+ Xilinx 18 (7.3%)
+ SUSE 17 (6.9%)
+ Intel 10 (4.1%)
+ Samsung 10 (4.1%)
+ ST Microelectronics 6 (2.4%)
+ Konsulko Group 4 (1.6%)
+ Google, Inc. 3 (1.2%)
+ Broadcom 2 (0.8%)
+ Bootlin 1 (0.4%)
+ Amarula Solutions 1 (0.4%)
+ Collabora Ltd. 1 (0.4%)
+ Nokia 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 194)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 110 (56.7%)
+ NXP 19 (9.8%)
+ Texas Instruments 7 (3.6%)
+ Xilinx 5 (2.6%)
+ Intel 5 (2.6%)
+ ST Microelectronics 5 (2.6%)
+ Samsung 4 (2.1%)
+ Linaro 4 (2.1%)
+ DENX Software Engineering 4 (2.1%)
+ Marvell 4 (2.1%)
+ BayLibre SAS 3 (1.5%)
+ Broadcom 3 (1.5%)
+ Rockchip 3 (1.5%)
+ ARM 2 (1.0%)
+ SUSE 2 (1.0%)
+ Renesas Electronics 2 (1.0%)
+ Konsulko Group 1 (0.5%)
+ Google, Inc. 1 (0.5%)
+ Bootlin 1 (0.5%)
+ Phytec 1 (0.5%)
+ AMD 1 (0.5%)
+ Wind River 1 (0.5%)
+ Toradex 1 (0.5%)
+ General Electric 1 (0.5%)
+ Boundary Devices 1 (0.5%)
+ Sony 1 (0.5%)
+ IBM 1 (0.5%)
+ Siemens 1 (0.5%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2021.07.rst b/doc/develop/statistics/u-boot-stats-v2021.07.rst
new file mode 100644
index 0000000..e086220
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2021.07.rst
@@ -0,0 +1,833 @@
+:orphan:
+
+Release Statistics for U-Boot v2021.07
+======================================
+
+* Processed 1730 csets from 187 developers
+
+* 30 employers found
+
+* A total of 402449 lines added, 82710 removed (delta 319739)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 293 (16.9%)
+ Aaron Williams 90 (5.2%)
+ Tom Rini 81 (4.7%)
+ Heinrich Schuchardt 66 (3.8%)
+ Bin Meng 64 (3.7%)
+ Marek Vasut 59 (3.4%)
+ Stefan Roese 51 (2.9%)
+ Marek Behún 48 (2.8%)
+ Sean Anderson 43 (2.5%)
+ Patrick Delaunay 38 (2.2%)
+ Neil Armstrong 36 (2.1%)
+ Giulio Benetti 34 (2.0%)
+ Dave Gerlach 31 (1.8%)
+ Alexandru Gagniuc 30 (1.7%)
+ Michal Simek 27 (1.6%)
+ Ilias Apalodimas 26 (1.5%)
+ Tim Harvey 26 (1.5%)
+ Peng Fan 22 (1.3%)
+ Peter Robinson 22 (1.3%)
+ Dario Binacchi 22 (1.3%)
+ Lokesh Vutla 19 (1.1%)
+ Ye Li 18 (1.0%)
+ Rasmus Villemoes 16 (0.9%)
+ Camelia Groza 15 (0.9%)
+ Vignesh Raghavendra 15 (0.9%)
+ Jagan Teki 14 (0.8%)
+ Pali Rohár 13 (0.8%)
+ Breno Lima 13 (0.8%)
+ Aleksandar Gerasimovski 12 (0.7%)
+ Andre Przywara 12 (0.7%)
+ Grzegorz Jaszczyk 12 (0.7%)
+ Weijie Gao 11 (0.6%)
+ Michael Walle 11 (0.6%)
+ Green Wan 11 (0.6%)
+ Igal Liberman 11 (0.6%)
+ Jernej Skrabec 11 (0.6%)
+ Siew Chin Lim 11 (0.6%)
+ T Karthik Reddy 10 (0.6%)
+ Kory Maincent 10 (0.6%)
+ Jaehoon Chung 9 (0.5%)
+ Harm Berntsen 9 (0.5%)
+ Kostya Porotchkin 9 (0.5%)
+ Igor Opaniuk 9 (0.5%)
+ Arnaud Patard (Rtp) 9 (0.5%)
+ Fabio Estevam 8 (0.5%)
+ Heiko Stuebner 8 (0.5%)
+ Samuel Holland 7 (0.4%)
+ Asherah Connor 7 (0.4%)
+ dillon min 7 (0.4%)
+ Andrey Zhizhikin 6 (0.3%)
+ Ashok Reddy Soma 6 (0.3%)
+ Hai Pham 6 (0.3%)
+ Biju Das 6 (0.3%)
+ Phil Sutter 6 (0.3%)
+ Priyanka Jain 5 (0.3%)
+ Yangbo Lu 5 (0.3%)
+ Anatolij Gustschin 5 (0.3%)
+ Marcin Wojtas 5 (0.3%)
+ Stefan Chulski 5 (0.3%)
+ Ian Ray 5 (0.3%)
+ Jose Marinho 5 (0.3%)
+ Aymen Sghaier 5 (0.3%)
+ Fabien Parent 5 (0.3%)
+ Lad Prabhakar 5 (0.3%)
+ Adam Ford 4 (0.2%)
+ Masahisa Kojima 4 (0.2%)
+ Alper Nebi Yasak 4 (0.2%)
+ Suman Anna 4 (0.2%)
+ Sughosh Ganu 4 (0.2%)
+ Ying-Chun Liu (PaulLiu) 4 (0.2%)
+ Wasim Khan 4 (0.2%)
+ Etienne Carriere 4 (0.2%)
+ Trevor Woerner 4 (0.2%)
+ Jorge Ramirez-Ortiz 4 (0.2%)
+ Harald Seiler 4 (0.2%)
+ Da Xue 3 (0.2%)
+ Masami Hiramatsu 3 (0.2%)
+ Andy Shevchenko 3 (0.2%)
+ Ley Foon Tan 3 (0.2%)
+ Hou Zhiqiang 3 (0.2%)
+ Vladimir Oltean 3 (0.2%)
+ Aswath Govindraju 3 (0.2%)
+ Ben Peled 3 (0.2%)
+ Nishanth Menon 3 (0.2%)
+ Yuichiro Goto 3 (0.2%)
+ Haibo Chen 3 (0.2%)
+ Franck LENORMAND 3 (0.2%)
+ Roger Pau Monné 3 (0.2%)
+ Kunihiko Hayashi 2 (0.1%)
+ Matt Merhar 2 (0.1%)
+ Wesley Sheng 2 (0.1%)
+ Oleh Kravchenko 2 (0.1%)
+ Daniil Stas 2 (0.1%)
+ Rick Chen 2 (0.1%)
+ Mian Yousaf Kaukab 2 (0.1%)
+ Oleksandr Suvorov 2 (0.1%)
+ Horatiu Vultur 2 (0.1%)
+ Daniel Schwierzeck 2 (0.1%)
+ Saeed Nowshadi 2 (0.1%)
+ jinghua 2 (0.1%)
+ Keerthy 2 (0.1%)
+ Farhan Ali 2 (0.1%)
+ Ilko Iliev 2 (0.1%)
+ Sebastian Reichel 2 (0.1%)
+ Chen Guanqiao 2 (0.1%)
+ Qu Wenruo 2 (0.1%)
+ Ivan Uvarov 2 (0.1%)
+ Stefan Agner 2 (0.1%)
+ Eugen Hristev 2 (0.1%)
+ Brandon Maier 2 (0.1%)
+ Icenowy Zheng 2 (0.1%)
+ Wolfgang Wallner 2 (0.1%)
+ Joel Stanley 2 (0.1%)
+ Clement Faure 2 (0.1%)
+ Utkarsh Gupta 2 (0.1%)
+ Wagner Popov dos Santos 2 (0.1%)
+ Amit Kumar Mahapatra 2 (0.1%)
+ Christoph Muellner 2 (0.1%)
+ Sam Shih 2 (0.1%)
+ Claudiu Beznea 2 (0.1%)
+ Adarsh Babu Kalepalli 1 (0.1%)
+ David Lamparter 1 (0.1%)
+ Jan Kiszka 1 (0.1%)
+ Christian Melki 1 (0.1%)
+ Reuben Dowle 1 (0.1%)
+ Dimitri John Ledkov 1 (0.1%)
+ Jassi Brar 1 (0.1%)
+ Ran Wang 1 (0.1%)
+ Lasse Klok Mikkelsen 1 (0.1%)
+ Biwen Li 1 (0.1%)
+ Kuldeep Singh 1 (0.1%)
+ Chaitanya Sakinam 1 (0.1%)
+ Jiafei Pan 1 (0.1%)
+ Priyanka Singh 1 (0.1%)
+ Manish Tomar 1 (0.1%)
+ Adrian Fiergolski 1 (0.1%)
+ Joao Marcos Costa 1 (0.1%)
+ Navin Sankar Velliangiri 1 (0.1%)
+ Oliver Graute 1 (0.1%)
+ João Loureiro 1 (0.1%)
+ Patrice Chotard 1 (0.1%)
+ Kishon Vijay Abraham I 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Kever Yang 1 (0.1%)
+ Grzegorz Szymaszek 1 (0.1%)
+ Christoph Niedermaier 1 (0.1%)
+ Faiz Abbas 1 (0.1%)
+ Raviteja Narayanam 1 (0.1%)
+ Peng Wang 1 (0.1%)
+ Ken Ma 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Vincent Chen 1 (0.1%)
+ Dylan Jhong 1 (0.1%)
+ Niko Mauno 1 (0.1%)
+ Priit Laes 1 (0.1%)
+ Evan Benn 1 (0.1%)
+ Christine Gharzuzi 1 (0.1%)
+ Omri Itach 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ AKASHI Takahiro 1 (0.1%)
+ Joel Peshkin 1 (0.1%)
+ Denys Drozdov 1 (0.1%)
+ Suneel Garapati 1 (0.1%)
+ Karl Beldan 1 (0.1%)
+ Reinoud Zandijk 1 (0.1%)
+ Manuel Reis 1 (0.1%)
+ Martin Fuzzey 1 (0.1%)
+ Arnaud Ferraris 1 (0.1%)
+ Claudiu Manoil 1 (0.1%)
+ Alex Marginean 1 (0.1%)
+ Chan, Donald 1 (0.1%)
+ Stefan Herbrechtsmeier 1 (0.1%)
+ Sylwester Nawrocki 1 (0.1%)
+ Max Krummenacher 1 (0.1%)
+ Niel Fourie 1 (0.1%)
+ Philippe Schenker 1 (0.1%)
+ Clement Le Marquis 1 (0.1%)
+ Jacky Bai 1 (0.1%)
+ haidong.zheng 1 (0.1%)
+ Sherry Sun 1 (0.1%)
+ Alexandre Vicenzi 1 (0.1%)
+ Xiaobo Tian 1 (0.1%)
+ Robert Hancock 1 (0.1%)
+ Vincent Stehlé 1 (0.1%)
+ Martin Townsend 1 (0.1%)
+ Nicolas Boichat 1 (0.1%)
+ Samuel Dionne-Riel 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Aaron Williams 237557 (52.4%)
+ Dave Gerlach 45086 (10.0%)
+ Tom Rini 44582 (9.8%)
+ Simon Glass 14090 (3.1%)
+ Tim Harvey 11805 (2.6%)
+ Ying-Chun Liu (PaulLiu) 9433 (2.1%)
+ Michal Simek 8190 (1.8%)
+ Green Wan 5339 (1.2%)
+ Stefan Roese 5268 (1.2%)
+ Jagan Teki 5124 (1.1%)
+ Ilko Iliev 4015 (0.9%)
+ Ye Li 3455 (0.8%)
+ Marek Vasut 3434 (0.8%)
+ Kostya Porotchkin 3111 (0.7%)
+ Neil Armstrong 3058 (0.7%)
+ Peter Robinson 3031 (0.7%)
+ Lokesh Vutla 2780 (0.6%)
+ Peng Fan 2716 (0.6%)
+ Vignesh Raghavendra 2052 (0.5%)
+ Oliver Graute 1469 (0.3%)
+ Grzegorz Jaszczyk 1467 (0.3%)
+ Bin Meng 1268 (0.3%)
+ Aleksandar Gerasimovski 1256 (0.3%)
+ Ilias Apalodimas 1215 (0.3%)
+ Jassi Brar 1143 (0.3%)
+ dillon min 1126 (0.2%)
+ Heinrich Schuchardt 1065 (0.2%)
+ Camelia Groza 1056 (0.2%)
+ Oleh Kravchenko 1043 (0.2%)
+ Jose Marinho 970 (0.2%)
+ Marek Behún 957 (0.2%)
+ Dario Binacchi 944 (0.2%)
+ Alexandru Gagniuc 941 (0.2%)
+ Lad Prabhakar 934 (0.2%)
+ Navin Sankar Velliangiri 908 (0.2%)
+ Sean Anderson 878 (0.2%)
+ Kory Maincent 838 (0.2%)
+ Asherah Connor 825 (0.2%)
+ Igal Liberman 796 (0.2%)
+ Heiko Stuebner 772 (0.2%)
+ Etienne Carriere 760 (0.2%)
+ Ivan Uvarov 750 (0.2%)
+ Daniel Schwierzeck 704 (0.2%)
+ Patrick Delaunay 700 (0.2%)
+ Fabien Parent 672 (0.1%)
+ Andre Przywara 630 (0.1%)
+ Biju Das 622 (0.1%)
+ Jacky Bai 608 (0.1%)
+ Fabio Estevam 602 (0.1%)
+ Breno Lima 523 (0.1%)
+ Alex Marginean 490 (0.1%)
+ Jaehoon Chung 446 (0.1%)
+ Siew Chin Lim 436 (0.1%)
+ Giulio Benetti 415 (0.1%)
+ T Karthik Reddy 366 (0.1%)
+ Masahisa Kojima 358 (0.1%)
+ Pali Rohár 333 (0.1%)
+ Claudiu Manoil 329 (0.1%)
+ Clement Faure 299 (0.1%)
+ Jorge Ramirez-Ortiz 260 (0.1%)
+ Keerthy 239 (0.1%)
+ Harm Berntsen 238 (0.1%)
+ Alper Nebi Yasak 226 (0.0%)
+ Rasmus Villemoes 224 (0.0%)
+ Xiaobo Tian 223 (0.0%)
+ Heiko Schocher 215 (0.0%)
+ Chaitanya Sakinam 207 (0.0%)
+ Harald Seiler 200 (0.0%)
+ Stefan Chulski 189 (0.0%)
+ Phil Sutter 187 (0.0%)
+ Adam Ford 181 (0.0%)
+ haidong.zheng 179 (0.0%)
+ Arnaud Patard (Rtp) 177 (0.0%)
+ Igor Opaniuk 176 (0.0%)
+ Trevor Woerner 165 (0.0%)
+ Weijie Gao 154 (0.0%)
+ Jernej Skrabec 154 (0.0%)
+ Evan Benn 144 (0.0%)
+ Yangbo Lu 143 (0.0%)
+ Michael Walle 138 (0.0%)
+ Icenowy Zheng 131 (0.0%)
+ Alexandre Vicenzi 128 (0.0%)
+ Chris Packham 114 (0.0%)
+ Reinoud Zandijk 110 (0.0%)
+ Joel Peshkin 105 (0.0%)
+ Marcin Wojtas 102 (0.0%)
+ Chan, Donald 102 (0.0%)
+ Hai Pham 98 (0.0%)
+ Ashok Reddy Soma 97 (0.0%)
+ Adarsh Babu Kalepalli 88 (0.0%)
+ Mian Yousaf Kaukab 83 (0.0%)
+ Nishanth Menon 80 (0.0%)
+ Aymen Sghaier 76 (0.0%)
+ jinghua 69 (0.0%)
+ Suman Anna 67 (0.0%)
+ Max Krummenacher 66 (0.0%)
+ Andrey Zhizhikin 63 (0.0%)
+ Brandon Maier 62 (0.0%)
+ Joel Stanley 61 (0.0%)
+ Samuel Holland 58 (0.0%)
+ Farhan Ali 57 (0.0%)
+ Chen Guanqiao 55 (0.0%)
+ Ken Ma 55 (0.0%)
+ Vladimir Oltean 47 (0.0%)
+ Haibo Chen 45 (0.0%)
+ Utkarsh Gupta 45 (0.0%)
+ Horatiu Vultur 42 (0.0%)
+ Clement Le Marquis 41 (0.0%)
+ Sebastian Reichel 38 (0.0%)
+ Franck LENORMAND 36 (0.0%)
+ Jiafei Pan 36 (0.0%)
+ Anatolij Gustschin 34 (0.0%)
+ Wagner Popov dos Santos 29 (0.0%)
+ Qu Wenruo 28 (0.0%)
+ Claudiu Beznea 28 (0.0%)
+ Aswath Govindraju 27 (0.0%)
+ Sherry Sun 27 (0.0%)
+ Ian Ray 26 (0.0%)
+ Omri Itach 26 (0.0%)
+ Sughosh Ganu 25 (0.0%)
+ Oleksandr Suvorov 24 (0.0%)
+ Eugen Hristev 23 (0.0%)
+ Niko Mauno 21 (0.0%)
+ Andy Shevchenko 19 (0.0%)
+ Hou Zhiqiang 18 (0.0%)
+ Masami Hiramatsu 17 (0.0%)
+ Robert Hancock 17 (0.0%)
+ Yuichiro Goto 16 (0.0%)
+ Adrian Fiergolski 16 (0.0%)
+ Daniil Stas 15 (0.0%)
+ Sam Shih 15 (0.0%)
+ Arnaud Ferraris 15 (0.0%)
+ Christoph Muellner 13 (0.0%)
+ Stefan Agner 12 (0.0%)
+ Wolfgang Wallner 12 (0.0%)
+ Reuben Dowle 12 (0.0%)
+ Karl Beldan 12 (0.0%)
+ Vincent Chen 11 (0.0%)
+ Priyanka Jain 10 (0.0%)
+ Joao Marcos Costa 10 (0.0%)
+ Wasim Khan 9 (0.0%)
+ Da Xue 9 (0.0%)
+ Ben Peled 9 (0.0%)
+ Kunihiko Hayashi 9 (0.0%)
+ Saeed Nowshadi 9 (0.0%)
+ Amit Kumar Mahapatra 9 (0.0%)
+ Priit Laes 9 (0.0%)
+ Stefan Herbrechtsmeier 9 (0.0%)
+ Dimitri John Ledkov 8 (0.0%)
+ João Loureiro 8 (0.0%)
+ Dylan Jhong 8 (0.0%)
+ Martin Townsend 8 (0.0%)
+ Ley Foon Tan 7 (0.0%)
+ Ran Wang 7 (0.0%)
+ Priyanka Singh 7 (0.0%)
+ Raviteja Narayanam 6 (0.0%)
+ Rick Chen 5 (0.0%)
+ Niel Fourie 5 (0.0%)
+ David Lamparter 4 (0.0%)
+ Lasse Klok Mikkelsen 4 (0.0%)
+ Patrice Chotard 4 (0.0%)
+ Grzegorz Szymaszek 4 (0.0%)
+ Christine Gharzuzi 4 (0.0%)
+ Vincent Stehlé 4 (0.0%)
+ Roger Pau Monné 3 (0.0%)
+ Denys Drozdov 3 (0.0%)
+ Suneel Garapati 3 (0.0%)
+ Martin Fuzzey 3 (0.0%)
+ Nicolas Boichat 3 (0.0%)
+ Matt Merhar 2 (0.0%)
+ Wesley Sheng 2 (0.0%)
+ Kuldeep Singh 2 (0.0%)
+ Faiz Abbas 2 (0.0%)
+ Peng Wang 2 (0.0%)
+ Sylwester Nawrocki 2 (0.0%)
+ Philippe Schenker 2 (0.0%)
+ Jan Kiszka 1 (0.0%)
+ Christian Melki 1 (0.0%)
+ Biwen Li 1 (0.0%)
+ Manish Tomar 1 (0.0%)
+ Kishon Vijay Abraham I 1 (0.0%)
+ Kever Yang 1 (0.0%)
+ Christoph Niedermaier 1 (0.0%)
+ Mark Kettenis 1 (0.0%)
+ AKASHI Takahiro 1 (0.0%)
+ Manuel Reis 1 (0.0%)
+ Samuel Dionne-Riel 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 42586 (51.5%)
+ Grzegorz Jaszczyk 1248 (1.5%)
+ Daniel Schwierzeck 626 (0.8%)
+ Jacky Bai 159 (0.2%)
+ Reinoud Zandijk 66 (0.1%)
+ Harald Seiler 51 (0.1%)
+ jinghua 47 (0.1%)
+ Andrey Zhizhikin 40 (0.0%)
+ Chan, Donald 35 (0.0%)
+ Yangbo Lu 28 (0.0%)
+ Jernej Skrabec 12 (0.0%)
+ Marcin Wojtas 11 (0.0%)
+ Daniil Stas 11 (0.0%)
+ Ian Ray 7 (0.0%)
+ Sughosh Ganu 6 (0.0%)
+ Mian Yousaf Kaukab 5 (0.0%)
+ Joao Marcos Costa 4 (0.0%)
+ Wasim Khan 3 (0.0%)
+ Roger Pau Monné 2 (0.0%)
+ Wesley Sheng 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 303)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 118 (38.9%)
+ Peng Fan 44 (14.5%)
+ Andre Przywara 22 (7.3%)
+ Michal Simek 19 (6.3%)
+ Heinrich Schuchardt 10 (3.3%)
+ Dave Gerlach 7 (2.3%)
+ Marek Vasut 6 (2.0%)
+ Lokesh Vutla 6 (2.0%)
+ Priyanka Jain 5 (1.7%)
+ Sebastian Reichel 5 (1.7%)
+ Bin Meng 5 (1.7%)
+ Rainer Boschung 4 (1.3%)
+ Kostya Porotchkin 4 (1.3%)
+ Ye Li 4 (1.3%)
+ Tom Rini 3 (1.0%)
+ Neil Armstrong 3 (1.0%)
+ Vladimir Oltean 2 (0.7%)
+ Biwen Li 2 (0.7%)
+ Kirill Kapranov 2 (0.7%)
+ Uri Mashiach 2 (0.7%)
+ Valentin Raevsky 2 (0.7%)
+ Tien Fong Chee 2 (0.7%)
+ Oleksandr Suvorov 2 (0.7%)
+ Aswath Govindraju 2 (0.7%)
+ Ken Ma 2 (0.7%)
+ Grzegorz Jaszczyk 1 (0.3%)
+ Marcin Wojtas 1 (0.3%)
+ Anji J 1 (0.3%)
+ Jesse Taube 1 (0.3%)
+ Greentime Hu 1 (0.3%)
+ Pankaj Dev 1 (0.3%)
+ Ofir Fedida 1 (0.3%)
+ Sinthu Raja 1 (0.3%)
+ Matteo Lisi 1 (0.3%)
+ Matteo Ghidoni 1 (0.3%)
+ Raul Ulises Cardenas 1 (0.3%)
+ Alice Guo 1 (0.3%)
+ Suman Anna 1 (0.3%)
+ Nishanth Menon 1 (0.3%)
+ Ashok Reddy Soma 1 (0.3%)
+ Igor Opaniuk 1 (0.3%)
+ Ilias Apalodimas 1 (0.3%)
+ Igal Liberman 1 (0.3%)
+ Alex Marginean 1 (0.3%)
+ Marek Behún 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 754)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 146 (19.4%)
+ Priyanka Jain 75 (9.9%)
+ Stefan Roese 56 (7.4%)
+ Heinrich Schuchardt 48 (6.4%)
+ Bin Meng 45 (6.0%)
+ Ramon Fried 37 (4.9%)
+ Patrick Delaunay 31 (4.1%)
+ Patrice Chotard 24 (3.2%)
+ Rick Chen 24 (3.2%)
+ Jaehoon Chung 23 (3.1%)
+ Vladimir Oltean 19 (2.5%)
+ Kever Yang 18 (2.4%)
+ Ye Li 17 (2.3%)
+ Andre Przywara 16 (2.1%)
+ Fabio Estevam 14 (1.9%)
+ Tom Rini 11 (1.5%)
+ Ilias Apalodimas 11 (1.5%)
+ Leo Yu-Chi Liang 11 (1.5%)
+ Sean Anderson 11 (1.5%)
+ Pratyush Yadav 10 (1.3%)
+ Kostya Porotchkin 9 (1.2%)
+ Marek Behún 9 (1.2%)
+ Peng Fan 7 (0.9%)
+ Pali Rohár 7 (0.9%)
+ Oleksandr Suvorov 5 (0.7%)
+ Igal Liberman 5 (0.7%)
+ Ley Foon Tan 5 (0.7%)
+ Stefan Chulski 5 (0.7%)
+ Maxime Ripard 4 (0.5%)
+ Biju Das 4 (0.5%)
+ Grzegorz Jaszczyk 3 (0.4%)
+ Jacky Bai 3 (0.4%)
+ Jernej Skrabec 3 (0.4%)
+ Padmarao Begari 3 (0.4%)
+ Lad Prabhakar 3 (0.4%)
+ Miquel Raynal 2 (0.3%)
+ Andy Shevchenko 2 (0.3%)
+ Hou Zhiqiang 2 (0.3%)
+ Eugen Hristev 2 (0.3%)
+ Heiko Stuebner 2 (0.3%)
+ Marek Vasut 1 (0.1%)
+ Lokesh Vutla 1 (0.1%)
+ Neil Armstrong 1 (0.1%)
+ Marcin Wojtas 1 (0.1%)
+ Ashok Reddy Soma 1 (0.1%)
+ Igor Opaniuk 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Wasim Khan 1 (0.1%)
+ Nadav Haklai 1 (0.1%)
+ Yan Markman 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Damien Le Moal 1 (0.1%)
+ Grygorii Strashko 1 (0.1%)
+ Michael Trimarchi 1 (0.1%)
+ Horia Geantă 1 (0.1%)
+ Utkarsh Gupta 1 (0.1%)
+ Rasmus Villemoes 1 (0.1%)
+ Heiko Schocher 1 (0.1%)
+ Masahisa Kojima 1 (0.1%)
+ Etienne Carriere 1 (0.1%)
+ Alexandru Gagniuc 1 (0.1%)
+ Oleh Kravchenko 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Peter Robinson 13 (21.3%)
+ Bin Meng 4 (6.6%)
+ Vladimir Oltean 3 (4.9%)
+ Kostya Porotchkin 3 (4.9%)
+ Padmarao Begari 3 (4.9%)
+ Tim Harvey 3 (4.9%)
+ Patrick Delaunay 2 (3.3%)
+ Ilias Apalodimas 2 (3.3%)
+ Harm Berntsen 2 (3.3%)
+ Samuel Holland 2 (3.3%)
+ Adam Ford 2 (3.3%)
+ Heinrich Schuchardt 1 (1.6%)
+ Rick Chen 1 (1.6%)
+ Jaehoon Chung 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Sean Anderson 1 (1.6%)
+ Pali Rohár 1 (1.6%)
+ Jacky Bai 1 (1.6%)
+ Marek Vasut 1 (1.6%)
+ Nadav Haklai 1 (1.6%)
+ Alexandru Gagniuc 1 (1.6%)
+ Anji J 1 (1.6%)
+ Pierre-Jean Texier 1 (1.6%)
+ Richard Genoud 1 (1.6%)
+ Simon Baatz 1 (1.6%)
+ Derald D. Woods 1 (1.6%)
+ Jagannadha Sutradharudu Teki 1 (1.6%)
+ Matt Merhar 1 (1.6%)
+ Sherry Sun 1 (1.6%)
+ Chris Packham 1 (1.6%)
+ Kory Maincent 1 (1.6%)
+ Green Wan 1 (1.6%)
+ Ying-Chun Liu (PaulLiu) 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 61)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Arnaud Patard (Rtp) 9 (14.8%)
+ Bin Meng 5 (8.2%)
+ Simon Glass 5 (8.2%)
+ Marek Behún 4 (6.6%)
+ Vladimir Oltean 3 (4.9%)
+ Andre Przywara 3 (4.9%)
+ Marcin Wojtas 3 (4.9%)
+ Marek Vasut 2 (3.3%)
+ Ye Li 2 (3.3%)
+ Wasim Khan 2 (3.3%)
+ Yuichiro Goto 2 (3.3%)
+ Harm Berntsen 1 (1.6%)
+ Heinrich Schuchardt 1 (1.6%)
+ Tom Rini 1 (1.6%)
+ Stefan Roese 1 (1.6%)
+ Fabio Estevam 1 (1.6%)
+ Peng Fan 1 (1.6%)
+ Grzegorz Jaszczyk 1 (1.6%)
+ Hou Zhiqiang 1 (1.6%)
+ Neil Armstrong 1 (1.6%)
+ Igor Opaniuk 1 (1.6%)
+ Masahisa Kojima 1 (1.6%)
+ Reinoud Zandijk 1 (1.6%)
+ Mian Yousaf Kaukab 1 (1.6%)
+ Joao Marcos Costa 1 (1.6%)
+ Sylwester Nawrocki 1 (1.6%)
+ Manuel Reis 1 (1.6%)
+ Kunihiko Hayashi 1 (1.6%)
+ Haibo Chen 1 (1.6%)
+ Icenowy Zheng 1 (1.6%)
+ Asherah Connor 1 (1.6%)
+ Jagan Teki 1 (1.6%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ B1oHazard 3 (11.1%)
+ Heinrich Schuchardt 2 (7.4%)
+ Oleksandr Suvorov 2 (7.4%)
+ Damien Le Moal 2 (7.4%)
+ Matwey Kornilov 2 (7.4%)
+ Marek Behún 1 (3.7%)
+ Marek Vasut 1 (3.7%)
+ Tom Rini 1 (3.7%)
+ Samuel Holland 1 (3.7%)
+ Sean Anderson 1 (3.7%)
+ Alexandru Gagniuc 1 (3.7%)
+ Ley Foon Tan 1 (3.7%)
+ Michal Simek 1 (3.7%)
+ Mark Kettenis 1 (3.7%)
+ Kazuhiko Sakamoto 1 (3.7%)
+ Minas Hambardzumyan 1 (3.7%)
+ Marek Szyprowski 1 (3.7%)
+ Tom Warren 1 (3.7%)
+ Roger Meier 1 (3.7%)
+ Ard Biesheuvel 1 (3.7%)
+ Horatiu Vultur 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 27)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 4 (14.8%)
+ Neil Armstrong 4 (14.8%)
+ Sean Anderson 3 (11.1%)
+ Simon Glass 3 (11.1%)
+ Patrick Delaunay 2 (7.4%)
+ Rasmus Villemoes 2 (7.4%)
+ Qu Wenruo 2 (7.4%)
+ Bin Meng 1 (3.7%)
+ Andre Przywara 1 (3.7%)
+ Fabio Estevam 1 (3.7%)
+ Igor Opaniuk 1 (3.7%)
+ Ilias Apalodimas 1 (3.7%)
+ Suman Anna 1 (3.7%)
+ Masami Hiramatsu 1 (3.7%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 607 (35.1%)
+ Google, Inc. 293 (16.9%)
+ DENX Software Engineering 125 (7.2%)
+ Marvell 124 (7.2%)
+ NXP 116 (6.7%)
+ Konsulko Group 81 (4.7%)
+ Texas Instruments 79 (4.6%)
+ Linaro 47 (2.7%)
+ BayLibre SAS 41 (2.4%)
+ ST Microelectronics 39 (2.3%)
+ AMD 27 (1.6%)
+ Xilinx 22 (1.3%)
+ ARM 18 (1.0%)
+ Intel 17 (1.0%)
+ Renesas Electronics 17 (1.0%)
+ Semihalf Embedded Systems 17 (1.0%)
+ Amarula Solutions 13 (0.8%)
+ Bootlin 10 (0.6%)
+ Samsung 10 (0.6%)
+ General Electric 5 (0.3%)
+ SUSE 5 (0.3%)
+ Toradex 4 (0.2%)
+ Broadcom 3 (0.2%)
+ Collabora Ltd. 2 (0.1%)
+ Ronetix 2 (0.1%)
+ Socionext Inc. 2 (0.1%)
+ Rockchip 1 (0.1%)
+ Siemens 1 (0.1%)
+ Canonical 1 (0.1%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.1%)
+ ================================== =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ Marvell 241819 (53.4%)
+ Texas Instruments 50334 (11.1%)
+ Konsulko Group 44582 (9.8%)
+ (Unknown) 39820 (8.8%)
+ Google, Inc. 14090 (3.1%)
+ Linaro 12952 (2.9%)
+ NXP 10413 (2.3%)
+ DENX Software Engineering 9722 (2.1%)
+ AMD 8190 (1.8%)
+ Amarula Solutions 5089 (1.1%)
+ Ronetix 4015 (0.9%)
+ BayLibre SAS 3730 (0.8%)
+ Renesas Electronics 1654 (0.4%)
+ ARM 1604 (0.4%)
+ Semihalf Embedded Systems 1569 (0.3%)
+ Bootlin 838 (0.2%)
+ ST Microelectronics 704 (0.2%)
+ Xilinx 522 (0.1%)
+ Intel 462 (0.1%)
+ Samsung 448 (0.1%)
+ SUSE 239 (0.1%)
+ Broadcom 162 (0.0%)
+ Collabora Ltd. 38 (0.0%)
+ Toradex 29 (0.0%)
+ General Electric 26 (0.0%)
+ Socionext Inc. 9 (0.0%)
+ Weidmüller Interface GmbH & Co. KG 9 (0.0%)
+ Canonical 8 (0.0%)
+ Rockchip 1 (0.0%)
+ Siemens 1 (0.0%)
+ ================================== =====
+
+
+.. table:: Employers with the most signoffs (total 303)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ DENX Software Engineering 118 (38.9%)
+ NXP 61 (20.1%)
+ (Unknown) 31 (10.2%)
+ ARM 22 (7.3%)
+ Xilinx 20 (6.6%)
+ Texas Instruments 18 (5.9%)
+ Marvell 8 (2.6%)
+ CompuLab 6 (2.0%)
+ Collabora Ltd. 5 (1.7%)
+ Konsulko Group 3 (1.0%)
+ BayLibre SAS 3 (1.0%)
+ Semihalf Embedded Systems 2 (0.7%)
+ Intel 2 (0.7%)
+ Toradex 2 (0.7%)
+ Linaro 1 (0.3%)
+ ST Microelectronics 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 189)
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 84 (44.4%)
+ NXP 27 (14.3%)
+ Marvell 10 (5.3%)
+ Texas Instruments 9 (4.8%)
+ Linaro 8 (4.2%)
+ DENX Software Engineering 7 (3.7%)
+ Xilinx 6 (3.2%)
+ ARM 3 (1.6%)
+ Intel 3 (1.6%)
+ Toradex 3 (1.6%)
+ Renesas Electronics 3 (1.6%)
+ SUSE 3 (1.6%)
+ BayLibre SAS 2 (1.1%)
+ Semihalf Embedded Systems 2 (1.1%)
+ ST Microelectronics 2 (1.1%)
+ Samsung 2 (1.1%)
+ Broadcom 2 (1.1%)
+ Collabora Ltd. 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ Google, Inc. 1 (0.5%)
+ AMD 1 (0.5%)
+ Amarula Solutions 1 (0.5%)
+ Ronetix 1 (0.5%)
+ Bootlin 1 (0.5%)
+ General Electric 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.5%)
+ Canonical 1 (0.5%)
+ Rockchip 1 (0.5%)
+ Siemens 1 (0.5%)
+ ================================== =====
diff --git a/doc/develop/statistics/u-boot-stats-v2021.10.rst b/doc/develop/statistics/u-boot-stats-v2021.10.rst
new file mode 100644
index 0000000..b2dcffe
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2021.10.rst
@@ -0,0 +1,752 @@
+:orphan:
+
+Release Statistics for U-Boot v2021.10
+======================================
+
+* Processed 1509 csets from 176 developers
+
+* 28 employers found
+
+* A total of 98664 lines added, 74614 removed (delta 24050)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Simon Glass 191 (12.7%)
+ Tom Rini 92 (6.1%)
+ Michal Simek 91 (6.0%)
+ Pali Rohár 80 (5.3%)
+ Patrick Delaunay 70 (4.6%)
+ Tim Harvey 54 (3.6%)
+ Heinrich Schuchardt 51 (3.4%)
+ Marek Vasut 38 (2.5%)
+ Aswath Govindraju 37 (2.5%)
+ Alexandru Gagniuc 29 (1.9%)
+ Marek Behún 26 (1.7%)
+ Bin Meng 26 (1.7%)
+ Ye Li 26 (1.7%)
+ Pratyush Yadav 26 (1.7%)
+ Peng Fan 25 (1.7%)
+ Tero Kristo 22 (1.5%)
+ Stephan Gerhold 21 (1.4%)
+ Andre Przywara 20 (1.3%)
+ Tony Dinh 19 (1.3%)
+ Ashok Reddy Soma 18 (1.2%)
+ Mattijs Korpershoek 18 (1.2%)
+ Masami Hiramatsu 18 (1.2%)
+ Zong Li 16 (1.1%)
+ Siew Chin Lim 15 (1.0%)
+ Gireesh Hiremath 15 (1.0%)
+ Suman Anna 13 (0.9%)
+ Sean Anderson 12 (0.8%)
+ Kishon Vijay Abraham I 12 (0.8%)
+ Masahisa Kojima 10 (0.7%)
+ Teresa Remmet 10 (0.7%)
+ Takahiro Kuwano 10 (0.7%)
+ T Karthik Reddy 9 (0.6%)
+ Artem Lapkin 9 (0.6%)
+ Alper Nebi Yasak 9 (0.6%)
+ Trevor Woerner 9 (0.6%)
+ Rasmus Villemoes 8 (0.5%)
+ Kuldeep Singh 8 (0.5%)
+ Fabio Estevam 8 (0.5%)
+ Steffen Jaeckel 8 (0.5%)
+ Vignesh Raghavendra 8 (0.5%)
+ Stephen Carlson 8 (0.5%)
+ Dario Binacchi 8 (0.5%)
+ Samuel Holland 7 (0.5%)
+ Adam Ford 7 (0.5%)
+ Kunihiko Hayashi 7 (0.5%)
+ Vladimir Oltean 7 (0.5%)
+ Dave Gerlach 6 (0.4%)
+ Roland Gaudig 6 (0.4%)
+ AKASHI Takahiro 6 (0.4%)
+ Daniel Schwierzeck 6 (0.4%)
+ Gowtham Tammana 6 (0.4%)
+ Lokesh Vutla 5 (0.3%)
+ Priyanka Jain 5 (0.3%)
+ Wasim Khan 5 (0.3%)
+ Chris Morgan 5 (0.3%)
+ Johan Jonker 5 (0.3%)
+ Eugen Hristev 5 (0.3%)
+ Hai Pham 5 (0.3%)
+ Joseph Chen 5 (0.3%)
+ Grzegorz Szymaszek 5 (0.3%)
+ Patrice Chotard 4 (0.3%)
+ Ilias Apalodimas 4 (0.3%)
+ Matthias Schiffer 4 (0.3%)
+ Oleksandr Suvorov 4 (0.3%)
+ Michael Walle 4 (0.3%)
+ Matwey V. Kornilov 4 (0.3%)
+ Paul Barker 4 (0.3%)
+ Nandor Han 4 (0.3%)
+ Yifeng Zhao 4 (0.3%)
+ Frieder Schrempf 4 (0.3%)
+ Andy Shevchenko 3 (0.2%)
+ Tien Fong Chee 3 (0.2%)
+ Sebastian Reichel 3 (0.2%)
+ Camelia Groza 3 (0.2%)
+ Peter Robinson 3 (0.2%)
+ Xiaobo Tian 3 (0.2%)
+ John Keeping 3 (0.2%)
+ Reto Schneider 3 (0.2%)
+ Joao Marcos Costa 3 (0.2%)
+ Moses Christopher 3 (0.2%)
+ Tianrui Wei 3 (0.2%)
+ Jassi Brar 3 (0.2%)
+ Zhengxun 3 (0.2%)
+ Anand Moon 3 (0.2%)
+ Ilko Iliev 3 (0.2%)
+ Marek Szyprowski 2 (0.1%)
+ Matthias Brugger 2 (0.1%)
+ Mark Kettenis 2 (0.1%)
+ Roger Quadros 2 (0.1%)
+ Stefan Agner 2 (0.1%)
+ Raju Kumar Pothuraju 2 (0.1%)
+ Oleh Kravchenko 2 (0.1%)
+ Dimitri John Ledkov 2 (0.1%)
+ Guillaume La Roque 2 (0.1%)
+ Ming Liu 2 (0.1%)
+ Adarsh Babu Kalepalli 2 (0.1%)
+ Thomas Perrot 2 (0.1%)
+ Jean-Jacques Hiblot 2 (0.1%)
+ Piyush Mehta 2 (0.1%)
+ Chen Baozi 2 (0.1%)
+ Peter Hoyes 2 (0.1%)
+ Anders Dellien 2 (0.1%)
+ Lukasz Majewski 2 (0.1%)
+ Cosmin-Florin Aluchenesei 2 (0.1%)
+ Vincent Chen 2 (0.1%)
+ Breno Lima 2 (0.1%)
+ MengLi 2 (0.1%)
+ Keerthy 2 (0.1%)
+ Sheep Sun 2 (0.1%)
+ Koji Matsuoka 2 (0.1%)
+ Elaine Zhang 2 (0.1%)
+ Tudor Ambarus 2 (0.1%)
+ Nicolas Saenz Julienne 1 (0.1%)
+ Robert Marko 1 (0.1%)
+ Denis Odintsov 1 (0.1%)
+ Ruchika Gupta 1 (0.1%)
+ Simon Guinot 1 (0.1%)
+ Martyn Welch 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Jan Kiszka 1 (0.1%)
+ Christophe Leroy 1 (0.1%)
+ Ivan T. Ivanov 1 (0.1%)
+ Yuan Fang 1 (0.1%)
+ Marcel Ziswiler 1 (0.1%)
+ Derald D. Woods 1 (0.1%)
+ Yuezhang Mo 1 (0.1%)
+ Sven Auhagen 1 (0.1%)
+ Thomas Skibo 1 (0.1%)
+ Sai Krishna Potthuri 1 (0.1%)
+ Ley Foon Tan 1 (0.1%)
+ Horia Geantă 1 (0.1%)
+ Kshitiz Varshney 1 (0.1%)
+ Jon Lin 1 (0.1%)
+ Johan Gunnarsson 1 (0.1%)
+ Alex Bee 1 (0.1%)
+ Christian Hewitt 1 (0.1%)
+ Campbell Suter 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Icenowy Zheng 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ litchipi 1 (0.1%)
+ Marc Kleine-Budde 1 (0.1%)
+ Chan, Donald 1 (0.1%)
+ Alan Douglas 1 (0.1%)
+ Faiz Abbas 1 (0.1%)
+ Manish Narani 1 (0.1%)
+ Mike Looijmans 1 (0.1%)
+ Ricardo Salveti 1 (0.1%)
+ Chia-Wei Wang 1 (0.1%)
+ Patrick Wildt 1 (0.1%)
+ Etienne Carriere 1 (0.1%)
+ Chen Guanqiao 1 (0.1%)
+ Vitaly Wool 1 (0.1%)
+ Alfonso Sánchez-Beato 1 (0.1%)
+ Max Yang 1 (0.1%)
+ Joel Stanley 1 (0.1%)
+ Sven Roederer 1 (0.1%)
+ Yann Dirson 1 (0.1%)
+ Stefano Babic 1 (0.1%)
+ Cody Gray 1 (0.1%)
+ Kacper Kubkowski 1 (0.1%)
+ Christoph Niedermaier 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Yu-Tung Chang 1 (0.1%)
+ Paul Kocialkowski 1 (0.1%)
+ Sinan Akman 1 (0.1%)
+ Green Wan 1 (0.1%)
+ Radu Pirea (NXP OSS) 1 (0.1%)
+ Jaime Liao 1 (0.1%)
+ Srinivas Neeli 1 (0.1%)
+ Stefano Stabellini 1 (0.1%)
+ Jorge Ramirez-Ortiz 1 (0.1%)
+ Daniil Stas 1 (0.1%)
+ Michael Opdenacker 1 (0.1%)
+ Kevin Scholz 1 (0.1%)
+ Kai Stuhlemmer (ebee Engineering) 1 (0.1%)
+ ================================= =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Tom Rini 48665 (30.6%)
+ Simon Glass 14052 (8.8%)
+ Peng Fan 8037 (5.1%)
+ Marek Vasut 6463 (4.1%)
+ Joseph Chen 5161 (3.2%)
+ Tim Harvey 4466 (2.8%)
+ Elaine Zhang 4389 (2.8%)
+ Zong Li 3994 (2.5%)
+ Patrick Delaunay 3410 (2.1%)
+ Aswath Govindraju 3202 (2.0%)
+ Michal Simek 2657 (1.7%)
+ Tien Fong Chee 2547 (1.6%)
+ Masami Hiramatsu 2163 (1.4%)
+ Tero Kristo 2122 (1.3%)
+ Siew Chin Lim 1925 (1.2%)
+ Pratyush Yadav 1906 (1.2%)
+ Ye Li 1793 (1.1%)
+ Sean Anderson 1790 (1.1%)
+ Yifeng Zhao 1658 (1.0%)
+ Stephan Gerhold 1643 (1.0%)
+ Peter Robinson 1578 (1.0%)
+ Dave Gerlach 1550 (1.0%)
+ Ashok Reddy Soma 1456 (0.9%)
+ Pali Rohár 1432 (0.9%)
+ Trevor Woerner 1352 (0.8%)
+ Steffen Jaeckel 1326 (0.8%)
+ Alexandru Gagniuc 1220 (0.8%)
+ Adam Ford 1187 (0.7%)
+ Jean-Jacques Hiblot 1174 (0.7%)
+ Roland Gaudig 1120 (0.7%)
+ Tianrui Wei 1029 (0.6%)
+ Jassi Brar 938 (0.6%)
+ Nandor Han 933 (0.6%)
+ Keerthy 931 (0.6%)
+ Chris Morgan 800 (0.5%)
+ Kunihiko Hayashi 781 (0.5%)
+ Lokesh Vutla 778 (0.5%)
+ Alan Douglas 760 (0.5%)
+ Zhengxun 754 (0.5%)
+ Paul Barker 730 (0.5%)
+ Andre Przywara 706 (0.4%)
+ Linus Walleij 667 (0.4%)
+ Johan Jonker 643 (0.4%)
+ Vignesh Raghavendra 642 (0.4%)
+ Hai Pham 622 (0.4%)
+ Heinrich Schuchardt 599 (0.4%)
+ Tony Dinh 584 (0.4%)
+ Marek Behún 573 (0.4%)
+ Masahisa Kojima 517 (0.3%)
+ Ilias Apalodimas 482 (0.3%)
+ Dario Binacchi 479 (0.3%)
+ Fabio Estevam 457 (0.3%)
+ Kishon Vijay Abraham I 456 (0.3%)
+ Joao Marcos Costa 452 (0.3%)
+ Teresa Remmet 450 (0.3%)
+ T Karthik Reddy 406 (0.3%)
+ Stephen Carlson 398 (0.3%)
+ Radu Pirea (NXP OSS) 368 (0.2%)
+ Takahiro Kuwano 358 (0.2%)
+ Samuel Holland 339 (0.2%)
+ Sebastian Reichel 314 (0.2%)
+ Gireesh Hiremath 301 (0.2%)
+ Daniel Schwierzeck 274 (0.2%)
+ Alper Nebi Yasak 254 (0.2%)
+ Bin Meng 226 (0.1%)
+ Kevin Scholz 220 (0.1%)
+ Jorge Ramirez-Ortiz 218 (0.1%)
+ Suman Anna 214 (0.1%)
+ Mattijs Korpershoek 206 (0.1%)
+ Kuldeep Singh 187 (0.1%)
+ Vladimir Oltean 135 (0.1%)
+ Ilko Iliev 134 (0.1%)
+ Wasim Khan 129 (0.1%)
+ Artem Lapkin 121 (0.1%)
+ Michael Walle 110 (0.1%)
+ Yu-Tung Chang 106 (0.1%)
+ Guillaume La Roque 81 (0.1%)
+ Moses Christopher 76 (0.0%)
+ Vincent Chen 75 (0.0%)
+ Sinan Akman 73 (0.0%)
+ AKASHI Takahiro 70 (0.0%)
+ Koji Matsuoka 65 (0.0%)
+ Patrice Chotard 62 (0.0%)
+ Matwey V. Kornilov 60 (0.0%)
+ Rasmus Villemoes 57 (0.0%)
+ Eugen Hristev 57 (0.0%)
+ Roger Quadros 55 (0.0%)
+ Gowtham Tammana 48 (0.0%)
+ Jaime Liao 46 (0.0%)
+ Etienne Carriere 44 (0.0%)
+ Matthias Schiffer 42 (0.0%)
+ Priyanka Jain 41 (0.0%)
+ Derald D. Woods 40 (0.0%)
+ Frieder Schrempf 39 (0.0%)
+ Matthias Brugger 37 (0.0%)
+ Breno Lima 37 (0.0%)
+ Peter Hoyes 36 (0.0%)
+ Andy Shevchenko 35 (0.0%)
+ Jon Lin 32 (0.0%)
+ Grzegorz Szymaszek 30 (0.0%)
+ Manish Narani 30 (0.0%)
+ Piyush Mehta 28 (0.0%)
+ Kshitiz Varshney 27 (0.0%)
+ Yann Dirson 27 (0.0%)
+ Oleksandr Suvorov 25 (0.0%)
+ Lukasz Majewski 24 (0.0%)
+ Ruchika Gupta 24 (0.0%)
+ Camelia Groza 22 (0.0%)
+ Xiaobo Tian 22 (0.0%)
+ Stefan Agner 21 (0.0%)
+ Michael Opdenacker 21 (0.0%)
+ Sai Krishna Potthuri 20 (0.0%)
+ Kai Stuhlemmer (ebee Engineering) 19 (0.0%)
+ Nishanth Menon 18 (0.0%)
+ Marcel Ziswiler 18 (0.0%)
+ Oleh Kravchenko 17 (0.0%)
+ Reto Schneider 16 (0.0%)
+ MengLi 16 (0.0%)
+ Chris Packham 16 (0.0%)
+ litchipi 16 (0.0%)
+ Daniil Stas 15 (0.0%)
+ Ming Liu 13 (0.0%)
+ Marc Kleine-Budde 13 (0.0%)
+ Paul Kocialkowski 13 (0.0%)
+ John Keeping 11 (0.0%)
+ Anand Moon 9 (0.0%)
+ Tudor Ambarus 9 (0.0%)
+ Alfonso Sánchez-Beato 9 (0.0%)
+ Marek Szyprowski 8 (0.0%)
+ Raju Kumar Pothuraju 8 (0.0%)
+ Chen Baozi 8 (0.0%)
+ Mark Kettenis 6 (0.0%)
+ Dimitri John Ledkov 6 (0.0%)
+ Sheep Sun 6 (0.0%)
+ Denis Odintsov 6 (0.0%)
+ Ivan T. Ivanov 6 (0.0%)
+ Mike Looijmans 6 (0.0%)
+ Vitaly Wool 6 (0.0%)
+ Cosmin-Florin Aluchenesei 5 (0.0%)
+ Kacper Kubkowski 5 (0.0%)
+ Adarsh Babu Kalepalli 4 (0.0%)
+ Sven Auhagen 4 (0.0%)
+ Ley Foon Tan 4 (0.0%)
+ Chia-Wei Wang 4 (0.0%)
+ Cody Gray 4 (0.0%)
+ Thomas Perrot 3 (0.0%)
+ Anders Dellien 3 (0.0%)
+ Martyn Welch 3 (0.0%)
+ Alex Bee 3 (0.0%)
+ Faiz Abbas 3 (0.0%)
+ Chen Guanqiao 3 (0.0%)
+ Jernej Skrabec 3 (0.0%)
+ Green Wan 3 (0.0%)
+ Robert Marko 2 (0.0%)
+ Jan Kiszka 2 (0.0%)
+ Yuezhang Mo 2 (0.0%)
+ Christian Hewitt 2 (0.0%)
+ Icenowy Zheng 2 (0.0%)
+ Patrick Wildt 2 (0.0%)
+ Max Yang 2 (0.0%)
+ Joel Stanley 2 (0.0%)
+ Sven Roederer 2 (0.0%)
+ Stefano Babic 2 (0.0%)
+ Christoph Niedermaier 2 (0.0%)
+ Stefano Stabellini 2 (0.0%)
+ Nicolas Saenz Julienne 1 (0.0%)
+ Simon Guinot 1 (0.0%)
+ Christophe Leroy 1 (0.0%)
+ Yuan Fang 1 (0.0%)
+ Thomas Skibo 1 (0.0%)
+ Horia Geantă 1 (0.0%)
+ Johan Gunnarsson 1 (0.0%)
+ Campbell Suter 1 (0.0%)
+ Chan, Donald 1 (0.0%)
+ Ricardo Salveti 1 (0.0%)
+ Srinivas Neeli 1 (0.0%)
+ ================================= =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Tom Rini 46519 (62.3%)
+ Simon Glass 1414 (1.9%)
+ Linus Walleij 667 (0.9%)
+ Patrick Delaunay 331 (0.4%)
+ Ilias Apalodimas 293 (0.4%)
+ Sean Anderson 274 (0.4%)
+ Ilko Iliev 124 (0.2%)
+ Stephen Carlson 56 (0.1%)
+ Suman Anna 40 (0.1%)
+ Derald D. Woods 34 (0.0%)
+ Xiaobo Tian 20 (0.0%)
+ Michael Walle 15 (0.0%)
+ Oleksandr Suvorov 11 (0.0%)
+ Lukasz Majewski 5 (0.0%)
+ Bin Meng 2 (0.0%)
+ Anand Moon 2 (0.0%)
+ Jan Kiszka 2 (0.0%)
+ Kai Stuhlemmer (ebee Engineering) 1 (0.0%)
+ Ivan T. Ivanov 1 (0.0%)
+ Anders Dellien 1 (0.0%)
+ Yuezhang Mo 1 (0.0%)
+ ================================= =====
+
+
+.. table:: Developers with the most signoffs (total 326)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Lokesh Vutla 108 (33.1%)
+ Michal Simek 37 (11.3%)
+ Neil Armstrong 28 (8.6%)
+ Tom Rini 13 (4.0%)
+ Peng Fan 12 (3.7%)
+ Kishon Vijay Abraham I 10 (3.1%)
+ Andre Przywara 10 (3.1%)
+ Alexandru Gagniuc 8 (2.5%)
+ Marek Vasut 7 (2.1%)
+ Heinrich Schuchardt 6 (1.8%)
+ Tero Kristo 6 (1.8%)
+ Jon Lin 5 (1.5%)
+ Guillaume La Roque 5 (1.5%)
+ Ashok Reddy Soma 5 (1.5%)
+ Oleksandr Suvorov 4 (1.2%)
+ Markus Niebel 4 (1.2%)
+ Matthias Brugger 4 (1.2%)
+ Vignesh Raghavendra 4 (1.2%)
+ Minkyu Kang 3 (0.9%)
+ Dave Gerlach 3 (0.9%)
+ Masami Hiramatsu 3 (0.9%)
+ Aswath Govindraju 3 (0.9%)
+ David Abdurachmanov 2 (0.6%)
+ Jagan Teki 2 (0.6%)
+ Jonathan Balkind 2 (0.6%)
+ Roger Quadros 2 (0.6%)
+ Mattijs Korpershoek 2 (0.6%)
+ T Karthik Reddy 2 (0.6%)
+ Hai Pham 2 (0.6%)
+ Jean-Jacques Hiblot 2 (0.6%)
+ Ye Li 2 (0.6%)
+ Siew Chin Lim 2 (0.6%)
+ Patrick Delaunay 1 (0.3%)
+ Suman Anna 1 (0.3%)
+ Jan Kiszka 1 (0.3%)
+ Tom Warren 1 (0.3%)
+ Kever Yang 1 (0.3%)
+ Timothée Cercueil 1 (0.3%)
+ Murali Karicheri 1 (0.3%)
+ Robert Jones 1 (0.3%)
+ Paul Walmsley 1 (0.3%)
+ Alessandro Temil 1 (0.3%)
+ Praneeth Bajjuri 1 (0.3%)
+ Priyanka Jain 1 (0.3%)
+ Nishanth Menon 1 (0.3%)
+ Tudor Ambarus 1 (0.3%)
+ Patrice Chotard 1 (0.3%)
+ Marek Behún 1 (0.3%)
+ Pratyush Yadav 1 (0.3%)
+ Tien Fong Chee 1 (0.3%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 832)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 124 (14.9%)
+ Simon Glass 120 (14.4%)
+ Patrice Chotard 52 (6.2%)
+ Jagan Teki 50 (6.0%)
+ Marek Behún 45 (5.4%)
+ Jaehoon Chung 42 (5.0%)
+ Ramon Fried 38 (4.6%)
+ Kever Yang 36 (4.3%)
+ Chris Packham 31 (3.7%)
+ Bin Meng 30 (3.6%)
+ Priyanka Jain 28 (3.4%)
+ Leo Yu-Chi Liang 28 (3.4%)
+ Heinrich Schuchardt 21 (2.5%)
+ Heiko Schocher 20 (2.4%)
+ Patrick Delaunay 13 (1.6%)
+ Pali Rohár 13 (1.6%)
+ Sean Anderson 11 (1.3%)
+ Miquel Raynal 11 (1.3%)
+ Alexandru Gagniuc 9 (1.1%)
+ Linus Walleij 9 (1.1%)
+ Fabio Estevam 9 (1.1%)
+ Pratyush Yadav 8 (1.0%)
+ Tom Rini 7 (0.8%)
+ Andre Przywara 7 (0.8%)
+ Walter Lozano 7 (0.8%)
+ Rick Chen 6 (0.7%)
+ Patrick Wildt 5 (0.6%)
+ Neil Armstrong 4 (0.5%)
+ Ashok Reddy Soma 4 (0.5%)
+ Nishanth Menon 4 (0.5%)
+ Ilias Apalodimas 4 (0.5%)
+ Konstantin Porotchkin 4 (0.5%)
+ Ye Li 3 (0.4%)
+ Suman Anna 3 (0.4%)
+ Igor Opaniuk 3 (0.4%)
+ Nicolas Saenz Julienne 2 (0.2%)
+ Jernej Skrabec 2 (0.2%)
+ Mark Kettenis 2 (0.2%)
+ Marcel Ziswiler 2 (0.2%)
+ Peng Fan 1 (0.1%)
+ Masami Hiramatsu 1 (0.1%)
+ Andy Wu 1 (0.1%)
+ Asherah Connor 1 (0.1%)
+ Qu Wenruo 1 (0.1%)
+ Biju Bas 1 (0.1%)
+ Heiko Stuebner 1 (0.1%)
+ Jens Wiklander 1 (0.1%)
+ Horatiu Vultur 1 (0.1%)
+ Ley Foon Tan 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Sebastian Reichel 1 (0.1%)
+ Joao Marcos Costa 1 (0.1%)
+ Paul Barker 1 (0.1%)
+ Steffen Jaeckel 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 67)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Chris Packham 26 (38.8%)
+ Patrice Chotard 14 (20.9%)
+ Simon Glass 10 (14.9%)
+ Patrick Wildt 3 (4.5%)
+ Michal Simek 2 (3.0%)
+ Jaehoon Chung 1 (1.5%)
+ Pali Rohár 1 (1.5%)
+ Tom Rini 1 (1.5%)
+ Andre Przywara 1 (1.5%)
+ Suman Anna 1 (1.5%)
+ Igor Opaniuk 1 (1.5%)
+ Masami Hiramatsu 1 (1.5%)
+ Tudor Ambarus 1 (1.5%)
+ Derald D. Woods 1 (1.5%)
+ Sughosh Ganu 1 (1.5%)
+ Stefan Agner 1 (1.5%)
+ Keerthy 1 (1.5%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 67)
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Pali Rohár 24 (35.8%)
+ Marek Behún 13 (19.4%)
+ Bin Meng 7 (10.4%)
+ Stephan Gerhold 4 (6.0%)
+ Ye Li 3 (4.5%)
+ Joao Marcos Costa 3 (4.5%)
+ Ashok Reddy Soma 2 (3.0%)
+ Ilias Apalodimas 2 (3.0%)
+ Alexandru Gagniuc 1 (1.5%)
+ Jernej Skrabec 1 (1.5%)
+ Dave Gerlach 1 (1.5%)
+ Aswath Govindraju 1 (1.5%)
+ Kai Stuhlemmer (ebee Engineering) 1 (1.5%)
+ Kevin Scholz 1 (1.5%)
+ Marek Szyprowski 1 (1.5%)
+ Ming Liu 1 (1.5%)
+ Adam Ford 1 (1.5%)
+ ================================= =====
+
+
+.. table:: Developers with the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3 (30.0%)
+ Marek Behún 1 (10.0%)
+ Keerthy 1 (10.0%)
+ Walter Lozano 1 (10.0%)
+ Minkyu Kang 1 (10.0%)
+ Jan Kiszka 1 (10.0%)
+ Andreas Schwab 1 (10.0%)
+ Fu Wei 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 10)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 4 (40.0%)
+ Tom Rini 3 (30.0%)
+ Dave Gerlach 1 (10.0%)
+ Dimitri John Ledkov 1 (10.0%)
+ Tianrui Wei 1 (10.0%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 577 (38.2%)
+ Google, Inc. 191 (12.7%)
+ Texas Instruments 141 (9.3%)
+ Konsulko Group 93 (6.2%)
+ AMD 91 (6.0%)
+ NXP 86 (5.7%)
+ ST Microelectronics 74 (4.9%)
+ Linaro 44 (2.9%)
+ DENX Software Engineering 43 (2.8%)
+ Xilinx 35 (2.3%)
+ ARM 24 (1.6%)
+ Intel 21 (1.4%)
+ BayLibre SAS 20 (1.3%)
+ Rockchip 12 (0.8%)
+ Phytec 10 (0.7%)
+ Renesas Electronics 7 (0.5%)
+ Socionext Inc. 7 (0.5%)
+ Toradex 6 (0.4%)
+ Weidmüller Interface GmbH & Co. KG 6 (0.4%)
+ Bootlin 4 (0.3%)
+ Collabora Ltd. 4 (0.3%)
+ Ronetix 3 (0.2%)
+ SUSE 3 (0.2%)
+ Wind River 2 (0.1%)
+ Samsung 2 (0.1%)
+ Sony 1 (0.1%)
+ Pengutronix 1 (0.1%)
+ Siemens 1 (0.1%)
+ ================================== =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ Konsulko Group 48671 (30.6%)
+ (Unknown) 32467 (20.4%)
+ Google, Inc. 14052 (8.8%)
+ Texas Instruments 13223 (8.3%)
+ Rockchip 11240 (7.1%)
+ NXP 10782 (6.8%)
+ DENX Software Engineering 6493 (4.1%)
+ Linaro 4905 (3.1%)
+ Intel 4507 (2.8%)
+ ST Microelectronics 3472 (2.2%)
+ AMD 2657 (1.7%)
+ Xilinx 1951 (1.2%)
+ Weidmüller Interface GmbH & Co. KG 1120 (0.7%)
+ Socionext Inc. 781 (0.5%)
+ ARM 745 (0.5%)
+ Renesas Electronics 687 (0.4%)
+ Phytec 450 (0.3%)
+ Collabora Ltd. 317 (0.2%)
+ BayLibre SAS 287 (0.2%)
+ Ronetix 134 (0.1%)
+ Toradex 69 (0.0%)
+ SUSE 43 (0.0%)
+ Bootlin 37 (0.0%)
+ Wind River 16 (0.0%)
+ Pengutronix 13 (0.0%)
+ Samsung 8 (0.0%)
+ Sony 2 (0.0%)
+ Siemens 2 (0.0%)
+ ================================== =====
+
+
+.. table:: Employers with the most signoffs (total 326)
+ :widths: auto
+
+ ================================= =====
+ Name Count
+ ================================= =====
+ Texas Instruments 138 (42.3%)
+ Xilinx 44 (13.5%)
+ (Unknown) 39 (12.0%)
+ BayLibre SAS 35 (10.7%)
+ NXP 15 (4.6%)
+ Konsulko Group 13 (4.0%)
+ ARM 10 (3.1%)
+ Rockchip 6 (1.8%)
+ Toradex 4 (1.2%)
+ SUSE 4 (1.2%)
+ Linaro 3 (0.9%)
+ Intel 3 (0.9%)
+ ST Microelectronics 3 (0.9%)
+ Samsung 3 (0.9%)
+ Renesas Electronics 2 (0.6%)
+ Amarula Solutions 2 (0.6%)
+ Siemens 1 (0.3%)
+ NVidia 1 (0.3%)
+ ================================= =====
+
+
+.. table:: Employers with the most hackers (total 181)
+ :widths: auto
+
+ ================================== =====
+ Name Count
+ ================================== =====
+ (Unknown) 94 (51.9%)
+ Texas Instruments 15 (8.3%)
+ NXP 12 (6.6%)
+ Xilinx 8 (4.4%)
+ Linaro 8 (4.4%)
+ Rockchip 4 (2.2%)
+ Toradex 4 (2.2%)
+ DENX Software Engineering 4 (2.2%)
+ ARM 3 (1.7%)
+ Intel 3 (1.7%)
+ Bootlin 3 (1.7%)
+ BayLibre SAS 2 (1.1%)
+ Konsulko Group 2 (1.1%)
+ SUSE 2 (1.1%)
+ ST Microelectronics 2 (1.1%)
+ Renesas Electronics 2 (1.1%)
+ Collabora Ltd. 2 (1.1%)
+ Samsung 1 (0.6%)
+ Siemens 1 (0.6%)
+ Google, Inc. 1 (0.6%)
+ AMD 1 (0.6%)
+ Weidmüller Interface GmbH & Co. KG 1 (0.6%)
+ Socionext Inc. 1 (0.6%)
+ Phytec 1 (0.6%)
+ Ronetix 1 (0.6%)
+ Wind River 1 (0.6%)
+ Pengutronix 1 (0.6%)
+ Sony 1 (0.6%)
+ ================================== =====
diff --git a/doc/develop/statistics/u-boot-stats-v2022.01.rst b/doc/develop/statistics/u-boot-stats-v2022.01.rst
new file mode 100644
index 0000000..a6d130c
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2022.01.rst
@@ -0,0 +1,757 @@
+:orphan:
+
+Release Statistics for U-Boot v2022.01
+======================================
+
+* Processed 1417 csets from 164 developers
+
+* 29 employers found
+
+* A total of 69397 lines added, 45876 removed (delta 23521)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 179 (12.6%)
+ Simon Glass 141 (10.0%)
+ Pali Rohár 124 (8.8%)
+ Marek Behún 78 (5.5%)
+ Heinrich Schuchardt 67 (4.7%)
+ Marek Vasut 56 (4.0%)
+ Vladimir Oltean 53 (3.7%)
+ Samuel Holland 53 (3.7%)
+ Michael Walle 45 (3.2%)
+ Patrick Delaunay 38 (2.7%)
+ Adam Ford 19 (1.3%)
+ Bin Meng 17 (1.2%)
+ Ilias Apalodimas 17 (1.2%)
+ Tim Harvey 16 (1.1%)
+ Marcel Ziswiler 16 (1.1%)
+ Michal Simek 15 (1.1%)
+ Masahisa Kojima 14 (1.0%)
+ Fabio Estevam 13 (0.9%)
+ Neil Armstrong 13 (0.9%)
+ Mark Kettenis 12 (0.8%)
+ Ye Li 12 (0.8%)
+ Rasmus Villemoes 12 (0.8%)
+ Patrice Chotard 11 (0.8%)
+ Jan Kiszka 10 (0.7%)
+ Mathew McBride 10 (0.7%)
+ Dzmitry Sankouski 10 (0.7%)
+ Teresa Remmet 10 (0.7%)
+ Andy Shevchenko 9 (0.6%)
+ Ricardo Salveti 9 (0.6%)
+ Thierry Reding 9 (0.6%)
+ Stephan Gerhold 9 (0.6%)
+ Sean Anderson 8 (0.6%)
+ Matthias Schiffer 8 (0.6%)
+ Oleksandr Suvorov 8 (0.6%)
+ Eugen Hristev 8 (0.6%)
+ Peter Robinson 7 (0.5%)
+ Peng Fan 7 (0.5%)
+ AKASHI Takahiro 7 (0.5%)
+ Masami Hiramatsu 7 (0.5%)
+ Clément Léger 7 (0.5%)
+ Chia-Wei Wang 7 (0.5%)
+ Stefan Roese 6 (0.4%)
+ Alexandru Gagniuc 6 (0.4%)
+ Kuldeep Singh 6 (0.4%)
+ Peter Hoyes 6 (0.4%)
+ Chris Morgan 5 (0.4%)
+ Padmarao Begari 5 (0.4%)
+ Pierre-Clément Tosi 5 (0.4%)
+ Alistair Delva 5 (0.4%)
+ Vyacheslav Bocharov 5 (0.4%)
+ Christian Hewitt 5 (0.4%)
+ Andre Przywara 4 (0.3%)
+ Leo Yu-Chi Liang 4 (0.3%)
+ Ruchika Gupta 4 (0.3%)
+ Thomas Huth 4 (0.3%)
+ Priyanka Singh 4 (0.3%)
+ Ashok Reddy Soma 4 (0.3%)
+ Wolfgang Denk 4 (0.3%)
+ Claudiu Beznea 4 (0.3%)
+ Quentin Schulz 3 (0.2%)
+ Kever Yang 3 (0.2%)
+ Jagan Teki 3 (0.2%)
+ Nico Cheng 3 (0.2%)
+ Tien Fong Chee 3 (0.2%)
+ Frieder Schrempf 3 (0.2%)
+ Jorge Ramirez-Ortiz 3 (0.2%)
+ T Karthik Reddy 3 (0.2%)
+ Max Krummenacher 3 (0.2%)
+ Heiko Schocher 3 (0.2%)
+ Dan Sneddon 3 (0.2%)
+ Dario Binacchi 3 (0.2%)
+ Arnaud Ferraris 3 (0.2%)
+ Anatolij Gustschin 3 (0.2%)
+ Bharat Gooty 3 (0.2%)
+ Gary Bisson 2 (0.1%)
+ Heiko Thiery 2 (0.1%)
+ Giulio Benetti 2 (0.1%)
+ Ying-Chun Liu (PaulLiu) 2 (0.1%)
+ Yifeng Zhao 2 (0.1%)
+ Icenowy Zheng 2 (0.1%)
+ Thomas Skibo 2 (0.1%)
+ Minkyu Kang 2 (0.1%)
+ Zhaofeng Li 2 (0.1%)
+ Stefan Agner 2 (0.1%)
+ Usama Arif 2 (0.1%)
+ Stephen Carlson 2 (0.1%)
+ Philippe Reynes 2 (0.1%)
+ Kris Chaplin 2 (0.1%)
+ Stefano Babic 2 (0.1%)
+ Philippe Schenker 2 (0.1%)
+ Francesco Dolcini 2 (0.1%)
+ Jon Lin 2 (0.1%)
+ Johan Jonker 2 (0.1%)
+ Haolin Li 2 (0.1%)
+ Robert Marko 2 (0.1%)
+ Andrej Rosano 2 (0.1%)
+ Kristian Amlie 2 (0.1%)
+ Paul Barker 2 (0.1%)
+ Mihai Sain 2 (0.1%)
+ Patrick Wildt 1 (0.1%)
+ Pierre Bourdon 1 (0.1%)
+ Yi Liu 1 (0.1%)
+ Sjoerd Simons 1 (0.1%)
+ John Keeping 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Joakim Tjernlund 1 (0.1%)
+ Ram Narayanan 1 (0.1%)
+ Alexander Dahl 1 (0.1%)
+ Ramon Fried 1 (0.1%)
+ Mike Karels 1 (0.1%)
+ Ivan Mikhaylov 1 (0.1%)
+ Vincent Stehlé 1 (0.1%)
+ schspa 1 (0.1%)
+ Angelo Dureghello 1 (0.1%)
+ Samuel Dionne-Riel 1 (0.1%)
+ Clemens Gruber 1 (0.1%)
+ Marcin Niestroj 1 (0.1%)
+ Artem Lapkin 1 (0.1%)
+ William Grant 1 (0.1%)
+ Hou Zhiqiang 1 (0.1%)
+ Rajesh Bhagat 1 (0.1%)
+ Maninder Singh 1 (0.1%)
+ Cosmin-Florin Aluchenesei 1 (0.1%)
+ Wasim Khan 1 (0.1%)
+ Kshitiz Varshney 1 (0.1%)
+ Alban Bedel 1 (0.1%)
+ Meenakshi Aggarwal 1 (0.1%)
+ Wei Fu 1 (0.1%)
+ Chunfeng Yun 1 (0.1%)
+ Hannu Lounento 1 (0.1%)
+ Kirill Kapranov 1 (0.1%)
+ Balamanikandan Gunasundar 1 (0.1%)
+ Takahiro Kuwano 1 (0.1%)
+ Yanhong Wang 1 (0.1%)
+ Ariel D'Alessandro 1 (0.1%)
+ Andrey Zhizhikin 1 (0.1%)
+ Liam Beguin 1 (0.1%)
+ Sven Auhagen 1 (0.1%)
+ Denys Drozdov 1 (0.1%)
+ Igor Opaniuk 1 (0.1%)
+ Nick Hu 1 (0.1%)
+ Amjad Ouled-Ameur 1 (0.1%)
+ Hannes Schmelzer 1 (0.1%)
+ Elaine Zhang 1 (0.1%)
+ Holger Brunck 1 (0.1%)
+ Vagrant Cascadian 1 (0.1%)
+ Mark Tomlinson 1 (0.1%)
+ Zhengxun Li 1 (0.1%)
+ Chukun Pan 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Michael Scott 1 (0.1%)
+ Nishanth Menon 1 (0.1%)
+ Amit Kumar Mahapatra 1 (0.1%)
+ Denis Odintsov 1 (0.1%)
+ Simon Guinot 1 (0.1%)
+ Martyn Welch 1 (0.1%)
+ Guillaume La Roque 1 (0.1%)
+ Reto Schneider 1 (0.1%)
+ Hari Prasath 1 (0.1%)
+ Thibault Ferrante 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Andreas Schwab 1 (0.1%)
+ Callum Sinclair 1 (0.1%)
+ Thomas Hebb 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 29502 (31.2%)
+ Simon Glass 7761 (8.2%)
+ Frieder Schrempf 5561 (5.9%)
+ Michal Simek 3516 (3.7%)
+ Pali Rohár 3024 (3.2%)
+ Masahisa Kojima 2724 (2.9%)
+ Dzmitry Sankouski 2655 (2.8%)
+ Neil Armstrong 2449 (2.6%)
+ Michael Walle 2312 (2.4%)
+ Jan Kiszka 2125 (2.2%)
+ Samuel Holland 2042 (2.2%)
+ Mark Kettenis 1835 (1.9%)
+ Ilias Apalodimas 1532 (1.6%)
+ Padmarao Begari 1439 (1.5%)
+ Patrick Delaunay 1396 (1.5%)
+ Heinrich Schuchardt 1231 (1.3%)
+ Vyacheslav Bocharov 1226 (1.3%)
+ Marek Behún 1210 (1.3%)
+ Marcel Ziswiler 1183 (1.2%)
+ Adam Ford 1108 (1.2%)
+ Wolfgang Denk 1107 (1.2%)
+ Kristian Amlie 1075 (1.1%)
+ Anatolij Gustschin 941 (1.0%)
+ Jagan Teki 817 (0.9%)
+ Marek Vasut 730 (0.8%)
+ Thierry Reding 712 (0.8%)
+ Chia-Wei Wang 635 (0.7%)
+ Eugen Hristev 616 (0.7%)
+ Zhengxun Li 610 (0.6%)
+ Stefan Roese 598 (0.6%)
+ Christian Hewitt 565 (0.6%)
+ Fabio Estevam 548 (0.6%)
+ Ruchika Gupta 516 (0.5%)
+ Tim Harvey 420 (0.4%)
+ AKASHI Takahiro 414 (0.4%)
+ Peter Hoyes 409 (0.4%)
+ Rasmus Villemoes 368 (0.4%)
+ Stephan Gerhold 368 (0.4%)
+ Vladimir Oltean 329 (0.3%)
+ Alexandru Gagniuc 319 (0.3%)
+ Max Krummenacher 317 (0.3%)
+ Rajesh Bhagat 264 (0.3%)
+ Tien Fong Chee 260 (0.3%)
+ Thomas Huth 257 (0.3%)
+ Teresa Remmet 240 (0.3%)
+ Dan Sneddon 238 (0.3%)
+ Patrice Chotard 229 (0.2%)
+ Peng Fan 228 (0.2%)
+ Chukun Pan 215 (0.2%)
+ Bin Meng 174 (0.2%)
+ Andy Shevchenko 173 (0.2%)
+ Mathew McBride 165 (0.2%)
+ Claudiu Beznea 160 (0.2%)
+ Yi Liu 158 (0.2%)
+ Hannes Schmelzer 158 (0.2%)
+ Dario Binacchi 151 (0.2%)
+ Mihai Sain 149 (0.2%)
+ Andrey Zhizhikin 146 (0.2%)
+ Heiko Thiery 141 (0.1%)
+ Sean Anderson 140 (0.1%)
+ Guillaume La Roque 134 (0.1%)
+ Ye Li 130 (0.1%)
+ Balamanikandan Gunasundar 124 (0.1%)
+ Chris Morgan 115 (0.1%)
+ Andre Przywara 103 (0.1%)
+ Kuldeep Singh 102 (0.1%)
+ Cosmin-Florin Aluchenesei 97 (0.1%)
+ Ricardo Salveti 90 (0.1%)
+ Bharat Gooty 90 (0.1%)
+ Jon Lin 78 (0.1%)
+ Matthias Schiffer 75 (0.1%)
+ Ashok Reddy Soma 75 (0.1%)
+ Jorge Ramirez-Ortiz 74 (0.1%)
+ Nico Cheng 73 (0.1%)
+ Quentin Schulz 72 (0.1%)
+ Heiko Schocher 72 (0.1%)
+ Peter Robinson 69 (0.1%)
+ Masami Hiramatsu 68 (0.1%)
+ Thomas Skibo 65 (0.1%)
+ Leo Yu-Chi Liang 57 (0.1%)
+ Callum Sinclair 56 (0.1%)
+ Mark Tomlinson 52 (0.1%)
+ Oleksandr Suvorov 49 (0.1%)
+ Clément Léger 46 (0.0%)
+ Francesco Dolcini 43 (0.0%)
+ Robert Marko 40 (0.0%)
+ T Karthik Reddy 38 (0.0%)
+ Ying-Chun Liu (PaulLiu) 38 (0.0%)
+ Zhaofeng Li 38 (0.0%)
+ Stephen Carlson 38 (0.0%)
+ Paul Barker 30 (0.0%)
+ Priyanka Singh 29 (0.0%)
+ Kshitiz Varshney 29 (0.0%)
+ Arnaud Ferraris 27 (0.0%)
+ Nishanth Menon 27 (0.0%)
+ Alistair Delva 24 (0.0%)
+ Kever Yang 23 (0.0%)
+ Usama Arif 21 (0.0%)
+ Takahiro Kuwano 20 (0.0%)
+ Patrick Wildt 19 (0.0%)
+ Pierre-Clément Tosi 16 (0.0%)
+ Hou Zhiqiang 16 (0.0%)
+ Gary Bisson 14 (0.0%)
+ Reto Schneider 14 (0.0%)
+ Minkyu Kang 13 (0.0%)
+ Philippe Schenker 12 (0.0%)
+ Chris Packham 12 (0.0%)
+ Thibault Ferrante 12 (0.0%)
+ Johan Jonker 10 (0.0%)
+ Haolin Li 10 (0.0%)
+ Elaine Zhang 10 (0.0%)
+ Michael Scott 10 (0.0%)
+ Nick Hu 9 (0.0%)
+ Philippe Reynes 8 (0.0%)
+ Joakim Tjernlund 8 (0.0%)
+ Maninder Singh 8 (0.0%)
+ Wasim Khan 8 (0.0%)
+ Yifeng Zhao 7 (0.0%)
+ schspa 7 (0.0%)
+ Ariel D'Alessandro 7 (0.0%)
+ Stefano Babic 6 (0.0%)
+ Holger Brunck 6 (0.0%)
+ Denis Odintsov 6 (0.0%)
+ Thomas Hebb 6 (0.0%)
+ Stefan Agner 5 (0.0%)
+ Kris Chaplin 5 (0.0%)
+ Jaehoon Chung 5 (0.0%)
+ Ram Narayanan 5 (0.0%)
+ Yanhong Wang 5 (0.0%)
+ Giulio Benetti 4 (0.0%)
+ Icenowy Zheng 4 (0.0%)
+ Wei Fu 4 (0.0%)
+ Denys Drozdov 4 (0.0%)
+ Amit Kumar Mahapatra 4 (0.0%)
+ Pierre Bourdon 3 (0.0%)
+ Sven Auhagen 3 (0.0%)
+ Martyn Welch 3 (0.0%)
+ Hari Prasath 3 (0.0%)
+ Andrej Rosano 2 (0.0%)
+ Sjoerd Simons 2 (0.0%)
+ Mike Karels 2 (0.0%)
+ Angelo Dureghello 2 (0.0%)
+ Marcin Niestroj 2 (0.0%)
+ Artem Lapkin 2 (0.0%)
+ William Grant 2 (0.0%)
+ Alban Bedel 2 (0.0%)
+ Meenakshi Aggarwal 2 (0.0%)
+ Hannu Lounento 2 (0.0%)
+ Kirill Kapranov 2 (0.0%)
+ Igor Opaniuk 2 (0.0%)
+ Andreas Schwab 2 (0.0%)
+ John Keeping 1 (0.0%)
+ Alexander Dahl 1 (0.0%)
+ Ramon Fried 1 (0.0%)
+ Ivan Mikhaylov 1 (0.0%)
+ Vincent Stehlé 1 (0.0%)
+ Samuel Dionne-Riel 1 (0.0%)
+ Clemens Gruber 1 (0.0%)
+ Chunfeng Yun 1 (0.0%)
+ Liam Beguin 1 (0.0%)
+ Amjad Ouled-Ameur 1 (0.0%)
+ Vagrant Cascadian 1 (0.0%)
+ Simon Guinot 1 (0.0%)
+ Jernej Skrabec 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 11969 (26.1%)
+ Anatolij Gustschin 917 (2.0%)
+ Patrick Delaunay 813 (1.8%)
+ Eugen Hristev 526 (1.1%)
+ Marcel Ziswiler 395 (0.9%)
+ Thomas Huth 256 (0.6%)
+ Wolfgang Denk 238 (0.5%)
+ Marek Behún 151 (0.3%)
+ Andrey Zhizhikin 146 (0.3%)
+ Adam Ford 142 (0.3%)
+ Rajesh Bhagat 129 (0.3%)
+ Guillaume La Roque 81 (0.2%)
+ Mathew McBride 44 (0.1%)
+ Tim Harvey 33 (0.1%)
+ Mark Tomlinson 32 (0.1%)
+ AKASHI Takahiro 29 (0.1%)
+ Robert Marko 24 (0.1%)
+ Kshitiz Varshney 16 (0.0%)
+ Chris Packham 12 (0.0%)
+ Pierre-Clément Tosi 5 (0.0%)
+ Quentin Schulz 3 (0.0%)
+ Nishanth Menon 3 (0.0%)
+ Philippe Schenker 2 (0.0%)
+ Jon Lin 1 (0.0%)
+ Holger Brunck 1 (0.0%)
+ William Grant 1 (0.0%)
+ Andreas Schwab 1 (0.0%)
+ Vincent Stehlé 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 205)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Andre Przywara 44 (21.5%)
+ Marek Behún 33 (16.1%)
+ Tom Rini 13 (6.3%)
+ Oleksandr Suvorov 11 (5.4%)
+ Neil Armstrong 11 (5.4%)
+ Michal Simek 10 (4.9%)
+ Tom Warren 9 (4.4%)
+ Marcel Ziswiler 8 (3.9%)
+ Ilias Apalodimas 7 (3.4%)
+ Priyanka Jain 6 (2.9%)
+ Heinrich Schuchardt 6 (2.9%)
+ Jaehoon Chung 5 (2.4%)
+ Patrice Chotard 5 (2.4%)
+ Markus Niebel 4 (2.0%)
+ Sin Hui Kho 3 (1.5%)
+ Matthias Brugger 3 (1.5%)
+ Ashok Reddy Soma 3 (1.5%)
+ Jagan Teki 3 (1.5%)
+ Simon Glass 3 (1.5%)
+ Eugen Hristev 2 (1.0%)
+ Mattijs Korpershoek 2 (1.0%)
+ Rayagonda Kokatanur 2 (1.0%)
+ Ricardo Salveti 2 (1.0%)
+ Max Krummenacher 2 (1.0%)
+ Mark Kettenis 2 (1.0%)
+ Jason Zhu 1 (0.5%)
+ Adrian Fiergolski 1 (0.5%)
+ Minkyu Kang 1 (0.5%)
+ Kever Yang 1 (0.5%)
+ Jorge Ramirez-Ortiz 1 (0.5%)
+ Bin Meng 1 (0.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 989)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 165 (16.7%)
+ Simon Glass 158 (16.0%)
+ Ramon Fried 61 (6.2%)
+ Priyanka Jain 56 (5.7%)
+ Bin Meng 50 (5.1%)
+ Marek Behún 48 (4.9%)
+ Heinrich Schuchardt 36 (3.6%)
+ Patrice Chotard 32 (3.2%)
+ Fabio Estevam 32 (3.2%)
+ Andre Przywara 30 (3.0%)
+ Ilias Apalodimas 28 (2.8%)
+ Leo Yu-Chi Liang 27 (2.7%)
+ Vladimir Oltean 24 (2.4%)
+ Kever Yang 23 (2.3%)
+ Tom Rini 20 (2.0%)
+ Jaehoon Chung 18 (1.8%)
+ Artem Lapkin 18 (1.8%)
+ Alexandru Gagniuc 17 (1.7%)
+ Patrick Delaunay 16 (1.6%)
+ Rick Chen 14 (1.4%)
+ Jagan Teki 13 (1.3%)
+ Peng Fan 12 (1.2%)
+ Heiko Schocher 10 (1.0%)
+ Sean Anderson 9 (0.9%)
+ Peter Robinson 6 (0.6%)
+ Oleksandr Suvorov 4 (0.4%)
+ Neil Armstrong 4 (0.4%)
+ Marcel Ziswiler 4 (0.4%)
+ Igor Opaniuk 4 (0.4%)
+ Patrick Wildt 4 (0.4%)
+ Thomas Huth 3 (0.3%)
+ Tien Fong Chee 3 (0.3%)
+ Adrian Fiergolski 2 (0.2%)
+ Minkyu Kang 2 (0.2%)
+ Stefano Babic 2 (0.2%)
+ Pratyush Yadav 2 (0.2%)
+ Hou Zhiqiang 2 (0.2%)
+ Heiko Thiery 2 (0.2%)
+ Samuel Holland 2 (0.2%)
+ Pali Rohár 2 (0.2%)
+ Frieder Schrempf 2 (0.2%)
+ Michal Simek 1 (0.1%)
+ Mark Kettenis 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Alexander Dahl 1 (0.1%)
+ Philipp Tomsich 1 (0.1%)
+ Lukasz Majewski 1 (0.1%)
+ Ian Ray 1 (0.1%)
+ Haibo Chen 1 (0.1%)
+ Atish Patra 1 (0.1%)
+ Jens Wiklander 1 (0.1%)
+ Ryan Chen 1 (0.1%)
+ Miquel Raynal 1 (0.1%)
+ Qu Wenruo 1 (0.1%)
+ Lokesh Vutla 1 (0.1%)
+ Daniel Schwierzeck 1 (0.1%)
+ Aleksandar Gerasimovski 1 (0.1%)
+ Icenowy Zheng 1 (0.1%)
+ Wasim Khan 1 (0.1%)
+ Andy Shevchenko 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Jan Kiszka 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 66)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Artem Lapkin 16 (24.2%)
+ Masami Hiramatsu 7 (10.6%)
+ Michael Walle 6 (9.1%)
+ Simon Glass 2 (3.0%)
+ Bin Meng 2 (3.0%)
+ Marek Behún 2 (3.0%)
+ Patrice Chotard 2 (3.0%)
+ Ilias Apalodimas 2 (3.0%)
+ Vladimir Oltean 2 (3.0%)
+ Samuel Holland 2 (3.0%)
+ Pali Rohár 2 (3.0%)
+ Ying-Chun Liu (PaulLiu) 2 (3.0%)
+ Chris Morgan 2 (3.0%)
+ Andre Przywara 1 (1.5%)
+ Tom Rini 1 (1.5%)
+ Alexandru Gagniuc 1 (1.5%)
+ Peter Robinson 1 (1.5%)
+ Marcel Ziswiler 1 (1.5%)
+ Patrick Wildt 1 (1.5%)
+ Heiko Thiery 1 (1.5%)
+ Frieder Schrempf 1 (1.5%)
+ Wasim Khan 1 (1.5%)
+ Mattijs Korpershoek 1 (1.5%)
+ Andrey Zhizhikin 1 (1.5%)
+ Tim Harvey 1 (1.5%)
+ Vincent Stehlé 1 (1.5%)
+ Tommaso Merciai 1 (1.5%)
+ Tony Dinh 1 (1.5%)
+ Teresa Remmet 1 (1.5%)
+ Vyacheslav Bocharov 1 (1.5%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 66)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 17 (25.8%)
+ Marek Behún 8 (12.1%)
+ Vladimir Oltean 8 (12.1%)
+ Patrick Delaunay 4 (6.1%)
+ Ye Li 3 (4.5%)
+ Michael Walle 2 (3.0%)
+ Ilias Apalodimas 2 (3.0%)
+ Stefan Roese 2 (3.0%)
+ Heinrich Schuchardt 2 (3.0%)
+ Fabio Estevam 2 (3.0%)
+ Jon Lin 2 (3.0%)
+ Yifeng Zhao 2 (3.0%)
+ Ruchika Gupta 2 (3.0%)
+ Pali Rohár 1 (1.5%)
+ Tom Rini 1 (1.5%)
+ Frieder Schrempf 1 (1.5%)
+ Peng Fan 1 (1.5%)
+ Heiko Schocher 1 (1.5%)
+ Neil Armstrong 1 (1.5%)
+ Kirill Kapranov 1 (1.5%)
+ Gary Bisson 1 (1.5%)
+ Arnaud Ferraris 1 (1.5%)
+ Kuldeep Singh 1 (1.5%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 19)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Eugen Hristev 4 (21.1%)
+ Alexandru Gagniuc 3 (15.8%)
+ Herbert Poetzl 2 (10.5%)
+ Michael Walle 1 (5.3%)
+ Tom Rini 1 (5.3%)
+ Neil Armstrong 1 (5.3%)
+ Artem Lapkin 1 (5.3%)
+ Masami Hiramatsu 1 (5.3%)
+ Vyacheslav Bocharov 1 (5.3%)
+ 5kft@5kft.org 1 (5.3%)
+ Xin Lin 1 (5.3%)
+ Coverity Scan 1 (5.3%)
+ Michael Scott 1 (5.3%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 19)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Claudiu Beznea 4 (21.1%)
+ Patrick Delaunay 3 (15.8%)
+ Tom Rini 2 (10.5%)
+ Neil Armstrong 2 (10.5%)
+ Patrice Chotard 2 (10.5%)
+ Simon Glass 1 (5.3%)
+ Marek Behún 1 (5.3%)
+ Andre Przywara 1 (5.3%)
+ Sean Anderson 1 (5.3%)
+ Oleksandr Suvorov 1 (5.3%)
+ Chunfeng Yun 1 (5.3%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 654 (46.2%)
+ Konsulko Group 179 (12.6%)
+ Google, Inc. 151 (10.7%)
+ NXP 89 (6.3%)
+ DENX Software Engineering 79 (5.6%)
+ ST Microelectronics 49 (3.5%)
+ Linaro 48 (3.4%)
+ Toradex 25 (1.8%)
+ AMD 15 (1.1%)
+ BayLibre SAS 15 (1.1%)
+ Intel 14 (1.0%)
+ ARM 13 (0.9%)
+ Rockchip 12 (0.8%)
+ Siemens 11 (0.8%)
+ Phytec 10 (0.7%)
+ NVidia 9 (0.6%)
+ Xilinx 8 (0.6%)
+ Bootlin 7 (0.5%)
+ Collabora Ltd. 6 (0.4%)
+ Red Hat 5 (0.4%)
+ Amarula Solutions 3 (0.2%)
+ Broadcom 3 (0.2%)
+ Debian.org 3 (0.2%)
+ Samsung 3 (0.2%)
+ Boundary Devices 2 (0.1%)
+ CompuLab 1 (0.1%)
+ SUSE 1 (0.1%)
+ Texas Instruments 1 (0.1%)
+ Canonical 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 31820 (33.6%)
+ Konsulko Group 29502 (31.2%)
+ Google, Inc. 7801 (8.2%)
+ Linaro 5243 (5.5%)
+ DENX Software Engineering 3899 (4.1%)
+ AMD 3516 (3.7%)
+ BayLibre SAS 2584 (2.7%)
+ Siemens 2126 (2.2%)
+ ST Microelectronics 1625 (1.7%)
+ Toradex 1567 (1.7%)
+ NXP 1242 (1.3%)
+ Amarula Solutions 817 (0.9%)
+ NVidia 712 (0.8%)
+ ARM 534 (0.6%)
+ Intel 438 (0.5%)
+ Rockchip 349 (0.4%)
+ Red Hat 261 (0.3%)
+ Phytec 240 (0.3%)
+ Xilinx 117 (0.1%)
+ Broadcom 90 (0.1%)
+ Bootlin 46 (0.0%)
+ Collabora Ltd. 39 (0.0%)
+ Debian.org 39 (0.0%)
+ Texas Instruments 27 (0.0%)
+ Samsung 18 (0.0%)
+ Boundary Devices 14 (0.0%)
+ CompuLab 2 (0.0%)
+ SUSE 2 (0.0%)
+ Canonical 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 205)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 63 (30.7%)
+ ARM 44 (21.5%)
+ Konsulko Group 13 (6.3%)
+ BayLibre SAS 13 (6.3%)
+ Xilinx 13 (6.3%)
+ Toradex 10 (4.9%)
+ NVidia 9 (4.4%)
+ Linaro 7 (3.4%)
+ NXP 6 (2.9%)
+ Samsung 6 (2.9%)
+ ST Microelectronics 5 (2.4%)
+ Google, Inc. 3 (1.5%)
+ Amarula Solutions 3 (1.5%)
+ Intel 3 (1.5%)
+ SUSE 3 (1.5%)
+ Rockchip 2 (1.0%)
+ Broadcom 2 (1.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 167)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 89 (53.3%)
+ NXP 12 (7.2%)
+ DENX Software Engineering 7 (4.2%)
+ Toradex 6 (3.6%)
+ Rockchip 6 (3.6%)
+ Linaro 5 (3.0%)
+ ARM 4 (2.4%)
+ Collabora Ltd. 4 (2.4%)
+ BayLibre SAS 3 (1.8%)
+ Xilinx 3 (1.8%)
+ Google, Inc. 3 (1.8%)
+ Intel 3 (1.8%)
+ Samsung 2 (1.2%)
+ ST Microelectronics 2 (1.2%)
+ Siemens 2 (1.2%)
+ Red Hat 2 (1.2%)
+ Debian.org 2 (1.2%)
+ Konsulko Group 1 (0.6%)
+ NVidia 1 (0.6%)
+ Amarula Solutions 1 (0.6%)
+ SUSE 1 (0.6%)
+ Broadcom 1 (0.6%)
+ AMD 1 (0.6%)
+ Phytec 1 (0.6%)
+ Bootlin 1 (0.6%)
+ Texas Instruments 1 (0.6%)
+ Boundary Devices 1 (0.6%)
+ CompuLab 1 (0.6%)
+ Canonical 1 (0.6%)
+ ================================ =====
diff --git a/doc/develop/statistics/u-boot-stats-v2022.04.rst b/doc/develop/statistics/u-boot-stats-v2022.04.rst
new file mode 100644
index 0000000..5d61832
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2022.04.rst
@@ -0,0 +1,843 @@
+:orphan:
+
+Release Statistics for U-Boot v2022.04
+======================================
+
+* Processed 1555 csets from 193 developers
+
+* 27 employers found
+
+* A total of 118078 lines added, 34020 removed (delta 84058)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 342 (22.0%)
+ Pali Rohár 154 (9.9%)
+ Heinrich Schuchardt 75 (4.8%)
+ Tom Rini 66 (4.2%)
+ Patrick Delaunay 56 (3.6%)
+ Michal Simek 36 (2.3%)
+ Marek Vasut 32 (2.1%)
+ Vladimir Oltean 29 (1.9%)
+ Sean Anderson 26 (1.7%)
+ Mark Kettenis 26 (1.7%)
+ Ovidiu Panait 25 (1.6%)
+ Aswath Govindraju 24 (1.5%)
+ Marek Behún 24 (1.5%)
+ Adam Ford 24 (1.5%)
+ Andre Przywara 22 (1.4%)
+ Sinthu Raja 19 (1.2%)
+ Aleksandar Gerasimovski 18 (1.2%)
+ Alper Nebi Yasak 17 (1.1%)
+ Ye Li 15 (1.0%)
+ AKASHI Takahiro 14 (0.9%)
+ Vignesh Raghavendra 14 (0.9%)
+ Tony Dinh 12 (0.8%)
+ Heiko Thiery 12 (0.8%)
+ Jan Kiszka 11 (0.7%)
+ Patrice Chotard 11 (0.7%)
+ Michael Walle 11 (0.7%)
+ Keerthy 11 (0.7%)
+ Lukasz Majewski 11 (0.7%)
+ Vagrant Cascadian 11 (0.7%)
+ Stefan Roese 10 (0.6%)
+ Icenowy Zheng 10 (0.6%)
+ Swapnil Jakhade 10 (0.6%)
+ Etienne Carriere 10 (0.6%)
+ Ilias Apalodimas 9 (0.6%)
+ Masami Hiramatsu 9 (0.6%)
+ Chia-Wei Wang 9 (0.6%)
+ David Huang 9 (0.6%)
+ Bin Meng 8 (0.5%)
+ Tim Harvey 7 (0.5%)
+ Angus Ainslie 7 (0.5%)
+ Kishon Vijay Abraham I 7 (0.5%)
+ Mattijs Korpershoek 7 (0.5%)
+ Fabio Estevam 6 (0.4%)
+ Samuel Holland 6 (0.4%)
+ Ying-Chun Liu (PaulLiu) 6 (0.4%)
+ Dylan Hung 6 (0.4%)
+ Amit Singh Tomar 6 (0.4%)
+ Peter Hoyes 6 (0.4%)
+ Andrey Zhizhikin 5 (0.3%)
+ Andy Shevchenko 5 (0.3%)
+ Niklas Cassel 5 (0.3%)
+ Philippe Reynes 5 (0.3%)
+ Patrick Wildt 5 (0.3%)
+ Eugen Hristev 5 (0.3%)
+ Damien Le Moal 4 (0.3%)
+ Christian Gmeiner 4 (0.3%)
+ Jesse Taube 4 (0.3%)
+ Felix Brack 4 (0.3%)
+ Anup Patel 4 (0.3%)
+ Amjad Ouled-Ameur 4 (0.3%)
+ Oleksandr Suvorov 4 (0.3%)
+ T Karthik Reddy 4 (0.3%)
+ Stefan Eichenberger 4 (0.3%)
+ Mihai Sain 4 (0.3%)
+ Tudor Ambarus 4 (0.3%)
+ Francesco Dolcini 3 (0.2%)
+ Adrian Fiergolski 3 (0.2%)
+ Neil Armstrong 3 (0.2%)
+ Haibo Chen 3 (0.2%)
+ Nam Nguyen 3 (0.2%)
+ Janne Grunau 3 (0.2%)
+ Hou Zhiqiang 3 (0.2%)
+ Richard Zhu 3 (0.2%)
+ Ricardo Salveti 3 (0.2%)
+ Ashok Reddy Soma 3 (0.2%)
+ Siva Durga Prasad Paladugu 3 (0.2%)
+ Qu Wenruo 3 (0.2%)
+ Sughosh Ganu 2 (0.1%)
+ Jernej Skrabec 2 (0.1%)
+ Heiko Schocher 2 (0.1%)
+ Nikita Yushchenko 2 (0.1%)
+ Johannes Krottmayer 2 (0.1%)
+ Johan Jonker 2 (0.1%)
+ Giulio Benetti 2 (0.1%)
+ Robert Marko 2 (0.1%)
+ Linus Walleij 2 (0.1%)
+ Bharat Gooty 2 (0.1%)
+ Marcel Ziswiler 2 (0.1%)
+ Michael Trimarchi 2 (0.1%)
+ Harald Seiler 2 (0.1%)
+ Rafał Miłecki 2 (0.1%)
+ Matthias Schiffer 2 (0.1%)
+ Moritz Fischer 2 (0.1%)
+ Rasmus Villemoes 2 (0.1%)
+ Nishanth Menon 2 (0.1%)
+ Sunil V L 2 (0.1%)
+ Dario Binacchi 2 (0.1%)
+ Oliver Graute 2 (0.1%)
+ Alice Guo 2 (0.1%)
+ Martin Schiller 2 (0.1%)
+ Mathew McBride 2 (0.1%)
+ Chris Morgan 2 (0.1%)
+ Loic Poulain 2 (0.1%)
+ John Keeping 2 (0.1%)
+ qianfan Zhao 2 (0.1%)
+ Samuel Dionne-Riel 2 (0.1%)
+ Henrik Grimler 2 (0.1%)
+ Hari Prasath 2 (0.1%)
+ Jon Lin 2 (0.1%)
+ Joel Stanley 2 (0.1%)
+ Han Xu 1 (0.1%)
+ Jérôme Carretero 1 (0.1%)
+ Hector Martin 1 (0.1%)
+ Michael Opdenacker 1 (0.1%)
+ Alexander Graf 1 (0.1%)
+ Matthias Brugger 1 (0.1%)
+ Leonidas-Panagiotis Papadakos 1 (0.1%)
+ Marty E. Plummer 1 (0.1%)
+ Max Merchel 1 (0.1%)
+ Peng Fan 1 (0.1%)
+ Gabriel Fernandez 1 (0.1%)
+ Christophe Kerello 1 (0.1%)
+ Soeren Moch 1 (0.1%)
+ Wolfgang Grandegger 1 (0.1%)
+ Yann Droneaud 1 (0.1%)
+ Sébastien Szymanski 1 (0.1%)
+ Romain Naour 1 (0.1%)
+ Chris Packham 1 (0.1%)
+ Francois Berder 1 (0.1%)
+ Daniel Klauer 1 (0.1%)
+ Masahisa Kojima 1 (0.1%)
+ Rayagonda Kokatanur 1 (0.1%)
+ Roger Quadros 1 (0.1%)
+ Neal Liu 1 (0.1%)
+ Suman Anna 1 (0.1%)
+ Tommaso Merciai 1 (0.1%)
+ Oleh Kravchenko 1 (0.1%)
+ Stefan Agner 1 (0.1%)
+ Luca Ceresoli 1 (0.1%)
+ Nikita Maslov 1 (0.1%)
+ Detlev Casanova 1 (0.1%)
+ qthedev 1 (0.1%)
+ Peter Cai 1 (0.1%)
+ Zhang Ning 1 (0.1%)
+ Thomas Watson 1 (0.1%)
+ Sanket Parmar 1 (0.1%)
+ Bryan Brattlof 1 (0.1%)
+ Oliver Stäbler 1 (0.1%)
+ Gary Bisson 1 (0.1%)
+ Sven Schwermer 1 (0.1%)
+ Christoph Niedermaier 1 (0.1%)
+ Mattias Hansson 1 (0.1%)
+ Ariel D'Alessandro 1 (0.1%)
+ Haolin Li 1 (0.1%)
+ Jacky Bai 1 (0.1%)
+ Jorge Ramirez-Ortiz 1 (0.1%)
+ Codrin Ciubotariu 1 (0.1%)
+ Ramon Fried 1 (0.1%)
+ Greentime Hu 1 (0.1%)
+ Jianpeng Bu 1 (0.1%)
+ Camelia Groza 1 (0.1%)
+ Sergey V. Lobanov 1 (0.1%)
+ Daniel Wagenknecht 1 (0.1%)
+ Lars Weber 1 (0.1%)
+ Jamin Lin 1 (0.1%)
+ Roman Stratiienko 1 (0.1%)
+ Anastasiia Lukianenko 1 (0.1%)
+ Alexandru Gagniuc 1 (0.1%)
+ Shravya Kumbham 1 (0.1%)
+ Manish Narani 1 (0.1%)
+ AJ Bagwell 1 (0.1%)
+ Thomas Huth 1 (0.1%)
+ David Rivshin 1 (0.1%)
+ Stefan Mätje 1 (0.1%)
+ chao zeng 1 (0.1%)
+ Markus Koch 1 (0.1%)
+ Dominic Rath 1 (0.1%)
+ Michael Liebert 1 (0.1%)
+ Peter Robinson 1 (0.1%)
+ Piotr Kubik 1 (0.1%)
+ Joel Peshkin 1 (0.1%)
+ Maciej W. Rozycki 1 (0.1%)
+ Pierre Bourdon 1 (0.1%)
+ Brian Norris 1 (0.1%)
+ Sandeep Gundlupet Raju 1 (0.1%)
+ Ivan Mikhaylov 1 (0.1%)
+ Alexander Preißner 1 (0.1%)
+ Radu Bulie 1 (0.1%)
+ Ryan Chen 1 (0.1%)
+ Walter Stoll 1 (0.1%)
+ Alistair Delva 1 (0.1%)
+ Johnny Huang 1 (0.1%)
+ Julien Masson 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 22588 (17.2%)
+ Aswath Govindraju 11980 (9.1%)
+ Tom Rini 7855 (6.0%)
+ Ying-Chun Liu (PaulLiu) 6491 (4.9%)
+ Pali Rohár 5387 (4.1%)
+ Heiko Thiery 5341 (4.1%)
+ Mark Kettenis 4624 (3.5%)
+ Heinrich Schuchardt 4142 (3.1%)
+ Sinthu Raja 4120 (3.1%)
+ Tim Harvey 4027 (3.1%)
+ Vladimir Oltean 3994 (3.0%)
+ Marcel Ziswiler 3699 (2.8%)
+ Bharat Gooty 3544 (2.7%)
+ Ovidiu Panait 3437 (2.6%)
+ Marek Vasut 3434 (2.6%)
+ Patrick Delaunay 3401 (2.6%)
+ Keerthy 2274 (1.7%)
+ David Huang 2032 (1.5%)
+ Ariel D'Alessandro 2003 (1.5%)
+ Michal Simek 1465 (1.1%)
+ Mathew McBride 1360 (1.0%)
+ AKASHI Takahiro 1335 (1.0%)
+ Alper Nebi Yasak 1124 (0.9%)
+ Icenowy Zheng 1089 (0.8%)
+ Tony Dinh 1083 (0.8%)
+ Swapnil Jakhade 1000 (0.8%)
+ Sean Anderson 919 (0.7%)
+ Ye Li 787 (0.6%)
+ Andre Przywara 728 (0.6%)
+ Loic Poulain 696 (0.5%)
+ Michael Walle 670 (0.5%)
+ Tudor Ambarus 636 (0.5%)
+ Marek Behún 603 (0.5%)
+ Qu Wenruo 603 (0.5%)
+ Rayagonda Kokatanur 583 (0.4%)
+ Dominic Rath 579 (0.4%)
+ Mattijs Korpershoek 568 (0.4%)
+ Amit Singh Tomar 563 (0.4%)
+ Patrick Wildt 530 (0.4%)
+ Ryan Chen 469 (0.4%)
+ Lukasz Majewski 454 (0.3%)
+ Oleksandr Suvorov 427 (0.3%)
+ Adam Ford 426 (0.3%)
+ Aleksandar Gerasimovski 407 (0.3%)
+ Johnny Huang 403 (0.3%)
+ Etienne Carriere 386 (0.3%)
+ Masami Hiramatsu 368 (0.3%)
+ Angus Ainslie 330 (0.3%)
+ Linus Walleij 318 (0.2%)
+ Chia-Wei Wang 299 (0.2%)
+ Vignesh Raghavendra 272 (0.2%)
+ Dylan Hung 268 (0.2%)
+ Ilias Apalodimas 255 (0.2%)
+ Jan Kiszka 247 (0.2%)
+ T Karthik Reddy 234 (0.2%)
+ Anup Patel 232 (0.2%)
+ Neil Armstrong 232 (0.2%)
+ Sunil V L 227 (0.2%)
+ Maciej W. Rozycki 189 (0.1%)
+ Damien Le Moal 174 (0.1%)
+ Marty E. Plummer 166 (0.1%)
+ Peter Hoyes 160 (0.1%)
+ Kishon Vijay Abraham I 154 (0.1%)
+ Samuel Holland 116 (0.1%)
+ Jamin Lin 112 (0.1%)
+ Stefan Roese 109 (0.1%)
+ Ricardo Salveti 103 (0.1%)
+ Andy Shevchenko 98 (0.1%)
+ Alexandru Gagniuc 96 (0.1%)
+ Janne Grunau 92 (0.1%)
+ Eugen Hristev 90 (0.1%)
+ Moritz Fischer 83 (0.1%)
+ Bin Meng 80 (0.1%)
+ Zhang Ning 79 (0.1%)
+ Jesse Taube 73 (0.1%)
+ Alice Guo 66 (0.1%)
+ Matthias Brugger 65 (0.0%)
+ Rasmus Villemoes 63 (0.0%)
+ qianfan Zhao 63 (0.0%)
+ Rafał Miłecki 62 (0.0%)
+ Han Xu 62 (0.0%)
+ Roger Quadros 62 (0.0%)
+ Richard Zhu 59 (0.0%)
+ Felix Brack 56 (0.0%)
+ Christian Gmeiner 55 (0.0%)
+ Michael Trimarchi 53 (0.0%)
+ Jacky Bai 52 (0.0%)
+ Christoph Niedermaier 50 (0.0%)
+ Stefan Eichenberger 49 (0.0%)
+ Mihai Sain 48 (0.0%)
+ Philippe Reynes 46 (0.0%)
+ Amjad Ouled-Ameur 46 (0.0%)
+ Fabio Estevam 45 (0.0%)
+ Andrey Zhizhikin 43 (0.0%)
+ Sughosh Ganu 43 (0.0%)
+ Ramon Fried 39 (0.0%)
+ Haibo Chen 38 (0.0%)
+ Joel Stanley 38 (0.0%)
+ David Rivshin 36 (0.0%)
+ Detlev Casanova 34 (0.0%)
+ Shravya Kumbham 32 (0.0%)
+ Stefan Agner 31 (0.0%)
+ Nishanth Menon 29 (0.0%)
+ Daniel Klauer 29 (0.0%)
+ AJ Bagwell 29 (0.0%)
+ Patrice Chotard 28 (0.0%)
+ Piotr Kubik 28 (0.0%)
+ Bryan Brattlof 27 (0.0%)
+ Thomas Watson 26 (0.0%)
+ Matthias Schiffer 24 (0.0%)
+ Michael Opdenacker 23 (0.0%)
+ Siva Durga Prasad Paladugu 22 (0.0%)
+ Chris Morgan 22 (0.0%)
+ Hou Zhiqiang 19 (0.0%)
+ Ashok Reddy Soma 19 (0.0%)
+ Jorge Ramirez-Ortiz 19 (0.0%)
+ Codrin Ciubotariu 19 (0.0%)
+ Masahisa Kojima 18 (0.0%)
+ Peter Cai 16 (0.0%)
+ Ivan Mikhaylov 16 (0.0%)
+ Julien Masson 15 (0.0%)
+ Francesco Dolcini 14 (0.0%)
+ Sanket Parmar 14 (0.0%)
+ Sven Schwermer 14 (0.0%)
+ Max Merchel 12 (0.0%)
+ Radu Bulie 12 (0.0%)
+ Alistair Delva 12 (0.0%)
+ Vagrant Cascadian 11 (0.0%)
+ Samuel Dionne-Riel 10 (0.0%)
+ Oleh Kravchenko 10 (0.0%)
+ Harald Seiler 9 (0.0%)
+ Jon Lin 9 (0.0%)
+ Christophe Kerello 9 (0.0%)
+ Martin Schiller 8 (0.0%)
+ Henrik Grimler 8 (0.0%)
+ Mattias Hansson 8 (0.0%)
+ chao zeng 8 (0.0%)
+ Brian Norris 8 (0.0%)
+ Robert Marko 7 (0.0%)
+ Niklas Cassel 6 (0.0%)
+ Heiko Schocher 6 (0.0%)
+ Johan Jonker 6 (0.0%)
+ Hari Prasath 6 (0.0%)
+ Gabriel Fernandez 6 (0.0%)
+ Yann Droneaud 5 (0.0%)
+ Tommaso Merciai 5 (0.0%)
+ Jianpeng Bu 5 (0.0%)
+ Thomas Huth 5 (0.0%)
+ Michael Liebert 5 (0.0%)
+ Adrian Fiergolski 4 (0.0%)
+ Dario Binacchi 4 (0.0%)
+ Suman Anna 4 (0.0%)
+ Camelia Groza 4 (0.0%)
+ Markus Koch 4 (0.0%)
+ Peter Robinson 4 (0.0%)
+ Nam Nguyen 3 (0.0%)
+ Johannes Krottmayer 3 (0.0%)
+ Giulio Benetti 3 (0.0%)
+ Oliver Graute 3 (0.0%)
+ John Keeping 3 (0.0%)
+ Wolfgang Grandegger 3 (0.0%)
+ Nikita Maslov 3 (0.0%)
+ Pierre Bourdon 3 (0.0%)
+ Jernej Skrabec 2 (0.0%)
+ Nikita Yushchenko 2 (0.0%)
+ Alexander Graf 2 (0.0%)
+ Peng Fan 2 (0.0%)
+ Chris Packham 2 (0.0%)
+ Luca Ceresoli 2 (0.0%)
+ qthedev 2 (0.0%)
+ Oliver Stäbler 2 (0.0%)
+ Gary Bisson 2 (0.0%)
+ Haolin Li 2 (0.0%)
+ Greentime Hu 2 (0.0%)
+ Sergey V. Lobanov 2 (0.0%)
+ Daniel Wagenknecht 2 (0.0%)
+ Lars Weber 2 (0.0%)
+ Manish Narani 2 (0.0%)
+ Stefan Mätje 2 (0.0%)
+ Sandeep Gundlupet Raju 2 (0.0%)
+ Jérôme Carretero 1 (0.0%)
+ Hector Martin 1 (0.0%)
+ Leonidas-Panagiotis Papadakos 1 (0.0%)
+ Soeren Moch 1 (0.0%)
+ Sébastien Szymanski 1 (0.0%)
+ Romain Naour 1 (0.0%)
+ Francois Berder 1 (0.0%)
+ Neal Liu 1 (0.0%)
+ Roman Stratiienko 1 (0.0%)
+ Anastasiia Lukianenko 1 (0.0%)
+ Joel Peshkin 1 (0.0%)
+ Alexander Preißner 1 (0.0%)
+ Walter Stoll 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Tom Rini 3537 (10.4%)
+ Ovidiu Panait 3237 (9.5%)
+ Patrick Delaunay 1336 (3.9%)
+ Sean Anderson 123 (0.4%)
+ Sughosh Ganu 42 (0.1%)
+ Rafał Miłecki 15 (0.0%)
+ Heiko Schocher 5 (0.0%)
+ Thomas Huth 4 (0.0%)
+ Mattias Hansson 3 (0.0%)
+ Andy Shevchenko 2 (0.0%)
+ Yann Droneaud 2 (0.0%)
+ Haolin Li 2 (0.0%)
+ Harald Seiler 1 (0.0%)
+ Markus Koch 1 (0.0%)
+ ================================ =====
+
+
+.. table:: Developers with the most signoffs (total 279)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Michal Simek 33 (11.8%)
+ Marek Behún 29 (10.4%)
+ Aswath Govindraju 27 (9.7%)
+ Andre Przywara 25 (9.0%)
+ Peng Fan 18 (6.5%)
+ Amjad Ouled-Ameur 10 (3.6%)
+ Jesse Taube 9 (3.2%)
+ Marek Vasut 8 (2.9%)
+ Tom Rini 7 (2.5%)
+ Yangbo Lu 7 (2.5%)
+ Neil Armstrong 7 (2.5%)
+ Priyanka Jain 6 (2.2%)
+ Simon Glass 6 (2.2%)
+ Niklas Cassel 5 (1.8%)
+ Ashok Reddy Soma 4 (1.4%)
+ Michael Walle 4 (1.4%)
+ Heinrich Schuchardt 4 (1.4%)
+ Hai Pham 3 (1.1%)
+ Roman Bacik 3 (1.1%)
+ Hari Nagalla 3 (1.1%)
+ Shawn Guo 3 (1.1%)
+ Guillaume La Roque 3 (1.1%)
+ Vignesh Raghavendra 3 (1.1%)
+ Chia-Wei Wang 3 (1.1%)
+ Darren Huang 2 (0.7%)
+ Kevin12.Chen 2 (0.7%)
+ Phill.Liu 2 (0.7%)
+ Tim Liang 2 (0.7%)
+ wei.zeng 2 (0.7%)
+ Sven Peter 2 (0.7%)
+ Uri Mashiach 2 (0.7%)
+ Rainer Boschung 2 (0.7%)
+ Christian Melki 2 (0.7%)
+ Minkyu Kang 2 (0.7%)
+ René Straub 2 (0.7%)
+ Nishanth Menon 2 (0.7%)
+ Alper Nebi Yasak 2 (0.7%)
+ Patrick Delaunay 1 (0.4%)
+ Ramon Fried 1 (0.4%)
+ Jernej Skrabec 1 (0.4%)
+ Leonidas P. Papadakos 1 (0.4%)
+ Yifeng Zhao 1 (0.4%)
+ Jaehoon Chung 1 (0.4%)
+ Markus Niebel 1 (0.4%)
+ Kevin Scholz 1 (0.4%)
+ James Doublesin 1 (0.4%)
+ Dave Gerlach 1 (0.4%)
+ Vinod Koul 1 (0.4%)
+ Andy Chiu 1 (0.4%)
+ Anthony Bagwell 1 (0.4%)
+ Faiz Abbas 1 (0.4%)
+ Stefan Roese 1 (0.4%)
+ Christian Gmeiner 1 (0.4%)
+ Roger Quadros 1 (0.4%)
+ Dylan Hung 1 (0.4%)
+ Oleksandr Suvorov 1 (0.4%)
+ Icenowy Zheng 1 (0.4%)
+ Bharat Gooty 1 (0.4%)
+ Marcel Ziswiler 1 (0.4%)
+ Mark Kettenis 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Developers with the most reviews (total 859)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Stefan Roese 184 (21.4%)
+ Simon Glass 143 (16.6%)
+ Heinrich Schuchardt 58 (6.8%)
+ Priyanka Jain 48 (5.6%)
+ Fabio Estevam 40 (4.7%)
+ Ramon Fried 39 (4.5%)
+ Patrice Chotard 38 (4.4%)
+ Marek Behún 30 (3.5%)
+ Patrick Delaunay 28 (3.3%)
+ Jaehoon Chung 27 (3.1%)
+ Andre Przywara 22 (2.6%)
+ Sean Anderson 17 (2.0%)
+ Jagan Teki 16 (1.9%)
+ Michael Walle 13 (1.5%)
+ Bin Meng 13 (1.5%)
+ Peng Fan 12 (1.4%)
+ Kever Yang 11 (1.3%)
+ Heiko Schocher 8 (0.9%)
+ Pali Rohár 8 (0.9%)
+ Tom Rini 6 (0.7%)
+ Mark Kettenis 5 (0.6%)
+ Joel Stanley 5 (0.6%)
+ Samuel Holland 4 (0.5%)
+ Ye Li 4 (0.5%)
+ Vladimir Oltean 4 (0.5%)
+ Aswath Govindraju 3 (0.3%)
+ Marek Vasut 3 (0.3%)
+ Rick Chen 3 (0.3%)
+ Philipp Tomsich 3 (0.3%)
+ Jens Wiklander 3 (0.3%)
+ Matthias Brugger 3 (0.3%)
+ Patrick Wildt 3 (0.3%)
+ Tim Harvey 3 (0.3%)
+ Neil Armstrong 2 (0.2%)
+ Marcel Ziswiler 2 (0.2%)
+ Andy Shevchenko 2 (0.2%)
+ Giulio Benetti 2 (0.2%)
+ Leo Yu-Chi Liang 2 (0.2%)
+ Georgi Vlaev 2 (0.2%)
+ Pratyush Yadav 2 (0.2%)
+ Igor Opaniuk 2 (0.2%)
+ Frieder Schrempf 2 (0.2%)
+ Ilias Apalodimas 2 (0.2%)
+ Eugen Hristev 2 (0.2%)
+ Chia-Wei Wang 1 (0.1%)
+ Sven Peter 1 (0.1%)
+ Alper Nebi Yasak 1 (0.1%)
+ Jernej Skrabec 1 (0.1%)
+ Dave Gerlach 1 (0.1%)
+ Oleksandr Suvorov 1 (0.1%)
+ Thomas Huth 1 (0.1%)
+ Miquel Raynal 1 (0.1%)
+ Denys Dmytriyenko 1 (0.1%)
+ Tero Kristo 1 (0.1%)
+ Rob Herring 1 (0.1%)
+ Wolfgang Denk 1 (0.1%)
+ Claudiu Beznea 1 (0.1%)
+ Jessica Clarke 1 (0.1%)
+ Oleksandr Andrushchenko 1 (0.1%)
+ Artem Lapkin 1 (0.1%)
+ Sudeep Holla 1 (0.1%)
+ Otavio Salvador 1 (0.1%)
+ Alexander Dahl 1 (0.1%)
+ Dzmitry Sankouski 1 (0.1%)
+ Nicolas Saenz Julienne 1 (0.1%)
+ Vyacheslav Bocharov 1 (0.1%)
+ Stephan Gerhold 1 (0.1%)
+ Yann Gautier 1 (0.1%)
+ Shawn Lin 1 (0.1%)
+ Camelia Groza 1 (0.1%)
+ Stefan Agner 1 (0.1%)
+ Adam Ford 1 (0.1%)
+ Linus Walleij 1 (0.1%)
+ Ryan Chen 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most test credits (total 94)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Simon Glass 25 (26.6%)
+ Stefan Roese 10 (10.6%)
+ Tony Dinh 10 (10.6%)
+ Heinrich Schuchardt 7 (7.4%)
+ Tim Harvey 6 (6.4%)
+ Marcel Ziswiler 5 (5.3%)
+ Bin Meng 3 (3.2%)
+ Chris Packham 3 (3.2%)
+ Fabio Estevam 2 (2.1%)
+ Mark Kettenis 2 (2.1%)
+ Milan P. Stanić 2 (2.1%)
+ Mattijs Korpershoek 2 (2.1%)
+ Marek Behún 1 (1.1%)
+ Sean Anderson 1 (1.1%)
+ Michael Walle 1 (1.1%)
+ Pali Rohár 1 (1.1%)
+ Eugen Hristev 1 (1.1%)
+ Christian Gmeiner 1 (1.1%)
+ Peter Robinson 1 (1.1%)
+ Sean Nyekjaer 1 (1.1%)
+ Petr Štetiar 1 (1.1%)
+ Johann Neuhauser 1 (1.1%)
+ Alexandre Ghiti 1 (1.1%)
+ Ferry Toth 1 (1.1%)
+ Damien Le Moal 1 (1.1%)
+ Janne Grunau 1 (1.1%)
+ Keerthy 1 (1.1%)
+ Heiko Thiery 1 (1.1%)
+ Ying-Chun Liu (PaulLiu) 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 94)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Pali Rohár 21 (22.3%)
+ Mark Kettenis 15 (16.0%)
+ Simon Glass 7 (7.4%)
+ Richard Zhu 6 (6.4%)
+ Andre Przywara 5 (5.3%)
+ Alper Nebi Yasak 4 (4.3%)
+ Heinrich Schuchardt 3 (3.2%)
+ Marek Behún 3 (3.2%)
+ Anup Patel 3 (3.2%)
+ Sean Anderson 2 (2.1%)
+ Han Xu 2 (2.1%)
+ Marcel Ziswiler 1 (1.1%)
+ Fabio Estevam 1 (1.1%)
+ Heiko Thiery 1 (1.1%)
+ Patrick Delaunay 1 (1.1%)
+ Tom Rini 1 (1.1%)
+ Samuel Holland 1 (1.1%)
+ Andy Shevchenko 1 (1.1%)
+ Ilias Apalodimas 1 (1.1%)
+ Oleksandr Suvorov 1 (1.1%)
+ Adam Ford 1 (1.1%)
+ Niklas Cassel 1 (1.1%)
+ Vignesh Raghavendra 1 (1.1%)
+ Sughosh Ganu 1 (1.1%)
+ Roman Stratiienko 1 (1.1%)
+ Alexander Preißner 1 (1.1%)
+ Gary Bisson 1 (1.1%)
+ Michael Liebert 1 (1.1%)
+ Philippe Reynes 1 (1.1%)
+ Haibo Chen 1 (1.1%)
+ Codrin Ciubotariu 1 (1.1%)
+ Moritz Fischer 1 (1.1%)
+ Marty E. Plummer 1 (1.1%)
+ Jan Kiszka 1 (1.1%)
+ ================================ =====
+
+
+.. table:: Developers with the most report credits (total 17)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Milan P. Stanić 3 (17.6%)
+ Tony Dinh 2 (11.8%)
+ Pali Rohár 1 (5.9%)
+ Sean Anderson 1 (5.9%)
+ Marcel Ziswiler 1 (5.9%)
+ Ilias Apalodimas 1 (5.9%)
+ Tim Harvey 1 (5.9%)
+ Christian Gmeiner 1 (5.9%)
+ Johann Neuhauser 1 (5.9%)
+ Alexandre Ghiti 1 (5.9%)
+ Joerie de Gram 1 (5.9%)
+ Neal Frager 1 (5.9%)
+ George Makarov 1 (5.9%)
+ Ross Burton 1 (5.9%)
+ ================================ =====
+
+
+.. table:: Developers who gave the most report credits (total 17)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ Heinrich Schuchardt 6 (35.3%)
+ Pali Rohár 3 (17.6%)
+ Fabio Estevam 2 (11.8%)
+ Simon Glass 1 (5.9%)
+ Andre Przywara 1 (5.9%)
+ Patrick Delaunay 1 (5.9%)
+ Tom Rini 1 (5.9%)
+ Vignesh Raghavendra 1 (5.9%)
+ Luca Ceresoli 1 (5.9%)
+ ================================ =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 634 (40.8%)
+ Google, Inc. 345 (22.2%)
+ Texas Instruments 88 (5.7%)
+ ST Microelectronics 69 (4.4%)
+ Konsulko Group 66 (4.2%)
+ DENX Software Engineering 62 (4.0%)
+ NXP 61 (3.9%)
+ Linaro 54 (3.5%)
+ AMD 36 (2.3%)
+ ARM 28 (1.8%)
+ Wind River 25 (1.6%)
+ BayLibre SAS 15 (1.0%)
+ Siemens 13 (0.8%)
+ Xilinx 13 (0.8%)
+ Debian.org 11 (0.7%)
+ Toradex 7 (0.5%)
+ Intel 5 (0.3%)
+ Amarula Solutions 4 (0.3%)
+ Broadcom 4 (0.3%)
+ SUSE 4 (0.3%)
+ Renesas Electronics 3 (0.2%)
+ Collabora Ltd. 2 (0.1%)
+ Rockchip 2 (0.1%)
+ Bootlin 1 (0.1%)
+ Boundary Devices 1 (0.1%)
+ ESD Electronics 1 (0.1%)
+ Red Hat 1 (0.1%)
+ ================================ =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 39285 (29.8%)
+ Google, Inc. 22683 (17.2%)
+ Texas Instruments 20892 (15.9%)
+ Linaro 9899 (7.5%)
+ Konsulko Group 7855 (6.0%)
+ NXP 5100 (3.9%)
+ Toradex 4129 (3.1%)
+ Broadcom 4128 (3.1%)
+ DENX Software Engineering 4056 (3.1%)
+ ST Microelectronics 3444 (2.6%)
+ Wind River 3437 (2.6%)
+ Collabora Ltd. 2037 (1.5%)
+ AMD 1465 (1.1%)
+ ARM 888 (0.7%)
+ BayLibre SAS 861 (0.7%)
+ SUSE 668 (0.5%)
+ Xilinx 311 (0.2%)
+ Siemens 271 (0.2%)
+ Intel 98 (0.1%)
+ Amarula Solutions 57 (0.0%)
+ Bootlin 23 (0.0%)
+ Debian.org 11 (0.0%)
+ Rockchip 9 (0.0%)
+ Red Hat 5 (0.0%)
+ Renesas Electronics 3 (0.0%)
+ Boundary Devices 2 (0.0%)
+ ESD Electronics 2 (0.0%)
+ ================================ =====
+
+
+.. table:: Employers with the most signoffs (total 279)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 92 (33.0%)
+ Texas Instruments 40 (14.3%)
+ Xilinx 37 (13.3%)
+ NXP 31 (11.1%)
+ ARM 25 (9.0%)
+ BayLibre SAS 20 (7.2%)
+ Konsulko Group 7 (2.5%)
+ Google, Inc. 6 (2.2%)
+ DENX Software Engineering 6 (2.2%)
+ Broadcom 4 (1.4%)
+ Renesas Electronics 3 (1.1%)
+ Samsung 3 (1.1%)
+ CompuLab 2 (0.7%)
+ Toradex 1 (0.4%)
+ ST Microelectronics 1 (0.4%)
+ Rockchip 1 (0.4%)
+ ================================ =====
+
+
+.. table:: Employers with the most hackers (total 196)
+ :widths: auto
+
+ ================================ =====
+ Name Count
+ ================================ =====
+ (Unknown) 115 (58.7%)
+ NXP 12 (6.1%)
+ Texas Instruments 9 (4.6%)
+ Linaro 9 (4.6%)
+ Xilinx 6 (3.1%)
+ DENX Software Engineering 6 (3.1%)
+ BayLibre SAS 4 (2.0%)
+ ST Microelectronics 4 (2.0%)
+ Google, Inc. 3 (1.5%)
+ Broadcom 3 (1.5%)
+ Toradex 3 (1.5%)
+ Siemens 3 (1.5%)
+ ARM 2 (1.0%)
+ Collabora Ltd. 2 (1.0%)
+ SUSE 2 (1.0%)
+ Amarula Solutions 2 (1.0%)
+ Konsulko Group 1 (0.5%)
+ Renesas Electronics 1 (0.5%)
+ Rockchip 1 (0.5%)
+ Wind River 1 (0.5%)
+ AMD 1 (0.5%)
+ Intel 1 (0.5%)
+ Bootlin 1 (0.5%)
+ Debian.org 1 (0.5%)
+ Red Hat 1 (0.5%)
+ Boundary Devices 1 (0.5%)
+ ESD Electronics 1 (0.5%)
+ ================================ =====