1. 14 4月, 2018 1 次提交
  2. 14 3月, 2018 1 次提交
    • S
      Move CONFIG_PHY_ADDR to Kconfig · b30c4190
      Stefan Mavrodiev 提交于
      CONFIG_PHY_ADDR is used for old-style configuration. This makes
      impossible changing the PHY address, if multiple boards share a same
      config header file (for example include/configs/sunxi-common.h).
      
      Moving this to Kconfig helps overcoming this issue. It's defined
      as entry inside PHYLIB section.
      
      After the implemention, moveconfig was run. The issues are:
      	- edb9315a	- CONFIG_PHYLIB is not enabled. Entry is
      			  deleted.
      
      	- ds414		- CONFIG_PHYLIB is in incompatible format:
      			  { 0x1, 0x0 }. This entry is also deleted.
      
      	- devkit3250	- The PHY_ADDR is in hex format (0x1F).
      			  Manually CONFIG_PHY_ADDR=31 is added in
      			  the defconfig.
      
      After the changes the suspicious defconfigs passes building.
      Signed-off-by: NStefan Mavrodiev <stefan@olimex.com>
      Acked-by: NMaxime Ripard <maxime.ripard@free-electrons.com>
      [jagan: rebased on master]
      Signed-off-by: NJagan Teki <jagan@amarulasolutions.com>
      Reviewed-by: NJagan Teki <jagan@openedev.com>
      b30c4190
  3. 11 2月, 2018 1 次提交
    • T
      configs: Migrate CONFIG_SYS_TEXT_BASE · 278b90ce
      Tom Rini 提交于
      On the NIOS2 and Xtensa architectures, we do not have
      CONFIG_SYS_TEXT_BASE set.  This is a strict migration of the current
      values into the defconfig and removing them from the headers.
      
      I did not attempt to add more default values in and for now will leave
      that to maintainers.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      278b90ce
  4. 06 2月, 2018 1 次提交
    • T
      cmd: Make CONFIG_CMD_FPGA depend on CONFIG_FPGA · a4fa8114
      Tuomas Tynkkynen 提交于
      cmd/Makefile has:
      
      ifdef CONFIG_FPGA
      obj-$(CONFIG_CMD_FPGA) += fpga.o
      endif
      
      which means that if CONFIG_FPGA is not set, CONFIG_CMD_FPGA silently
      does nothing. Let's remove that Makefile conditional and instead express
      this equivalent dependency in Kconfig, so a lot of redundant
      
       # CONFIG_CMD_FPGA is not set
      
      can be removed from board defconfigs that don't actually have an FPGA.
      Signed-off-by: NTuomas Tynkkynen <tuomas@tuxera.com>
      a4fa8114
  5. 19 12月, 2017 1 次提交
  6. 04 12月, 2017 2 次提交
  7. 17 11月, 2017 2 次提交
  8. 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
  9. 28 8月, 2017 1 次提交
  10. 15 8月, 2017 1 次提交
  11. 26 7月, 2017 2 次提交
    • B
      odroid-c2: enable GPIO · 9cb1c49a
      Beniamino Galvani 提交于
      GPIOs are now supported on Meson GXBB, enable driver and command in
      the config.
      Signed-off-by: NBeniamino Galvani <b.galvani@gmail.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      9cb1c49a
    • 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
  12. 07 7月, 2017 1 次提交
  13. 19 6月, 2017 1 次提交
  14. 01 5月, 2017 1 次提交
  15. 14 4月, 2017 1 次提交
  16. 14 3月, 2017 1 次提交
  17. 28 1月, 2017 4 次提交
  18. 21 1月, 2017 1 次提交
  19. 30 12月, 2016 1 次提交
    • M
      mmc: complete unfinished move of CONFIG_MMC · c2726995
      Masahiro Yamada 提交于
      Commit 7a777f6d ("mmc: Add generic Kconfig option") created
      a Kconfig entry for this option without any actual moves, then
      commit 44c79879 ("sunxi: Use Kconfig CONFIG_MMC") moved
      instances only for SUNXI.
      
      We generally do not like such partial moves.  This kind of work
      is automated by tools/moveconfig.py, so it is pretty easy to
      complete this move.
      
      I am adding "default ARM || PPC || SANDBOX" (suggested by Tom).
      This shortens the configs and will ease new board porting.
      
      This commit was created as follows:
      
      [1] Edit Kconfig (remove the "depends on", add the "default",
          copy the prompt and help message from Linux)
      
      [2] Run 'tools/moveconfig.py -y -s -r HEAD MMC'
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      Reviewed-by: NJaehoon Chung <jh80.chung@samsung.com>
      c2726995
  20. 12 10月, 2016 2 次提交
  21. 20 9月, 2016 1 次提交
  22. 07 9月, 2016 1 次提交
  23. 25 6月, 2016 1 次提交
  24. 28 5月, 2016 1 次提交