15 Aug, 2018

1 commit

  • Remove CONFIG_BCB_SUPPORT config from BSP u-boot defconfig files.
    So that we can eliminate such errors during boot up:

    can't find partition: misc, dump the partition table
    idx 0, ptn 0 name='gpt' start=0 len=2048
    idx 1, ptn 0 name='tos' start=0 len=2047
    idx 2, ptn 0 name='all' start=0 len=7864320
    idx 3, ptn 0 name='bootloader' start=2 len=4094
    idx 4, ptn 1 name='mmcsdb1' start=20480 len=1024000
    idx 5, ptn 2 name='mmcsdb2' start=1228800 len=6635520
    cannot get the partion info for misc
    Cannot find partition 4080
    do_raw_read failed, ret 1
    read_bootctl, bcb_rw_block read failed
    read command failed

    Signed-off-by: Ye Li
    (cherry picked from commit 4d282a7a429876f1c1c67754a1d5c7aaaf75bb43)

    Ye Li
     

03 Aug, 2018

1 commit


13 Jun, 2018

1 commit

  • In u-boot 2018, CONFIG_G_DNL_MANUFACTURER, CONFIG_G_DNL_VENDOR_NUM and
    CONFIG_G_DNL_PRODUCT_NUM are changed to:

    CONFIG_USB_GADGET_MANUFACTURER
    CONFIG_USB_GADGET_VENDOR_NUM
    CONFIG_USB_GADGET_PRODUCT_NUM

    Fix them in imx6q/dl/qp/solo defconfigs, otherwise they are using default
    value.

    Signed-off-by: Ye Li

    Ye Li
     

27 Apr, 2018

1 commit


18 May, 2017

1 commit


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


28 Oct, 2016

1 commit


24 Oct, 2016

4 commits


27 Sep, 2016

1 commit

  • Introduce a hidden USB_FUNCTION_DFU Kconfig option and select it for
    CMD_DFU (as we must have the DFU command enabled to do anything DFU).
    Make all of the entries in drivers/dfu/Kconfig depend on CMD_DFU and add
    options for all of the back end choices that DFU can make use of.

    Cc: Lukasz Majewski
    Signed-off-by: Tom Rini
    Acked-by: Lukasz Majewski

    Tom Rini
     

10 Sep, 2016

1 commit


17 Jun, 2016

1 commit


26 Apr, 2016

3 commits


20 Apr, 2016

3 commits


26 Mar, 2016

1 commit

  • The description was borrowed from kernel. "tristate" type was changed
    to "bool" (I believe we don't support modules for u-boot yet, right?).
    CONFIG_USB_GADGET requires CONFIG_USB to be defined too, so add it along
    as well.

    Definitions were added to defconfig files in a way that
    "make savedefconfig" generates exactly the same file as used defconfig.

    Signed-off-by: Sam Protsenko
    [trini: Add zynq_zc702 conversion]
    Signed-off-by: Tom Rini

    Sam Protsenko
     

15 Mar, 2016

1 commit


25 Nov, 2015

1 commit


19 Nov, 2015

1 commit


02 Sep, 2015

1 commit

  • Move TARGET_xx Kconfig option based on mx6 to arch/arm/cpu/armv7/mx6/Kconfig.
    Add enable "CONFIG_ARCH_MX6" for boards based on mx6.
    Then we can choose target boards using "make ARCH=arm menuconfig"
    with ARCH_MX6 defined.

    If using original way, we have no chance to enable ARCH_MX6 when
    "make menuconfig". Even define CONFIG_ARCH_MX6=y in xx_defconfig,
    kconfig will complains "arch/../configs/platinum_titanium_defconfig:3:
    warning: override: TARGET_PLATINUM_TITANIUM changes choice state"

    Signed-off-by: Peng Fan
    Cc: Stefano Babic
    Cc: Heiko Schocher
    Cc: Tim Harvey
    Cc: Eric Bénard
    Cc: Fabio Estevam
    Cc: Eric Nelson
    Cc: Marek Vasut
    Cc: Christian Gmeiner
    Cc: Stefan Roese
    Cc: Soeren Moch
    Cc: Otavio Salvador
    Acked-by: Stefano Babic
    Acked-by: Soeren Moch
    Acked-by: Otavio Salvador
    Acked-by: Christian Gmeiner

    Peng Fan
     

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
     

01 Jun, 2015

2 commits


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
     

19 Apr, 2015

1 commit


23 Mar, 2015

1 commit

  • Before add CONFIG_SYS_MALLOC_F and CONFIG_SYS_MALLOC_F_LEN,
    uboot will complains "CPU: Temperature: Can't find sensor device".
    This is because DM and DM_THERMAL are enabled, but SYS_MALLOC_F
    is not configured.

    After applying this patch, uboot can correctly detect the temperature.
    "
    U-Boot 2015.04-rc2-00146-g48b6e30-dirty (Mar 09 2015 - 13:04:36)

    CPU: Freescale i.MX6DL rev1.1 at 792 MHz
    CPU: Temperature 44 C
    "

    Signed-off-by: Peng Fan

    Peng Fan
     

13 Feb, 2015

1 commit


09 Sep, 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