1. 16 3月, 2015 1 次提交
  2. 25 2月, 2015 1 次提交
    • A
      edminiv2: switch to SPL · 9608e7de
      Albert ARIBAUD 提交于
      ED Mini V2 is based on Orion 5x which boots at fixed
      address 0xFFFF0000 in NOR Flash. Place SPL there, and
      switch U-Boot from .bin to .img format, stored in
      NOR Flash at 0xFFF90000.
      
      Note: this patch was tested on HW and works, i.e.
      it boots U-Boot properly, but SPL console output
      currently does not appear, due to GD being trashed
      by arch/arm/lib/spl.c. This trashing is soon to be
      removed, and then ED Mini V2 SPL console output will
      become visible.
      Signed-off-by: NAlbert ARIBAUD <albert.u.boot@aribaud.net>
      9608e7de
  3. 31 8月, 2014 1 次提交
  4. 30 7月, 2014 1 次提交
    • M
      kconfig: add board Kconfig and defconfig files · dd84058d
      Masahiro Yamada 提交于
      This commit adds:
       - arch/${ARCH}/Kconfig
          provide a menu to select target boards
       - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
          set CONFIG macros to the appropriate values for each board
       - configs/${TARGET_BOARD}_defconfig
          default setting of each board
      
      (This commit was automatically generated by a conversion script
      based on boards.cfg)
      
      In Linux Kernel, defconfig files are located under
      arch/${ARCH}/configs/ directory.
      It works in Linux Kernel since ARCH is always given from the
      command line for cross compile.
      
      But in U-Boot, ARCH is not given from the command line.
      Which means we cannot know ARCH until the board configuration is done.
      That is why all the "*_defconfig" files should be gathered into a
      single directory ./configs/.
      Signed-off-by: NMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      dd84058d