19 Aug, 2015

2 commits

  • We have to set a MAC address to use network.
    Otherwise, the tftpboot command fails with the following message:

    Gem.e000b000 Waiting for PHY auto negotiation to complete........ done
    *** ERROR: `ethaddr' not set

    Since commit 92ac52082140 ("net: Remove all references to
    CONFIG_ETHADDR and friends"), we can not use CONFIG_ETHADDR.

    The easiest way to set a MAC address is to enable
    CONFIG_NET_RANDOM_ETHADDR.

    Signed-off-by: Masahiro Yamada
    Acked-by: Joe Hershberger
    Signed-off-by: Michal Simek

    Masahiro Yamada
     
  • Use embedded DTB to let users use u-boot instead of u-boot-dtb.bin.
    And fix SPL to use this target.

    Signed-off-by: Michal Simek

    Michal Simek
     

01 Jul, 2015

1 commit


26 Jun, 2015

2 commits

  • This sets the default commands Kconfig to match
    include/config_cmd_default.h commands in the common/Kconfig and removes
    them from include/configs.

    Signed-off-by: Joe Hershberger
    [trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates]
    Signed-off-by: Tom Rini

    Joe Hershberger
     
  • Some archs/boards specify their own default by pre-defining the config
    which causes the Kconfig system to mix up the order of the configs in
    the defconfigs... This will cause merge pain if allowed to proliferate.

    Remove the configs that behave this way from the archs.

    A few configs still remain, but that is because they only exist as
    defaults and do not have a proper Kconfig entry. Those appear to be:

    SPIFLASH
    DISPLAY_BOARDINFO

    Signed-off-by: Joe Hershberger
    [trini: rastaban, am43xx_evm_usbhost_boot, am43xx_evm_ethboot updates,
    drop DM_USB from MSI_Primo81 as USB_MUSB_SUNXI isn't converted yet to DM]
    Signed-off-by: Tom Rini

    Joe Hershberger
     

11 Jun, 2015

1 commit


01 Jun, 2015

1 commit


13 May, 2015

1 commit

  • In order to reduce merge conflicts and to maintain the simplest possible
    defconfig files, we should be using the savedefconfig feature of Kconfig
    every time a new feature is added. This keeps the defconfig settings to
    a minimum (only those things not default) and keeps them in the same
    order as the Kconfig options.

    Signed-off-by: Joe Hershberger
    Cc: Masahiro Yamada
    Acked-by: Stephen Warren
    Cc: Tom Rini

    Joe Hershberger
     

29 Apr, 2015

1 commit


19 Apr, 2015

1 commit


09 Apr, 2015

1 commit

  • Since commit 326a682358c1 (malloc_f: enable SYS_MALLOC_F by default
    if DM is on), Zynq MMC boot hangs up after printing the following:

    U-Boot SPL 2015.04-rc5-00053-gadcc570 (Apr 08 2015 - 12:59:11)
    mmc boot
    reading system.dtb

    Prior to commit 326a682358c1, Zynq boards enabled CONFIG_DM, but
    not CONFIG_SYS_MALLOC_F. That commit forcibly turned on
    CONFIG_SYS_MALLOC_F. I have not figured out the root cause, but
    anyway it looks like CONFIG_SYS_MALLOC_F gave a bad impact on the
    Zynq MMC boot.

    We are planning to have the v2015.04 release in a few days.
    I know this is a defensive fixup, but what I can do now is to add
    # CONFIG_SYS_MALLOC_F is not set
    to every Zynq defconfig file to get back the original behavior.

    Tested on:
    - Zedboard
    - ZC706 board

    Signed-off-by: Masahiro Yamada
    Tested-by: Michal Simek
    Cc: Simon Glass

    Masahiro Yamada
     

16 Mar, 2015

1 commit


30 Jan, 2015

2 commits

  • Modify rsa_verify to use the rsa driver of DM library .The tools
    will continue to use the same RSA sw library.

    CONFIG_RSA is now dependent on CONFIG_DM. All configurations which
    enable FIT based signatures have been modified to enable CONFIG_DM
    by default.

    Signed-off-by: Ruchika Gupta
    CC: Simon Glass
    Acked-by: Simon Glass

    Ruchika Gupta
     
  • For the platforms which use,CONFIG_FIT_SIGNATURE, the required configs are
    moved to the platform's defconfig file. Selecting CONFIG_FIT_SIGNATURE using
    defconfig automatically resolves the dependencies for signature verification.
    The RSA library gets automatically selected and user does not have to define
    CONFIG_RSA manually.

    Signed-off-by: Ruchika Gupta
    CC: Simon Glass
    Acked-by: Simon Glass

    Ruchika Gupta
     

25 Sep, 2014

2 commits

  • This option specifies the default Device Tree used for the run-time
    configuration of U-Boot.

    Signed-off-by: Masahiro Yamada
    Cc: Simon Glass
    Cc: Stephen Warren
    Cc: Minkyu Kang
    Cc: Michal Simek

    Masahiro Yamada
     
  • This commit moves:
    CONFIG_OF_CONTROL
    CONFIG_OF_SEPARATE
    CONFIG_OF_EMBED
    CONFIG_OF_HOSTFILE

    Because these options are currently not supported for SPL,
    the "Device Tree Control" menu does not appear in the SPL
    configuration.

    Note:
    zynq-common.h should be adjusted so as not to change the
    default value of CONFIG_SPL_FAT_LOAD_PAYLOAD_NAME.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass
    Cc: Stephen Warren
    Cc: Minkyu Kang
    Acked-by: Michal Simek

    Masahiro Yamada
     

31 Aug, 2014

1 commit


30 Jul, 2014

1 commit

  • This commit adds:
    - arch/${ARCH}/Kconfig
    provide a menu to select target boards
    - board/${VENDOR}/${BOARD}/Kconfig or board/${BOARD}/Kconfig
    set CONFIG macros to the appropriate values for each board
    - configs/${TARGET_BOARD}_defconfig
    default setting of each board

    (This commit was automatically generated by a conversion script
    based on boards.cfg)

    In Linux Kernel, defconfig files are located under
    arch/${ARCH}/configs/ directory.
    It works in Linux Kernel since ARCH is always given from the
    command line for cross compile.

    But in U-Boot, ARCH is not given from the command line.
    Which means we cannot know ARCH until the board configuration is done.
    That is why all the "*_defconfig" files should be gathered into a
    single directory ./configs/.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass

    Masahiro Yamada