1. 25 11月, 2014 2 次提交
  2. 23 11月, 2014 1 次提交
  3. 21 11月, 2014 1 次提交
    • S
      x86: Build a .rom file which can be flashed to an x86 machine · fce7b276
      Simon Glass 提交于
      On x86 machines U-Boot needs to be added to a large ROM image which is
      then flashed onto the target board. The ROM has a particular format so it
      makes sense for U-Boot to build this image automatically. Unfortunately
      it relies on binary blobs so we cannot require this for the default
      build as yet.
      
      Create a u-boot.rom output file for this purpose.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      fce7b276
  4. 11 11月, 2014 1 次提交
  5. 10 11月, 2014 1 次提交
  6. 08 11月, 2014 4 次提交
    • M
      kbuild: sync misc scripts with Linux 3.18-rc1 · 176d0982
      Masahiro Yamada 提交于
      This commit imports some updates in misc scripts from Linux 3.18-rc1.
      
      [1] commit cbb4d3e6510b99522719c5ef0 by Horia Geanta
      scripts/kernel-doc: handle object-like macros
      
      [2] commit 164f0d2efaaef83 by Michal Marek
      kbuild: Fix handling of backslashes in *.cmd files
      
      [3] commit 270a00963cd367214e by Randy Dunlap
      scripts/kernel-doc: recognize __meminit
      
      [4] commit a4954fd7724c0f55361eb5 by Masahiro Yamada
        kbuild: remove obj-n and lib-n handling
      
      [5] commit 5b2389b45d1a9c12b9f by Masahiro Yamada
      kbuild: simplify build, clean, modbuiltin shorthands
      Signed-off-by: NHoria Geanta <horia.geanta@freescale.com>
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      Signed-off-by: NRandy Dunlap <rdunlap@infradead.org>
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      176d0982
    • M
      kbuild: sync top Makefile with Linux 3.18-rc1 · ffe29ebc
      Masahiro Yamada 提交于
      Since Linux 3.15, relative path feature and related fixes,
      cleanups have been merged to the top Makefile.
      
      The relative path feature looks stable enough, so let's import it
      to U-Boot along with various cleanups.
      
      Commits imported from Linux (some need adjustment) are:
      
      [1] commit 7e1c04779efd by Michal Marek
        kbuild: Use relative path for $(objtree)
      
      [2] commit 890676c65d69 by Michal Marek
        kbuild: Use relative path when building in the source tree
      
      [3] commit 9da0763bdd82 by Michal Marek
        kbuild: Use relative path when building in a subdir of the source tree
      
      [4] commit c2e28dc975ea by Michal Marek
        kbuild: Print the name of the build directory
      
      [5] commit 066b7ed95580 by Michal Marek
        kbuild: Do not print the build directory with make -s
      
      [6] commit 3f1d9a6cec01 by Michal Marek
        kbuild: make -s should be used with kernelrelease/kernelversion/image_name
      
      [7] commit 7ff525712acf by Masahiro Yamada
        kbuild: fake the "Entering directory ..." message more simply
      
      [8] commit 745a254322c8 by Masahiro Yamada
        kbuild: use $(Q) for sub-make target
      
      [9] commit aa55c8e2f7a3 by Masahiro Yamada
        kbuild: handle C=... and M=... after entering into build directory
      
      [10] commit ab7474ea5361 by Borislav Petkov
        Kbuild: Ignore GREP_OPTIONS env variable
      
      To use relative path feature, tools/Makefile and scripts/Makefile.autoconf
      must be tweaked.
      Signed-off-by: NMichal Marek <mmarek@suse.cz>
      Signed-off-by: NBorislav Petkov <bp@suse.de>
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      ffe29ebc
    • M
      kbuild: remove "clobber" target · 48aa812d
      Masahiro Yamada 提交于
      Now we stick to Linux Kernel's build system, so squash
      "clobber" to "clean" target.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      48aa812d
    • M
      generic-board: make compile-time noise for non-generic boards · 5add293b
      Masahiro Yamada 提交于
      Commit 0f605c15 (Start the deprecation process for generic board)
      added a run-time warning message.  Let's be noisier for non-generic
      boards to inform the dead line of the conversion.
      
      This commit intentionally outputs a warning message to stdout.
      We still have many unconverted boards.  If we print the message
      to stderr, MAKEALL and buildman will report tons of broken boards
      and really important information will be buried.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NMarek Vasut <marex@denx.de>
      Acked-by: NSimon Glass <sjg@chromium.org>
      Cc: Tom Rini <trini@ti.com>
      5add293b
  7. 05 11月, 2014 1 次提交
  8. 24 10月, 2014 1 次提交
  9. 23 10月, 2014 3 次提交
  10. 14 10月, 2014 1 次提交
  11. 13 10月, 2014 1 次提交
  12. 07 10月, 2014 1 次提交
  13. 25 9月, 2014 1 次提交
    • M
      kbuild: refactor some makefiles · f494e0a1
      Masahiro Yamada 提交于
      [1] Move driver/core/, driver/input/ and drivers/input/ entries
          from the top Makefile to drivers/Makefile
      
      [2] Remove the conditional by CONFIG_DM in drivers/core/Makefile
          because the whole drivers/core directory is already selected
          by CONFIG_DM in the upper level
      
      [3] Likewise for CONFIG_DM_DEMO in drivers/demo/Makefile
      
      [4] Simplify common/Makefile - both CONFIG_DDR_SPD and
          CONFIG_SPD_EEPROM are boolean macros so they can directly
          select objects
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NMarek Vasut <marex@denx.de>
      f494e0a1
  14. 17 9月, 2014 2 次提交
  15. 11 9月, 2014 1 次提交
  16. 03 9月, 2014 1 次提交
  17. 29 8月, 2014 1 次提交
  18. 22 8月, 2014 5 次提交
  19. 09 8月, 2014 2 次提交
  20. 06 8月, 2014 1 次提交
  21. 30 7月, 2014 1 次提交
    • M
      kconfig: switch to Kconfig · 51148790
      Masahiro Yamada 提交于
      This commit enables Kconfig.
      Going forward, we use Kconfig for the board configuration.
      mkconfig will never be used. Nor will include/config.mk be generated.
      
      Kconfig must be adjusted for U-Boot because our situation is
      a little more complicated than Linux Kernel.
      We have to generate multiple boot images (Normal, SPL, TPL)
      from one source tree.
      Each image needs its own configuration input.
      
      Usage:
      
      Run "make <board>_defconfig" to do the board configuration.
      
      It will create the .config file and additionally spl/.config, tpl/.config
      if SPL, TPL is enabled, respectively.
      
      You can use "make config", "make menuconfig" etc. to create
      a new .config or modify the existing one.
      
      Use "make spl/config", "make spl/menuconfig" etc. for spl/.config
      and do likewise for tpl/.config file.
      
      The generic syntax of configuration targets for SPL, TPL is:
      
        <target_image>/<config_command>
      
      Here, <target_image> is either 'spl' or 'tpl'
            <config_command> is 'config', 'menuconfig', 'xconfig', etc.
      
      When the configuration is done, run "make".
      (Or "make <board>_defconfig all" will do the configuration and build
      in one time.)
      
      For futher information of how Kconfig works in U-Boot,
      please read the comment block of scripts/multiconfig.py.
      
      By the way, there is another item worth remarking here:
      coexistence of Kconfig and board herder files.
      
      Prior to Kconfig, we used C headers to define a set of configs.
      
      We expect a very long term to migrate from C headers to Kconfig.
      Two different infractructure must coexist in the interim.
      
      In our former configuration scheme, include/autoconf.mk was generated
      for use in makefiles.
      It is still generated under include/, spl/include/, tpl/include/ directory
      for the Normal, SPL, TPL image, respectively.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      51148790
  22. 26 7月, 2014 1 次提交
  23. 22 7月, 2014 3 次提交
    • I
      Makefile: fix tags target documentation · 5fc2f924
      Igor Grinberg 提交于
      Replace the TAGS target name by the actual ctags target name.
      Also, add etags target documentation.
      
      Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
      Signed-off-by: NIgor Grinberg <grinberg@compulab.co.il>
      5fc2f924
    • I
      Makefile: fix ctags/etags clean targets · b3dfe43c
      Igor Grinberg 提交于
      Commit efcf8619 (kbuild: use scripts/Makefile.clean)
      refactored the cleaning targets and accidentially replaced the actually
      generated "ctags" and "etags" files in the file list by "tags" and "TAGS".
      "tags" and "TAGS" are not part of the Makefile build targets and
      therefore should not be a part of the list for clean targets.
      
      Substitute the actually generated files instead, to fix the clean
      targets behavior.
      
      Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
      Signed-off-by: NIgor Grinberg <grinberg@compulab.co.il>
      b3dfe43c
    • I
      Makefile: fix the {c, e}tags/cscope build targets · 8d819ab5
      Igor Grinberg 提交于
      Commit 9e414032 (kbuild: change out-of-tree build)
      changed the U-Boot build working directory to the output tree
      for the out-of-tree builds.
      This broke the {c,e}tags/cscope build targets as TAG_SUBDIRS variable
      collected directories based on assumption that the build working
      directory is the U-Boot source tree directory.
      
      Fix the {c,e}tags/cscope build targets by adding the $(srctree) prefix.
      Also, remove the $(obj) prefix from the etags build target to finish
      the $(obj) prefix removal started by the same commit.
      
      Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
      Signed-off-by: NIgor Grinberg <grinberg@compulab.co.il>
      8d819ab5
  24. 15 7月, 2014 1 次提交
  25. 08 7月, 2014 2 次提交