xmake.lua 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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_versions("6.7.6", "e489ec0e1370d089b446d565aded7a698093d2b7c4122a18f21edb6ef93d37d3")
  18. add_configs("driver_modules", {description = "Enable driver modules files.", default = false, type = "boolean"})
  19. on_load(function (package)
  20. if package:config("driver_modules") then
  21. package:add("deps", "flex", "bison", "bc", "pkg-config")
  22. package:add("deps", "openssl", "elfutils", {private = true, host = true})
  23. else
  24. package:add("deps", "rsync")
  25. end
  26. end)
  27. on_fetch(function (package, opt)
  28. if opt.system and not package:is_cross() then
  29. import("lib.detect.find_path")
  30. local linux_headersdir = find_path("include/linux", "/usr/src/linux-headers-*")
  31. if linux_headersdir then
  32. -- parse version, linux-headers-5.11.0-41-generic, linux-headers-5.11.0-41
  33. local version = path.filename(linux_headersdir):match("linux%-headers%-(%d+%.%d+%.%d+).*")
  34. return {includedirs = path.join(linux_headersdir, "include"), version = version}
  35. end
  36. end
  37. end)
  38. on_install("linux", "cross", function (package)
  39. import("package.tools.make")
  40. if package:config("driver_modules") then
  41. local installdir = package:installdir()
  42. os.cp("*", installdir)
  43. if package:is_plat("cross") then
  44. local arch
  45. if package:is_arch("arm", "armv7") then
  46. arch = "arm"
  47. elseif package:is_arch("arm64", "arm64-v8a") then
  48. arch = "arm64"
  49. elseif package:is_arch("mips") then
  50. arch = "mips"
  51. elseif package:is_arch("ppc", "powerpc", "ppc64", "powerpc64") then
  52. arch = "powerpc"
  53. end
  54. assert(arch, "unknown arch(%s)!", package:arch())
  55. local cc = package:tool("cc")
  56. local cross = cc:gsub("%-gcc$", "-")
  57. make.make(package, {"ARCH=" .. arch, "CROSS_COMPILE=" .. cross, "allyesconfig"}, {curdir = installdir})
  58. make.make(package, {"ARCH=" .. arch, "CROSS_COMPILE=" .. cross, "modules_prepare"}, {curdir = installdir})
  59. else
  60. make.make(package, {"allyesconfig"}, {curdir = installdir})
  61. make.make(package, {"modules_prepare"}, {curdir = installdir})
  62. end
  63. os.rm(path.join(installdir, "source"))
  64. else
  65. os.vrunv("make", {"headers_install", "INSTALL_HDR_PATH=" .. package:installdir()})
  66. end
  67. end)
  68. on_test(function (package)
  69. assert(package:has_cincludes("linux/version.h"))
  70. end)