24 Feb, 2018

1 commit

  • This converts the following to Kconfig:
    CONFIG_BOOTP_BOOTPATH
    CONFIG_BOOTP_DNS
    CONFIG_BOOTP_GATEWAY
    CONFIG_BOOTP_HOSTNAME
    CONFIG_BOOTP_PXE
    CONFIG_BOOTP_SUBNETMASK
    CONFIG_CMDLINE_EDITING
    CONFIG_AUTO_COMPLETE
    CONFIG_SYS_LONGHELP
    CONFIG_SUPPORT_RAW_INITRD
    CONFIG_ENV_VARS_UBOOT_CONFIG

    Signed-off-by: Adam Ford
    [trini: Re-run the migration]
    Signed-off-by: Tom Rini

    Adam Ford
     

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
     

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
     

24 Aug, 2017

1 commit


15 Aug, 2017

2 commits


12 Aug, 2017

1 commit


01 Aug, 2017

11 commits


30 Jul, 2017

1 commit

  • Kbuild complains if USB is not selected before any of host driver.

    warning: (X86) selects USB_EHCI_HCD which has unmet direct dependencies (USB)
    warning: (X86) selects USB_EHCI_HCD which has unmet direct dependencies (USB)

    Select it for X86.

    Fixes: 64d6ac5bc4a9 ("Kconfig: USB: Migrate CONFIG_USB_EHCI_HCD users to Kconfig")
    Signed-off-by: Andy Shevchenko
    [bmeng: Update all x86 boards' defconfig files to remove CONFIG_USB]
    Signed-off-by: Bin Meng

    Andy Shevchenko
     

26 Jul, 2017

1 commit


12 Jul, 2017

1 commit


19 Jun, 2017

1 commit


28 Jan, 2017

4 commits


26 Jan, 2017

1 commit


30 Dec, 2016

1 commit


24 Oct, 2016

6 commits


12 Oct, 2016

1 commit


10 Sep, 2016

1 commit


09 Sep, 2016

1 commit


12 Jul, 2016

1 commit

  • Add support for Advantech SOM-DB5800 with the SOM-6867 installed.
    This is very similar to conga-qeval20-qa3-e3845 in that there is a
    reference carrier board (SOM-DB5800) with a Baytrail based SoM (SOM-6867)
    installed.

    Currently supported:
    - 2x UART (From ITE EC on SOM-6867) routed to COM3/4 connectors on
    SOM-DB5800.
    - 4x USB 2.0 (EHCI)
    - Video
    - SATA
    - Ethernet
    - PCIe
    - Realtek ALC892 HD Audio
    Pad configuration for HDA_RSTB, HDA_SYNC, HDA_CLK, HDA_SDO
    HDA_SDI0 is set in DT to enable HD Audio codec.
    Pin defaults for codec pin complexs are not changed.

    Not supported:
    - Winbond Super I/O (Must be disabled with jumpers on SOM-DB8500)
    - USB 3.0 (XHCI)
    - TPM

    Signed-off-by: George McCollister
    Reviewed-by: Simon Glass
    Reviewed-by: Bin Meng

    George McCollister