1. 26 1月, 2018 1 次提交
  2. 19 12月, 2017 1 次提交
  3. 11 10月, 2017 1 次提交
    • T
      cmd: Toggle the default value of CONFIG_CMD_IMLS · ad12dc18
      Tuomas Tynkkynen 提交于
      Having this as a 'default y' is rather annoying because it doesn't
      actually compile unless other options are defined in the board header:
      
      ../cmd/bootm.c: In function 'do_imls_nor':
      ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
         i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
      
      Make it 'default n' so people who develop new boards that start from a
      blank defconfig have one less compilation failure to debug.
      Signed-off-by: NTuomas Tynkkynen <tuomas.tynkkynen@iki.fi>
      ad12dc18
  4. 04 10月, 2017 4 次提交
  5. 02 9月, 2017 2 次提交
    • T
      Kconfig: Migrate all of cmd/fastboot/Kconfig to defconfigs · 48f6232e
      Tom Rini 提交于
      - Move ANDROID_IMAGE_SUPPORT to top level Kconfig under images as it's
        not strictly part of fastboot.
      - Add some defaults for the fastboot buffer location and size
      - Migrate all options listed in cmd/fastboot/Kconfig
      - Cleanup the README
      Signed-off-by: NTom Rini <trini@konsulko.com>
      48f6232e
    • T
      configs: Migrate all of the existing USB symbols, except fastboot · ecad7051
      Tom Rini 提交于
      This syncs all of the currently Kconfig'd symbols out of the headers and
      into the defconfig files.  This has two exceptions, first am335x_evm
      needs to be converted to DM in SPL and then it can stop undef'ing
      CONFIG_DM_USB.  Leaving this as-is results in a build failure, and
      without work, run time failure.  The other case is am43xx_evm.h and in
      turn am43xx_evm_usbhost_boot.  The problem here is that we need DWC3 USB
      host mode in SPL, but still desire to have gadget mode in U-Boot proper.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      ecad7051
  6. 28 8月, 2017 1 次提交
  7. 26 7月, 2017 1 次提交
    • S
      Convert CONFIG_ENV_IS_IN_MMC/NAND/UBI and NOWHERE to Kconfig · 2be29653
      Simon Glass 提交于
      This converts the following to Kconfig:
         CONFIG_ENV_IS_IN_MMC
         CONFIG_ENV_IS_IN_NAND
         CONFIG_ENV_IS_IN_UBI
         CONFIG_ENV_IS_NOWHERE
      
      In fact this already exists for sunxi as a 'choice' config. However not
      all the choices are available in Kconfig yet so we cannot use that. It
      would lead to more than one option being set.
      
      In addition, one purpose of this series is to allow the environment to be
      stored in more than one place. So the existing choice is converted to a
      normal config allowing each option to be set independently.
      
      There are not many opportunities for Kconfig updates to reduce the size of
      this patch. This was tested with
      
         ./tools/moveconfig.py -i CONFIG_ENV_IS_IN_MMC
      
      And then manual updates.  This is because for CHAIN_OF_TRUST boards they
      can only have ENV_IS_NOWHERE set, so we enforce that via Kconfig logic
      now.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      2be29653
  8. 10 7月, 2017 1 次提交
  9. 07 7月, 2017 1 次提交
  10. 01 5月, 2017 1 次提交
  11. 20 4月, 2017 1 次提交
  12. 14 3月, 2017 1 次提交
  13. 28 1月, 2017 3 次提交
  14. 27 9月, 2016 1 次提交
    • T
      dfu: Migrate to Kconfig · 6828e602
      Tom Rini 提交于
      Introduce a hidden USB_FUNCTION_DFU Kconfig option and select it for
      CMD_DFU (as we must have the DFU command enabled to do anything DFU).
      Make all of the entries in drivers/dfu/Kconfig depend on CMD_DFU and add
      options for all of the back end choices that DFU can make use of.
      
      Cc: Lukasz Majewski <l.majewski@samsung.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      Acked-by: NLukasz Majewski <l.majewski@samsung.com>
      6828e602
  15. 17 9月, 2016 3 次提交
  16. 09 9月, 2016 1 次提交
  17. 17 6月, 2016 1 次提交
  18. 10 6月, 2016 1 次提交
  19. 25 5月, 2016 1 次提交
    • H
      sunxi: Enable a bunch of commands by default on sunxi · 0878a8a7
      Hans de Goede 提交于
      Recently a set of CONFIG_CMD_FOO defines was moved from being defined
      in config_distro_defaults to Kconfig, and added to all sunxi defconfigs
      to compensate.
      
      Instead of explictly selecting these in all sunxi defconfigs,
      simply always select these for sunxi boards. This makes the defconfigs
      simpler and ensures a consistent set of available commands across all
      sunxi boards.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      0878a8a7
  20. 15 5月, 2016 1 次提交
  21. 26 4月, 2016 3 次提交
  22. 20 4月, 2016 2 次提交
  23. 12 4月, 2016 1 次提交
  24. 26 3月, 2016 1 次提交
  25. 24 3月, 2016 3 次提交
  26. 15 3月, 2016 1 次提交
    • S
      Kconfig: Move CONFIG_FIT and related options to Kconfig · 73223f0e
      Simon Glass 提交于
      There are already two FIT options in Kconfig but the CONFIG options are
      still in the header files. We need to do a proper move to fix this.
      
      Move these options to Kconfig and tidy up board configuration:
      
         CONFIG_FIT
         CONFIG_OF_BOARD_SETUP
         CONFIG_OF_SYSTEM_SETUP
         CONFIG_FIT_SIGNATURE
         CONFIG_FIT_BEST_MATCH
         CONFIG_FIT_VERBOSE
         CONFIG_OF_STDOUT_VIA_ALIAS
         CONFIG_RSA
      
      Unfortunately the first one is a little complicated. We need to make sure
      this option is not enabled in SPL by this change. Also this option is
      enabled automatically in the host builds by defining CONFIG_FIT in the
      image.h file. To solve this, add a new IMAGE_USE_FIT #define which can
      be used in files that are built on the host but must also build for U-Boot
      and SPL.
      
      Note: Masahiro's moveconfig.py script is amazing.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      [trini: Add microblaze change, various configs/ re-applies]
      Signed-off-by: NTom Rini <trini@konsulko.com>
      73223f0e
  27. 10 12月, 2015 1 次提交