26 Nov, 2018

1 commit


07 May, 2018

1 commit

  • When U-Boot started using SPDX tags we were among the early adopters and
    there weren't a lot of other examples to borrow from. So we picked the
    area of the file that usually had a full license text and replaced it
    with an appropriate SPDX-License-Identifier: entry. Since then, the
    Linux Kernel has adopted SPDX tags and they place it as the very first
    line in a file (except where shebangs are used, then it's second line)
    and with slightly different comment styles than us.

    In part due to community overlap, in part due to better tag visibility
    and in part for other minor reasons, switch over to that style.

    This commit changes all instances where we have a single declared
    license in the tag as both the before and after are identical in tag
    contents. There's also a few places where I found we did not have a tag
    and have introduced one.

    Signed-off-by: Tom Rini

    Tom Rini
     

28 Apr, 2018

1 commit


24 Feb, 2018

1 commit


21 Jun, 2016

1 commit

  • DISTRO_DEFAULTS is intended to mirror / replace
    include/config_distro_defaults.h.

    The intend is for boards which include this file to select this from
    their Kconfig files and when moving setting to Kconfig which are #define-ed
    in config_distro_defaults.h to select this from DISTRO_DEFAULTS so that
    boards which have selected DISTRO_DEFAULTS will keep the same configuration
    as before without needing any defconfig file changes.

    The initial list of selected things matches all settings recently removed
    from config_distro_defaults.h because they have been converted to Kconfig,
    with the exception of CMD_ELF and CMD_NET, which have a default of y, if
    the default of these ever changes they should be selected by DISTRO_DEFAULTS
    too.

    For testing and example purposes this commit also converts ARCH_SUNXI
    to use DISTRO_DEFAULT instead of selecting everything it needs itself.

    Signed-off-by: Hans de Goede

    Hans de Goede
     

16 Feb, 2016

1 commit


29 Jan, 2016

2 commits

  • The PCI bus must be enumerated before PCI devices, such as Ethernet
    devices, are known to U-Boot. Enhance the distro boot commands to perform
    PCI enumeration when needed.

    Signed-off-by: Stephen Warren
    Reviewed-by: Simon Glass

    Stephen Warren
     
  • Currently, the distro boot commands always enumerate USB devices before
    performing network operations. However, depending on the board and end-
    user configuration, network devices may not be attached to USB, and so
    enumerating USB may not be necessary. Enhance the scripts to make this
    step optional, so that the user can decrease boot time if they don't
    need USB.

    This change is performed by moving the "usb start" invocation into a
    standalone variable. If the user desires, they can replace that
    variable's value with some no-op command such as "true" instead.

    Booting from a USB storage device always needs to enumerate USB devices,
    so this action is still hard-coded.

    Signed-off-by: Stephen Warren
    Reviewed-by: Simon Glass

    Stephen Warren
     

09 Jul, 2015

1 commit


29 Mar, 2015

1 commit


30 Jan, 2015

1 commit

  • Add documentation on how to setup a system to use the generic distro
    configs and boot commands. This spells out what is needed to make a
    system conformant, but does not limit the board to only the defaults.

    Signed-off-by: Dennis Gilmore
    [swarren, added concept, user config, BOOT_TARGET_DEVICES sections.
    edited the rest]
    Signed-off-by: Stephen Warren

    Dennis Gilmore