1. 12 12月, 2015 18 次提交
  2. 09 12月, 2015 8 次提交
  3. 08 12月, 2015 3 次提交
    • A
      axs10x: add support of generic EHCI USB 2.0 controller · 8555dd88
      Alexey Brodkin 提交于
      This commit adds support of USB 2.0 storage media on AXS10x boards.
      Signed-off-by: NAlexey Brodkin <abrodkin@synopsys.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      8555dd88
    • T
      Prepare v2016.01-rc2 · 8356431b
      Tom Rini 提交于
      Signed-off-by: NTom Rini <trini@konsulko.com>
      8356431b
    • M
      mkimage: Fix warning from fix for generating multi and script images again · 34633141
      Marek Vasut 提交于
      Seems 6ae6e160 broke creating images in certain cases, there
      are two problems with that patch.
      
      First is that the expression "!x == 4 || !x == 6" is ambiguous.  The
      intention here was "!(x == 4) || !(x == 6)" based on reading further in
      the file, where this was borrowed from.  This however is interpreted by
      gcc as "(!x) == 4 || (!x) == 6" and always false.  gcc-5.x will warn
      about this case.
      
      The second problem is that we do not want to test for the case of "(NOT x
      is 4) OR (NOT x is 6)" but instead "(x is not equal to 4) AND (x is not
      equal to 6)".  This is because in those two cases we already execute the
      code question in another part of the file.  Rewrite the expression and
      add parenthesis for clarity.
      Signed-off-by: NMarek Vasut <marex@denx.de>
      Cc: Tom Rini <trini@konsulko.com>
      Cc: Philippe De Swert <philippedeswert@gmail.com>
      Cc: Simon Glass <sjg@chromium.org>
      [trini: Re-word Marek's explanation]
      34633141
  4. 07 12月, 2015 11 次提交