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


02 Oct, 2016

1 commit

  • Rock2 has been tested with back to brom feature. The tricky part is that
    with this feature the default environment is inside u-boot, and it's
    defined for every rk3288 board independetly. So I just changed it for
    rock2 here if ROCKCHIP_SPL_BACK_TO_BROM.

    Solve by moving environment after u-boot before 1M boundary

    Signed-off-by: Sandy Patterson
    Acked-by: Simon Glass

    Sandy Patterson
     

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

1 commit

  • This board includes an RK3288 SoC on a SOM. It can be mounted on a
    base-board which provides a wide range of peripherals.

    So far this is verified to boot to a prompt from a microSD card. The serial
    console works as well as HDMI.

    Thanks to Tom Cubie for sending me a board.

    Signed-off-by: Simon Glass

    Simon Glass