1. 05 3月, 2016 1 次提交
  2. 03 3月, 2016 1 次提交
  3. 29 2月, 2016 1 次提交
  4. 21 2月, 2016 1 次提交
  5. 15 2月, 2016 1 次提交
  6. 08 2月, 2016 1 次提交
  7. 01 2月, 2016 1 次提交
  8. 25 1月, 2016 1 次提交
  9. 21 1月, 2016 1 次提交
  10. 11 1月, 2016 1 次提交
  11. 04 1月, 2016 1 次提交
  12. 28 12月, 2015 1 次提交
  13. 21 12月, 2015 1 次提交
  14. 17 12月, 2015 1 次提交
  15. 14 12月, 2015 1 次提交
  16. 10 12月, 2015 1 次提交
  17. 07 12月, 2015 1 次提交
  18. 30 11月, 2015 1 次提交
  19. 23 11月, 2015 1 次提交
  20. 16 11月, 2015 1 次提交
  21. 02 11月, 2015 1 次提交
  22. 25 10月, 2015 1 次提交
  23. 19 10月, 2015 1 次提交
  24. 12 10月, 2015 1 次提交
  25. 08 10月, 2015 1 次提交
  26. 04 10月, 2015 1 次提交
  27. 01 10月, 2015 1 次提交
  28. 28 9月, 2015 1 次提交
    • B
      DocBook: Use a fixed encoding for output · b479bfd0
      Ben Hutchings 提交于
      Currently the encoding of documents generated by DocBook depends on
      the current locale.  Make the output reproducible independently of
      the locale, by setting the encoding to UTF-8 (LC_CTYPE=C.UTF-8) by
      preference, or ASCII (LC_CTYPE=C) as a fallback.
      
      LC_CTYPE can normally be overridden by LC_ALL, but the top-level
      Makefile unsets that.
      Signed-off-by: NBen Hutchings <ben@decadent.org.uk>
      [jc: added check-lc_ctype to .gitignore]
      Signed-off-by: NJonathan Corbet <corbet@lwn.net>
      b479bfd0
  29. 27 9月, 2015 1 次提交
  30. 21 9月, 2015 1 次提交
  31. 13 9月, 2015 1 次提交
  32. 04 9月, 2015 1 次提交
  33. 31 8月, 2015 1 次提交
  34. 28 8月, 2015 1 次提交
  35. 24 8月, 2015 1 次提交
  36. 17 8月, 2015 1 次提交
  37. 14 8月, 2015 2 次提交
  38. 10 8月, 2015 1 次提交
  39. 07 8月, 2015 1 次提交
    • D
      modsign: Use single PEM file for autogenerated key · fb117949
      David Woodhouse 提交于
      The current rule for generating signing_key.priv and signing_key.x509 is
      a classic example of a bad rule which has a tendency to break parallel
      make. When invoked to create *either* target, it generates the other
      target as a side-effect that make didn't predict.
      
      So let's switch to using a single file signing_key.pem which contains
      both key and certificate. That matches what we do in the case of an
      external key specified by CONFIG_MODULE_SIG_KEY anyway, so it's also
      slightly cleaner.
      Signed-off-by: NDavid Woodhouse <David.Woodhouse@intel.com>
      Signed-off-by: NDavid Howells <dhowells@redhat.com>
      fb117949