26 Apr, 2016

3 commits


20 Apr, 2016

2 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


01 Mar, 2016

1 commit


22 Nov, 2015

1 commit


28 Sep, 2015

1 commit


13 Aug, 2015

3 commits

  • Add option to set shell prompt string from menuconfig and migrate
    boards globally.

    The migration is done as follows:
    - Boards that explicitly and unconditionally set CONFIG_SYS_PROMPT had the
    entry moved to their defconfig files.
    - Boards that defined some kind of #ifdef logic which selects the
    CONFIG_SYS_PROMPT (for example qemu-mips) got an #undef CONFIG_SYS_PROMPT
    right before the #ifdef logic and were left alone.
    - This change forces CONFIG_SYS_PROMPT to be a per board decision, and thus
    CONFIG_SYS_PROMPT was removed from all _common.h and _common.h
    files. This results in a streamlined default value across platforms, and
    includes the following files: spear-common, sunxi-common, mv-common,
    ti_armv7_common, tegra-common, at91-sama5_common, and zynq-common.
    - Boards that relied on _common.h values of CONFIG_SYS_PROMPT were
    not updated in their respective defconfig files under the assumption that
    since they did not explicitly define a value, they're fine with whatever
    the default is.
    - On the other hand, boards that relied on a value defined in some
    _common.h file such as woodburn_common, rpi-common,
    bur_am335x_common, ls2085a_common, siemens_am33x_common, and
    omap3_evm_common, had their values moved to the respective defconfig files.
    - The define V_PROMPT was removed, since it is not used anywhere except for
    assigning a value for CONFIG_SYS_PROMPT.

    Cc: Tom Rini
    Cc: Masahiro Yamada
    Cc: Stefano Babic
    Cc: Igor Grinberg
    Signed-off-by: Nikita Kiryanov
    [trini: Add spring, sniper, smartweb to conversion]
    Signed-off-by: Tom Rini

    Nikita Kiryanov
     
  • This adds support for the fastboot USB gadget, including flashing to the
    internal MMC and reboot to bootloader or not.

    Signed-off-by: Paul Kocialkowski
    Reviewed-by: Tom Rini
    [trini: Update to use Kconfig for MUSB]
    Signed-off-by: Tom Rini

    Paul Kocialkowski
     
  • The LG Optimus Black (P970) codename sniper is a smartphone that was designed
    and manufactured by LG Electronics (LGE) and released back in 2011.

    It is using an OMAP3630 SoC GP version, which allows running U-Boot and the
    U-Boot SPL from the ground up. This port is aimed at running an Android version
    such as Replicant, the fully free Android distribution. However, support for
    upstream Linux with device-tree and common GNU/Linux distros boot commands
    could be added in the future.

    For more information about the journey to freeing this device, please read the
    series of blog posts at:
    http://code.paulk.fr/article20/a-hacker-s-journey-freeing-a-phone-from-the-ground-up-first-part

    Signed-off-by: Paul Kocialkowski
    Reviewed-by: Tom Rini
    [trini: Add CONFIG_OF_SUPPORT]
    Signed-off-by: Tom Rini

    Paul Kocialkowski