1. 08 7月, 2021 1 次提交
    • T
      m68k: Remove M5485 boards · eb83d10b
      Tom Rini 提交于
      These board has not been converted to CONFIG_DM_PCI by the deadline.
      Remove them.  As this is all of the CONFIG_M548x platforms as well,
      remove that code.
      
      Cc: TsiChung Liew <Tsi-Chung.Liew@nxp.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      eb83d10b
  2. 24 5月, 2019 1 次提交
  3. 24 7月, 2018 1 次提交
  4. 18 8月, 2017 1 次提交
    • A
      m68k: add board stmark2, mcf5441x based · a373024e
      Angelo Dureghello 提交于
      Sysam stmark2 board is a generic and fully (hw and sw) open board, with
      a mcf54415 Coldfire CPU, 128MB of DDR2, 16MB of SPI flash and SD card
      as non volatile memories, and a wifi module included on-board.
      The board is actually used mainly for Coldfire custodian testing activity
      related to the mcf5441x Coldfire family.
      
      For further information please see: http://sysam.it/cff_stmark2.htmlSigned-off-by: NAngelo Dureghello <angelo@sysam.it>
      ---
      
      Changes in v2:
       - remove CMD_REGINFO
       - add board information in commit message
      a373024e
  5. 16 8月, 2017 1 次提交
    • S
      env: Convert CONFIG_ENV_IS_IN... to a choice · c1c3fe23
      Simon Glass 提交于
      At present we support multiple environment drivers but there is not way to
      select between them at run time. Also settings related to the position and
      size of the environment area are global (i.e. apply to all locations).
      
      Until these limitations are removed we cannot really support more than one
      environment location. Adjust the location to be a choice so that only one
      can be selected. By default the environment is 'nowhere', meaning that the
      environment exists only in memory and cannot be saved.
      
      Also expand the help for the 'nowhere' option and move it to the top since
      it is the default.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      [trini: Move all of the imply logic to default X if Y so it works again]
      Signed-off-by: NTom Rini <trini@konsulko.com>
      c1c3fe23
  6. 26 7月, 2017 1 次提交
  7. 13 5月, 2015 1 次提交
  8. 28 3月, 2015 7 次提交
  9. 06 3月, 2015 1 次提交
  10. 13 1月, 2015 1 次提交
  11. 14 9月, 2014 1 次提交
  12. 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