27 Jul, 2017

2 commits


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
     

01 May, 2017

1 commit


10 Feb, 2017

1 commit


24 Oct, 2016

1 commit


17 Sep, 2016

1 commit


26 Jan, 2016

1 commit

  • Enabling CONFIG_DISPLAY breaks building for some architectures
    (microblaze-generic), so we disable CONFIG_DISPLAY in Kconfig
    by default and enable this option in defconfigs. CONFIG_DISPLAY
    depends on CONFIG_I2C_EDID, so add and enable it in defconfigs, too.

    Signed-off-by: Anatolij Gustschin
    Reported-by: Bin Meng
    Cc: Simon Glass
    Reviewed-by: Tom Rini
    Reviewed-by: Simon Glass
    Tested-by: Bin Meng
    Signed-off-by: Anatolij Gustschin

    Anatolij Gustschin
     

22 Jan, 2016

2 commits


01 Dec, 2015

1 commit


03 Sep, 2015

1 commit

  • The Firefly RK3288 is a suitable target board for initial mainline Rockchip
    support. It includes a good set of peripherals, a recent SoC and it is
    readily available.

    This adds only some basic files required to allow the baord to display a
    serial message in SPL and hang.

    Signed-off-by: Simon Glass

    Simon Glass