1. 10 5月, 2015 2 次提交
  2. 24 3月, 2015 1 次提交
    • R
      remove unnecessary version.h includes · 7682a998
      Rob Herring 提交于
      Various files are needlessly rebuilt every time due to the version and
      build time changing. As version.h is not actually needed, remove the
      include.
      Signed-off-by: NRob Herring <robh@kernel.org>
      Cc: Albert Aribaud <albert.u.boot@aribaud.net>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Minkyu Kang <mk7.kang@samsung.com>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Tom Warren <twarren@nvidia.com>
      Cc: Michal Simek <monstr@monstr.eu>
      Cc: Macpaul Lin <macpaul@andestech.com>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: York Sun <yorksun@freescale.com>
      Cc: Stefan Roese <sr@denx.de>
      Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Philippe Reynes <tremyfr@yahoo.fr>
      Cc: Eric Jarrige <eric.jarrige@armadeus.org>
      Cc: "David Müller" <d.mueller@elsoft.ch>
      Cc: Phil Edworthy <phil.edworthy@renesas.com>
      Cc: Robert Baldyga <r.baldyga@samsung.com>
      Cc: Torsten Koschorrek <koschorrek@synertronixx.de>
      Cc: Anatolij Gustschin <agust@denx.de>
      Reviewed-by: NLinus Walleij <linus.walleij@linaro.org>
      Reviewed-by: NŁukasz Majewski <l.majewski@samsung.com>
      7682a998
  3. 06 1月, 2015 1 次提交
  4. 08 12月, 2014 2 次提交
  5. 05 12月, 2014 1 次提交
  6. 28 10月, 2014 1 次提交
  7. 27 10月, 2014 1 次提交
  8. 08 2月, 2014 1 次提交
  9. 25 1月, 2014 1 次提交
  10. 18 9月, 2013 2 次提交
  11. 27 7月, 2013 1 次提交
  12. 24 7月, 2013 1 次提交
  13. 08 6月, 2013 3 次提交
  14. 07 6月, 2013 2 次提交
  15. 15 5月, 2013 1 次提交
    • Y
      drivers/mmc: move spl_mmc.c to common/spl · ade8a1a6
      Ying Zhang 提交于
      The mpc85xx repuires a special layout on the memory device that is
      connected to the eSDHC controller interface. But the file spl_mmc.c
      didn't handle this specfic case, there needs a special treatmen, in
      the powerpc drictory. So, there is no longer to keep spl_mmc.c on
      mpc85xx, CONFIG_SPL_FRAMEWORK is not set.
      
      When CONFIG_SPL_MMC_SUPPORT is set and CONFIG_SPL_FRAMEWORK is not
      set, there was an error in drivers/mmc/spl_mmc.c:
      
      drivers/mmc/libmmc.o:(.got2+0x8): undefined reference to `spl_image'.
      
      Now, the solution is to move the file "spl_mmc.c" to directory "common/spl".
      Signed-off-by: NYing Zhang <b40530@freescale.com>
      ade8a1a6
  16. 02 5月, 2013 1 次提交
  17. 28 9月, 2012 6 次提交
  18. 15 5月, 2012 2 次提交
  19. 18 10月, 2011 1 次提交
    • S
      Move timestamp and version files into 'generated' subdir · efb2172e
      Simon Glass 提交于
      There is a rather subtle build problem where the build time stamp is not
      updated for out-of-tree builds if there exists an in-tree build which
      has a valid timestamp file. So if you do an in-tree build, then an
      out-of-tree build your timestamp will not change.
      
      The correct timestamp_autogenerated.h lives in the object tree, but it
      is not always found there. The source still lives in the source tree and
      when compiling version.h, it includes timestamp_autogenerated.h. Since
      the current directory is always searched first, this will come from the
      source tree rather than the object tree if it exists there. This affects
      dependency generation also, which means that common/cmd_version.o will not
      even be rebuilt if you have ever done an in-tree build.
      
      A similar problem exists with the version file.
      
      This change moves both files into the 'generated' subdir, which is already
      used for asm-offsets.h. Then timestamp.h and version.h are updated to
      include the files from there.
      
      There are other places where these generated files are included, but I
      cannot see why these don't just use the timestamp.h and version.h headers.
      So this change also tidies that up.
      
      I have tested this with in- and out-of-tree builds, but not SPL. I have
      looked at various other options for fixing this, including sed on the dep
      files, -I- and -include flags to gcc, but I don't think they can be made
      to work. Comments welcome.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Acked-by: NMike Frysinger <vapier@gentoo.org>
      efb2172e
  20. 01 10月, 2011 1 次提交