31 May, 2019

1 commit

  • Add SPDX license identifiers to all Make/Kconfig files which:

    - Have no license information of any form

    These files fall under the project license, GPL v2 only. The resulting SPDX
    license identifier is:

    GPL-2.0

    Reported-by: Masahiro Yamada
    Signed-off-by: Greg Kroah-Hartman
    Reviewed-by: Kate Stewart
    Signed-off-by: Greg Kroah-Hartman

    Greg Kroah-Hartman
     

11 Feb, 2013

1 commit

  • Arnd in his review pointed out that arch Kconfig organisation has several
    deficiencies:

    * Build time entries for things which can be runtime extracted from DT
    (e.g. SDRAM size, core clk frequency..)
    * Not multi-platform-image-build friendly (choice .. endchoice constructs)
    * cpu variants support (750/770) is exclusive.

    The first 2 have been fixed in subsequent patches.
    Due to the nature of the 750 and 770, it is not possible to build for
    both together, w/o special runtime glue code which would hurt
    performance.

    Signed-off-by: Vineet Gupta
    Cc: Arnd Bergmann
    Cc: Sam Ravnborg
    Acked-by: Sam Ravnborg

    Vineet Gupta