1. 31 Jan, 2018 1 commit
  2. 23 Jan, 2018 1 commit
  3. 17 Jan, 2018 1 commit
  4. 10 Jan, 2018 1 commit
  5. 05 Jan, 2018 1 commit
  6. 02 Jan, 2018 2 commits
  7. 29 Dec, 2017 1 commit
  8. 25 Dec, 2017 2 commits
  9. 20 Dec, 2017 1 commit
  10. 17 Dec, 2017 2 commits
  11. 14 Dec, 2017 1 commit
  12. 10 Dec, 2017 1 commit
  13. 05 Dec, 2017 1 commit
  14. 30 Nov, 2017 1 commit
  15. 24 Nov, 2017 1 commit
  16. 21 Nov, 2017 1 commit
  17. 12 Nov, 2017 1 commit
  18. 05 Nov, 2017 1 commit
  19. 02 Nov, 2017 1 commit
    • Greg Kroah-Hartman's avatar
      License cleanup: add SPDX GPL-2.0 license identifier to files with no license · b2441318
      Greg Kroah-Hartman authored
      Many source files in the tree are missing licensing information, which
      makes it harder for compliance tools to determine the correct license.
      
      By default all files without license information are under the default
      license of the kernel, which is GPL version 2.
      
      Update the files which contain no license information with the 'GPL-2.0'
      SPDX license identifier.  The SPDX identifier is a legally binding
      shorthand, which can be used instead of the full boiler plate text.
      
      This patch is based on work done by Thomas Gleixner and Kate Stewart and
      Philippe Ombredanne.
      
      How this work was done:
      
      Patches were generated and checked against linux-4.14-rc6 for a subset of
      the use cases:
       - file had no licensing information it it.
       - file was a */uapi/* one with no licensing information in it,
       - file was a */uapi/* one with existing licensing information,
      
      Further patches will be generated in subsequent months to fix up cases
      where non-standard...
      b2441318
  20. 29 Oct, 2017 1 commit
  21. 24 Oct, 2017 1 commit
  22. 23 Oct, 2017 1 commit
  23. 16 Oct, 2017 1 commit
  24. 09 Oct, 2017 1 commit
  25. 07 Oct, 2017 2 commits
  26. 04 Oct, 2017 1 commit
  27. 01 Oct, 2017 1 commit
  28. 24 Sep, 2017 1 commit
  29. 21 Sep, 2017 1 commit
    • Shuah Khan's avatar
      Makefile: kselftest and kselftest-clean fail for make O=dir case · 2bc84526
      Shuah Khan authored
      
      kselftest and kselftest-clean targets fail when object directory is
      specified to relocate objects. Fix it so it can find the source tree
      to build from.
      
      make O=/tmp/kselftest_top kselftest
      
      make[1]: Entering directory '/tmp/kselftest_top'
      make[2]: Entering directory '/tmp/kselftest_top'
      make[2]: *** tools/testing/selftests: No such file or directory.  Stop.
      make[2]: Leaving directory '/tmp/kselftest_top'
      ./linux-kselftest/Makefile:1185: recipe for target
      'kselftest' failed
      make[1]: *** [kselftest] Error 2
      make[1]: Leaving directory '/tmp/kselftest_top'
      Makefile:145: recipe for target 'sub-make' failed
      make: *** [sub-make] Error 2
      Signed-off-by: default avatarShuah Khan <shuahkh@osg.samsung.com>
      Acked-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      2bc84526
  30. 16 Sep, 2017 2 commits
  31. 14 Sep, 2017 1 commit
    • Greg Kroah-Hartman's avatar
      firmware: delete in-kernel firmware · 5620a0d1
      Greg Kroah-Hartman authored
      
      The last firmware change for the in-kernel firmware source code was back
      in 2013.  Everyone has been relying on the out-of-tree linux-firmware
      package for a long long time.
      
      So let's drop it, it's baggage we don't need to keep dragging around
      (and having to fix random kbuild issues over time...)
      
      Cc: Kyle McMartin <kyle@kernel.org>
      Cc: Andrew Morton <akpm@linux-foundation.org>
      Cc: Michal Marek <mmarek@suse.com>
      Cc: Masahiro Yamada <yamada.masahiro@socionext.com>
      Acked-by: default avatarDavid Woodhouse <dwmw2@infradead.org>
      Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
      5620a0d1
  32. 03 Sep, 2017 1 commit
  33. 31 Aug, 2017 1 commit
    • Masahiro Yamada's avatar
      kbuild: use $(abspath ...) instead of $(shell cd ... && /bin/pwd) · 8e9b4667
      Masahiro Yamada authored
      Kbuild conventionally uses $(shell cd ... && /bin/pwd) idiom to get
      the absolute path of the directory because GNU Make 3.80, the minimal
      supported version at that time, did not support $(abspath ...) or
      $(realpath ...).
      
      Commit 37d69ee3
      
       ("docs: bump minimal GNU Make version to 3.81")
      dropped the GNU Make 3.80 support, so we are now allowed to use those
      make-builtin helpers.
      
      This conversion will provide better portability without relying on
      the pwd command or its location /bin/pwd.
      
      I am intentionally using $(realpath ...) instead $(abspath ...) in
      some places.  The difference between the two is $(realpath ...)
      returns an empty string if the given path does not exist.  It is
      convenient in places where we need to error-out if the makefile fails
      to create an output directory.
      Signed-off-by: default avatarMasahiro Yamada <yamada.masahiro@socionext.com>
      Acked-by: default avatarThierry Reding <treding@nvidia.com>
      8e9b4667
  34. 28 Aug, 2017 1 commit
  35. 21 Aug, 2017 1 commit