xmake.lua 3.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. package("linux-headers")
  2. set_homepage("https://kernel.org/")
  3. set_description("Header files of the Linux kernel")
  4. set_license("GPL-2.0-only")
  5. add_urls("https://mirror.bjtu.edu.cn/kernel/linux/kernel/$(version).tar.xz",
  6. "https://mirrors.edge.kernel.org/pub/linux/kernel/$(version).tar.xz",
  7. "https://cdn.kernel.org/pub/linux/kernel/$(version).tar.xz",
  8. {version = function (version)
  9. return "v" .. version:major() .. ".x/linux-" .. version
  10. end})
  11. add_versions("4.20.9", "b5de28fd594a01edacd06e53491ad0890293e5fbf98329346426cf6030ef1ea6")
  12. add_versions("5.0.8", "11908044e8cce1e093141f8da594708d45d05d0381676ae9aa3d8aeaf7c85435")
  13. add_versions("5.9.16", "b0d7abae88e5f91893627c645e680a95c818defd1b4fcaf3e2afb4b2b6b4ab86")
  14. add_versions("5.10.46", "569122a39c6b325befb9ac1c07da0c53e6363b3baacd82081d131b06c1dc1415")
  15. add_versions("5.16.9", "1660e7228ec299c187c19739d115ded97f6b1be05a24986c4c443e7c5e8b744f")
  16. add_versions("5.15", "57b2cf6991910e3b67a1b3490022e8a0674b6965c74c12da1e99d138d1991ee8")
  17. add_configs("driver_modules", {description = "Enable driver modules files.", default = false, type = "boolean"})
  18. on_load(function (package)
  19. if package:config("driver_modules") then
  20. package:add("deps", "flex", "bison", "bc", "pkg-config")
  21. package:add("deps", "openssl", "elfutils", {private = true, host = true})
  22. else
  23. package:add("deps", "rsync")
  24. end
  25. end)
  26. on_fetch(function (package, opt)
  27. if opt.system and not package:is_cross() then
  28. import("lib.detect.find_path")
  29. local linux_headersdir = find_path("include/linux", "/usr/src/linux-headers-*")
  30. if linux_headersdir then
  31. -- parse version, linux-headers-5.11.0-41-generic, linux-headers-5.11.0-41
  32. local version = path.filename(linux_headersdir):match("linux%-headers%-(%d+%.%d+%.%d+).*")
  33. return {includedirs = path.join(linux_headersdir, "include"), version = version}
  34. end
  35. end
  36. end)
  37. on_install("linux", "cross", function (package)
  38. import("package.tools.make")
  39. if package:config("driver_modules") then
  40. local installdir = package:installdir()
  41. os.cp("*", installdir)
  42. if package:is_plat("cross") then
  43. local arch
  44. if package:is_arch("arm", "armv7") then
  45. arch = "arm"
  46. elseif package:is_arch("arm64", "arm64-v8a") then
  47. arch = "arm64"
  48. elseif package:is_arch("mips") then
  49. arch = "mips"
  50. elseif package:is_arch("ppc", "powerpc", "ppc64", "powerpc64") then
  51. arch = "powerpc"
  52. end
  53. assert(arch, "unknown arch(%s)!", package:arch())
  54. local cc = package:tool("cc")
  55. local cross = cc:gsub("%-gcc$", "-")
  56. make.make(package, {"ARCH=" .. arch, "CROSS_COMPILE=" .. cross, "allyesconfig"}, {curdir = installdir})
  57. make.make(package, {"ARCH=" .. arch, "CROSS_COMPILE=" .. cross, "modules_prepare"}, {curdir = installdir})
  58. else
  59. make.make(package, {"allyesconfig"}, {curdir = installdir})
  60. make.make(package, {"modules_prepare"}, {curdir = installdir})
  61. end
  62. os.rm(path.join(installdir, "source"))
  63. else
  64. os.vrunv("make", {"headers_install", "INSTALL_HDR_PATH=" .. package:installdir()})
  65. end
  66. end)
  67. on_test(function (package)
  68. assert(package:has_cincludes("linux/version.h"))
  69. end)