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
     

04 Oct, 2017

4 commits


15 Aug, 2017

1 commit


30 Apr, 2017

1 commit


28 Jan, 2017

1 commit


24 Jan, 2017

1 commit


22 Jan, 2017

1 commit


03 Jan, 2017

1 commit


27 Sep, 2016

1 commit

  • Introduce a hidden USB_FUNCTION_DFU Kconfig option and select it for
    CMD_DFU (as we must have the DFU command enabled to do anything DFU).
    Make all of the entries in drivers/dfu/Kconfig depend on CMD_DFU and add
    options for all of the back end choices that DFU can make use of.

    Cc: Lukasz Majewski
    Signed-off-by: Tom Rini
    Acked-by: Lukasz Majewski

    Tom Rini
     

10 Sep, 2016

1 commit


09 Sep, 2016

1 commit


28 Jul, 2016

1 commit


20 Jul, 2016

4 commits


17 Jun, 2016

1 commit


11 May, 2016

1 commit

  • CONFIG_OF_LIBFDT needs to be selected to avoid the following
    boot problem:

    reading zImage
    6346216 bytes read in 118 ms (51.3 MiB/s)
    Booting from mmc ...
    reading imx7d-warp.dtb
    32593 bytes read in 11 ms (2.8 MiB/s)
    Kernel image @ 0x80800000 [ 0x000000 - 0x60d5e8 ]
    FDT and ATAGS support not compiled in - hanging
    ### ERROR ### Please RESET the board ###

    Signed-off-by: Fabio Estevam

    Fabio Estevam
     

26 Apr, 2016

3 commits


26 Mar, 2016

1 commit

  • Add the basic support for Warp7 board.

    For more information about this reference design, please visit:

    https://www.element14.com/community/docs/DOC-79058/l/warp-7-the-next-generation-wearable-reference-platform

    Signed-off-by: Fabio Estevam
    Reviewed-by: Peng Fan

    Fabio Estevam