01 Oct, 2018

2 commits


29 Sep, 2018

1 commit

  • The current u-boot configures the fdt_file environment variable
    to the file name of that built together with u-boot. Sometimes
    Linux kernel needs another dtb file other than the one built with
    u-boot. For example, imx7ulp needs to build imx7ulp-evk-qspi.dts for
    u-boot, but the kernel needs imx7ulp-evk.dts. Adding this new
    macro to let the user have an option to specify a dtb file to run
    Linux kernel.

    Signed-off-by: Shenwei Wang

    Shenwei Wang
     

25 Sep, 2018

1 commit


03 Aug, 2018

1 commit


20 Jul, 2018

1 commit


27 Apr, 2018

7 commits


11 Feb, 2018

1 commit

  • 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: Tom Rini

    Tom Rini
     

08 Feb, 2018

1 commit


31 Oct, 2017

1 commit

  • When CONFIG_DM_MMC=y, CONFIG_BLK should be selected, otherwise the
    SD/eMMC card cannot be used.

    Also, select CONFIG_DM_USB=y when CONFIG_USB=y to avoid build failure.

    Tested on mx6slevk, mx7dsabresd and mx6ullevk.

    Signed-off-by: Fabio Estevam
    Reviewed-by: Jaehoon Chung
    Tested-by: Adam Ford
    Tested-by: Sébastien Szymanski
    Tested-by: Jagan Teki
    Reviewed-by: Jagan Teki

    Fabio Estevam
     

12 Oct, 2017

1 commit


11 Oct, 2017

2 commits

  • The option is specified in Kconfig, but still a few config header files
    are overriding the choice by #undef'ing it. Re-sync the option with
    moveconfig to rid of the #undefs.

    Signed-off-by: Tuomas Tynkkynen

    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: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

28 Aug, 2017

1 commit


17 Aug, 2017

1 commit


15 Aug, 2017

1 commit


26 Jul, 2017

1 commit

  • 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: Simon Glass
    Signed-off-by: Tom Rini

    Simon Glass
     

04 Jun, 2017

1 commit

  • Now that these symbols are in Kconfig, migrate all users. Use imply on
    a number of platforms that default to having this enabled. As part of
    this we must migrate some straglers for CMD_FAT and DOS_PARTITION.

    Signed-off-by: Tom Rini

    Tom Rini
     

01 May, 2017

1 commit


17 Mar, 2017

2 commits

  • Enable MMC support.
    The fsl sdhc driver needs regulator to enable power, so enable
    regulator support.

    And bootcmd and more env.

    Signed-off-by: Peng Fan
    Cc: Stefano Babic

    Peng Fan
     
  • Add EVK board support.
    Add the evk dts file.

    LOG:
    U-Boot 2017.03-rc2-00038-gab86c1d (Feb 22 2017 - 15:59:58 +0800)

    CPU: Freescale i.MX7ULP rev1.0 at 500 MHz
    Reset cause: POR
    Boot mode: Dual boot
    Model: NXP i.MX7ULP EVK
    DRAM: 1 GiB
    MMC: FSL_SDHC: 0
    In: serial@402D0000
    Out: serial@402D0000
    Err: serial@402D0000
    Net: Net Initialization Skipped
    No ethernet found.
    Hit any key to stop autoboot: 0

    Signed-off-by: Peng Fan
    Cc: Stefano Babic

    Peng Fan