01 Mar, 2018

3 commits


02 Feb, 2018

1 commit


30 Jan, 2018

1 commit


18 Dec, 2017

2 commits


15 Dec, 2017

5 commits


13 Dec, 2017

1 commit


28 Nov, 2017

2 commits


17 Oct, 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
     

04 Oct, 2017

1 commit

  • The g_dnl USB settings for the vendor ID, product ID and manufacturer are
    actually common settings that can and should be shared by all the gadgets.

    Make them common by renaming them, and convert all the users.

    Reviewed-by: Simon Glass
    Reviewed-by: Lukasz Majewski
    Signed-off-by: Maxime Ripard

    Maxime Ripard
     

02 Sep, 2017

1 commit


28 Aug, 2017

1 commit


15 Aug, 2017

1 commit


12 Aug, 2017

2 commits


11 Aug, 2017

1 commit


09 Aug, 2017

1 commit


02 Aug, 2017

1 commit

  • Not using board revision is causing confusion about which board is
    supported and tested. Mark dts files exactly with board revision which
    was tested. When new board revision arives it can be symlink if SW view
    is the same. Also add -revX suffix to compatible string because user space
    tools are parsing this string and can change behavior depends of board
    revision.

    Signed-off-by: Michal Simek
    Reviewed-by: Simon Glass

    Michal Simek