1. 26 4月, 2022 1 次提交
  2. 20 4月, 2022 1 次提交
  3. 08 4月, 2022 3 次提交
  4. 01 4月, 2022 2 次提交
  5. 29 3月, 2022 5 次提交
  6. 25 3月, 2022 5 次提交
  7. 19 3月, 2022 5 次提交
  8. 18 3月, 2022 1 次提交
    • T
      configs: Re-run migrations · eb8eb317
      Tom Rini 提交于
      As the CI test for stopping platforms from being merged that were
      defining symbols that had Kconfig entries, a small number of symbols
      needed to be migrated again.  Do so, and catch two cases the README
      should also have been updated but was not.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      eb8eb317
  9. 04 3月, 2022 3 次提交
  10. 09 2月, 2022 4 次提交
  11. 22 1月, 2022 4 次提交
  12. 13 1月, 2022 1 次提交
    • T
      LynxOS is no longer supported · 0797e736
      Thomas Huth 提交于
      LynxOS needed the do_bootm_lynxkdi() function that got removed in
      7e713067 ("Remove LYNX KDI remainders") - and that function needed
      a lynxkdi_boot() function, where the last implementation had been
      removed in 98f705c9 ("powerpc: remove 4xx support") already. Looks
      like this OS is definitely not supported anymore, so remove it from
      the corresponding lists.
      Signed-off-by: NThomas Huth <thuth@redhat.com>
      Reviewed-by: NStefan Roese <sr@denx.de>
      0797e736
  13. 28 12月, 2021 1 次提交
  14. 27 12月, 2021 3 次提交
    • T
      Finish converting CONFIG_WATCHDOG, HW_WATCHDOG and WDT to Kconfig · 3847ba94
      Tom Rini 提交于
      Because of how these symbols work, and the remaining board config.h file
      uses, we need to do these at the same time.  In some cases we just get
      to move rather directly to the defconfigs.  A few cases require manual
      intervention.
      
      For the case of the eb_cpu5282 we need to select HW_WATCHDOG for the
      target, given how it's implemented.
      
      For the cases of m53menlo, dh_imx6, display5, and display5_factory we
      disable SPL watchdog support as the particular combination of options
      they want would require either more symbols or enabling SPL_DM.
      Signed-off-by: NTom Rini <trini@konsulko.com>
      3847ba94
    • T
      Convert CONFIG_CONS_INDEX et al to Kconfig · f76750d1
      Tom Rini 提交于
      This converts the following to Kconfig:
         CONFIG_CONS_INDEX
         CONFIG_DEBUG_UART_CLOCK
         CONFIG_FSL_TZPC_BP147
         CONFIG_GENERIC_ATMEL_MCI
         CONFIG_IDENT_STRING
         CONFIG_LIBATA
         CONFIG_LNX_KRNL_IMG_TEXT_OFFSET_BASE
         CONFIG_LPC32XX_GPIO
         CONFIG_MP
         CONFIG_MPC8XXX_GPIO
         CONFIG_MTD_PARTITIONS
         CONFIG_MVGBE
         CONFIG_MXC_GPIO
         CONFIG_NR_DRAM_BANKS
         CONFIG_OF_BOARD_SETUP
         CONFIG_OF_STDOUT_VIA_ALIAS
         CONFIG_OF_SYSTEM_SETUP
         CONFIG_PREBOOT
         CONFIG_ROCKCHIP_SERIAL
         CONFIG_RTC_ENABLE_32KHZ_OUTPUT
         CONFIG_RTC_MV
         CONFIG_SCSI_AHCI
         CONFIG_SF_DEFAULT_BUS
         CONFIG_SF_DEFAULT_CS
         CONFIG_SF_DEFAULT_SPEED
         CONFIG_SOFT_SPI
         CONFIG_SPI_FLASH_EON
         CONFIG_SPI_FLASH_MACRONIX
         CONFIG_SPI_FLASH_MTD
         CONFIG_SPI_FLASH_SPANSION
         CONFIG_SPI_FLASH_SST
         CONFIG_SPI_FLASH_STMICRO
         CONFIG_SUPPORT_RAW_INITRD
         CONFIG_SYS_ARCH_TIMER
         CONFIG_SYS_BOARD
         CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE
         CONFIG_SYS_DCACHE_OFF
         CONFIG_SYS_FDT_SAVE_ADDRESS
         CONFIG_SYS_FLASH_CFI
         CONFIG_SYS_FSL_ERRATUM_ESDHC135
         CONFIG_SYS_HAS_SERDES
         CONFIG_SYS_L2CACHE_OFF
         CONFIG_SYS_LITTLE_ENDIAN
         CONFIG_SYS_LOAD_ADDR
         CONFIG_SYS_MMCSD_FS_BOOT_PARTITION
         CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_PARTITION
         CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR
         CONFIG_SYS_MMCSD_RAW_MODE_U_BOOT_USE_SECTOR
         CONFIG_SYS_NS16550
         CONFIG_SYS_PLLFIN
         CONFIG_SYS_SPI_U_BOOT_OFFS
         CONFIG_TIMER_SYS_TICK_CH
         CONFIG_USB_EHCI_FSL
         CONFIG_U_QE
         CONFIG_VERSION_VARIABLE
      Signed-off-by: NTom Rini <trini@konsulko.com>
      f76750d1
    • S
      video: Convert CONFIG_VIDEO_LOGO to Kconfig · 64cfeda8
      Simon Glass 提交于
      This converts the following to Kconfig:
         CONFIG_VIDEO_LOGO
      
      Note that this option depends on CONFIG_DM_VIDEO now, since cfb_console is
      deprecated. The only relevant code is now in splash.c
      
      Drop the check for DM_VIDEO in that file.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      64cfeda8
  15. 23 12月, 2021 1 次提交
    • S
      fdt: Add a Kconfig for boards with a prior stage · 275b4832
      Simon Glass 提交于
      When U-Boot is started from another firmware program, not just a prior
      phase of U-Boot, special behaviour is typically used. In particular, the
      device tree may come from that prior stage.
      
      At present this is sort-of indicated by OF_BOARD, although the
      correlation is not 1:1, since that option simply means that the board has
      a custom mechanism for obtaining the device tree. For example, sandbox
      defines OF_BOARD. Also the board_fdt_blob_setup() function can in fact
      make use of the devicetree in U-Boot if it wishes, as used by
      dragonboard410c until very recently.
      
      Add an explicit Kconfig for this situation. Update the OF_BOARD option to
      more-accurately reflect what it is doing, e.g. for sandbox.
      
      Drop the docs in the README as it is out of date.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      275b4832