26 Mar, 2019

1 commit

  • This converts the following to Kconfig:
    CONFIG_ENV_SPI_BUS
    CONFIG_ENV_SPI_CS
    CONFIG_ENV_SPI_MAX_HZ
    CONFIG_ENV_SPI_MODE

    Most of time these value are not needed, CONFIG_SF_DEFAULT
    with same value is used, so I introduced CONFIG_USE_ENV_SPI_*
    to force the associated value for the environment.

    Signed-off-by: Patrick Delaunay

    Patrick Delaunay
     

08 Feb, 2019

1 commit


07 Feb, 2019

1 commit


05 Feb, 2019

1 commit

  • This patch adds DM_PCI support to the MVEBU PCIe driver. This is
    necessary, since all PCI drivers have to be moved to DM (driver model)
    until the v2019.07 release.

    To not break git bisect'ablility, this patch also moves CONFIG_PCI_MVEBU
    from config headers to the defconfig files.

    Signed-off-by: Stefan Roese
    Cc: Dirk Eibach
    Cc: Mario Six
    Cc: Chris Packham
    Cc: Phil Sutter
    Cc: Marek Behún
    Cc: VlaoMao

    Stefan Roese
     

08 Jan, 2019

1 commit


04 Sep, 2018

1 commit


18 Aug, 2018

2 commits


17 Aug, 2018

1 commit

  • We have the following cases:
    - CONFIG_NR_DRAM_BANKS was defined, migrate normally
    - CONFIG_NR_DRAM_BANKS_MAX was defined and then used for
    CONFIG_NR_DRAM_BANKS after a check, just migrate it over now.
    - CONFIG_NR_DRAM_BANKS was very oddly defined on p2771-0000-* (to 1024 +
    2), set this to 8.

    Signed-off-by: Tom Rini

    Tom Rini
     

04 Jun, 2018

1 commit


15 May, 2018

1 commit


12 Apr, 2018

1 commit


09 Apr, 2018

1 commit


08 Apr, 2018

1 commit


14 Feb, 2018

1 commit


11 Feb, 2018

1 commit

  • On the NIOS2 and Xtensa architectures, we do not have
    CONFIG_SYS_TEXT_BASE set. This is a strict migration of the current
    values into the defconfig and removing them from the headers.

    I did not attempt to add more default values in and for now will leave
    that to maintainers.

    Signed-off-by: Tom Rini

    Tom Rini
     

13 Dec, 2017

1 commit


11 Oct, 2017

1 commit

  • Having this as a 'default y' is rather annoying because it doesn't
    actually compile unless other options are defined in the board header:

    ../cmd/bootm.c: In function 'do_imls_nor':
    ../cmd/bootm.c:330:7: error: 'CONFIG_SYS_MAX_FLASH_BANKS' undeclared (first use in this function); did you mean 'CONFIG_SYS_MAX_FLASH_SECT'?
    i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {

    Make it 'default n' so people who develop new boards that start from a
    blank defconfig have one less compilation failure to debug.

    Signed-off-by: Tuomas Tynkkynen

    Tuomas Tynkkynen
     

03 Oct, 2017

1 commit


26 Sep, 2017

1 commit


28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


12 Aug, 2017

1 commit


09 Aug, 2017

1 commit


08 Aug, 2017

1 commit


26 Jul, 2017

2 commits


12 Jul, 2017

1 commit

  • The Turris Omnia is a open-source router created by CZ.NIC.

    The code is based on the Marvell/db-88f6820-gp by Stefan Roese
    with modifications from Tomas Hlavacek in the CZ.NIC turris-omnia-uboot
    repository, which can be found at
    https://gitlab.labs.nic.cz/turris/turris-omnia-uboot

    By default, the Turris Omnia uses btrfs as the main and only filesystem,
    and also loads kernel and device tree from this filesystem. Since U-Boot
    does not yet support btrfs, you should not flash your Turris Omnia board
    with this unless you know what you are doing.

    Signed-off-by: Tomas Hlavacek
    Signed-off-by: Marek Behun

    create mode 100644 board/CZ.NIC/turris_omnia/Makefile
    create mode 100644 board/CZ.NIC/turris_omnia/kwbimage.cfg
    create mode 100644 board/CZ.NIC/turris_omnia/turris_omnia.c
    create mode 100644 configs/turris_omnia_defconfig
    create mode 100644 include/configs/turris_omnia.h
    Signed-off-by: Stefan Roese

    Marek Behún