26 Mar, 2019

1 commit

  • This converts the following to Kconfig:
    CONFIG_SF_DEFAULT_BUS
    CONFIG_SF_DEFAULT_CS
    CONFIG_SF_DEFAULT_MODE
    CONFIG_SF_DEFAULT_SPEED

    I use moveconfig script and then manual check on generated u-boot.cfg
    to solve the remaining issue.

    Signed-off-by: Patrick Delaunay

    Patrick Delaunay
     

23 Feb, 2019

1 commit


14 Feb, 2019

1 commit


02 Feb, 2019

1 commit


26 Jan, 2019

1 commit


25 Jan, 2019

1 commit

  • No mainline board enables CONFIG_MCAST_TFTP and there have been
    compilation issues with the code for some time. Additionally, it has a
    potential buffer underrun issue (reported as a side note in
    CVE-2018-18439).

    Remove the multicast TFTP code but keep the driver API for the future
    addition of IPv6.

    Cc: Simon Goldschmidt
    Signed-off-by: Chris Packham
    Acked-by: Joe Hershberger

    Chris Packham
     

27 Nov, 2018

1 commit

  • In legacy CONFIG_HARD_SPI initalizing spi_init code, which
    was removed during dm conversion cleanup.

    So remove the dead instances of CONFIG_HARD_SPI, and related
    code.

    Signed-off-by: Jagan Teki

    Jagan Teki
     

03 Oct, 2018

1 commit


23 Sep, 2018

2 commits


20 Sep, 2018

1 commit

  • NAND flavors, like serial and parallel, have a lot in common and would
    benefit to share code. Let's move raw (parallel) NAND specific code in a
    raw/ subdirectory, to ease the addition of a core file in nand/ and the
    introduction of a spi/ subdirectory specific to SPI NANDs.

    Signed-off-by: Miquel Raynal

    Miquel Raynal
     

11 Sep, 2018

1 commit

  • You do not need to use the typedefs provided by compiler.

    Our compilers are either IPL32 or LP64. Hence, U-Boot can/should
    always use int-ll64.h typedefs like Linux kernel, whatever the
    typedefs the compiler internally uses.

    Signed-off-by: Masahiro Yamada

    Masahiro Yamada
     

18 Aug, 2018

1 commit


11 Aug, 2018

1 commit


23 Jul, 2018

1 commit


27 Jun, 2018

1 commit


29 May, 2018

1 commit

  • This was being used by some Marvell boards to enable some file system
    related features (many of which have already been moved to Kconfig).
    Make the future migration of the final 2 or 3 config options easier by
    expanding #define CONFIG_SYS_MVFS into the options that it enables and
    remove CONFIG_SYS_MVFS.

    Signed-off-by: Chris Packham
    Reviewed-by: Simon Glass
    Reviewed-by: Stefan Roese
    Signed-off-by: Stefan Roese

    Chris Packham
     

24 May, 2018

2 commits


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


09 Apr, 2018

3 commits


07 Apr, 2018

1 commit


24 Mar, 2018

2 commits

  • Signed-off-by: Petr Vorel

    Petr Vorel
     
  • Introduce another difference from upstream (kernel) source in
    fs/ubifs/super.c: adding preprocessor condition as y variable in
    mount_ubifs() depends on CONFIG_UBIFS_SILENCE_MSG:
    fs/ubifs/super.c:1337:15: error: variable ?y? set but not used [-Werror=unused-but-set-variable]
    long long x, y;

    Not setting CONFIG_UBIFS_SILENCE_MSG in am335x_igep003x_defconfig and
    igep0032_defconfig. Although it was defined in their config headers, it
    depends on CMD_UBIFS which is not set for them.

    Signed-off-by: Petr Vorel
    Cc: Joe Hershberger
    Cc: Heiko Schocher

    Petr Vorel
     

14 Mar, 2018

1 commit

  • CONFIG_PHY_ADDR is used for old-style configuration. This makes
    impossible changing the PHY address, if multiple boards share a same
    config header file (for example include/configs/sunxi-common.h).

    Moving this to Kconfig helps overcoming this issue. It's defined
    as entry inside PHYLIB section.

    After the implemention, moveconfig was run. The issues are:
    - edb9315a - CONFIG_PHYLIB is not enabled. Entry is
    deleted.

    - ds414 - CONFIG_PHYLIB is in incompatible format:
    { 0x1, 0x0 }. This entry is also deleted.

    - devkit3250 - The PHY_ADDR is in hex format (0x1F).
    Manually CONFIG_PHY_ADDR=31 is added in
    the defconfig.

    After the changes the suspicious defconfigs passes building.

    Signed-off-by: Stefan Mavrodiev
    Acked-by: Maxime Ripard
    [jagan: rebased on master]
    Signed-off-by: Jagan Teki
    Reviewed-by: Jagan Teki

    Stefan Mavrodiev
     

24 Feb, 2018

7 commits


22 Feb, 2018

1 commit


15 Feb, 2018

2 commits

  • This converts the following to Kconfig:
    CONFIG_BOOTCOUNT_LIMIT

    Signed-off-by: Lukasz Majewski
    Tested-by: Alex Kiernan
    Reviewed-by: Hannes Schmelzer
    Acked-by: Hannes Schmelzer

    Lukasz Majewski
     
  • Migrate the option CONFIG_SPL_FRAMEWORK and make this gate most of the
    current set of options we have in Kconfig. We will need to have some
    options available for SPL and !SPL_FRAMEWORK so this is important. In a
    few cases we re-order existing options so that we have less escapes from
    the SPL_FRAMEWORK guard.

    Signed-off-by: Tom Rini

    Tom Rini
     

14 Feb, 2018

2 commits