kernel-ver.mk 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. #
  4. # On the various kernel version variables:
  5. #
  6. # KERNEL_FILE_VER: version numbering used for tarball and contained top level
  7. # directory (e.g. linux-4.1.2.tar.bz2 -> linux-4.1.2) (not
  8. # necessary equal to kernel's version, e.g. linux-3.19
  9. # contains kernel version 3.19.0)
  10. # KERNEL_RELEASE: OpenADK internal versioning
  11. # KERNEL_VERSION: final kernel version how we want to identify a specific kernel
  12. ifeq ($(ADK_TARGET_KERNEL_VERSION_GIT),y)
  13. ifneq ($(ADK_TARGET_KERNEL_HASH),)
  14. KERNEL_FILE_VER:= $(ADK_TARGET_KERNEL_HASH)
  15. else
  16. KERNEL_FILE_VER:= git
  17. endif
  18. KERNEL_RELEASE:= 1
  19. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  20. endif
  21. ifeq ($(ADK_TARGET_KERNEL_VERSION_4_5_2),y)
  22. KERNEL_FILE_VER:= 4.5.2
  23. KERNEL_RELEASE:= 1
  24. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  25. KERNEL_HASH:= e32339db8365f0f10b873928095da47dd3e8a40f8ea5edd5501320d4ff30209f
  26. endif
  27. ifeq ($(ADK_TARGET_KERNEL_VERSION_4_4_8),y)
  28. KERNEL_FILE_VER:= 4.4.8
  29. KERNEL_RELEASE:= 1
  30. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  31. KERNEL_HASH:= d2a7a7536a5012cc2e6ab1ddf3d31320b4420cc4de3a4c2cda1daed8663bee09
  32. endif
  33. ifeq ($(ADK_TARGET_KERNEL_VERSION_4_1_23),y)
  34. KERNEL_FILE_VER:= 4.1.23
  35. KERNEL_RELEASE:= 1
  36. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  37. KERNEL_HASH:= 15b13213052596f9af040dc25e01a88e950a0901cec38fabb8f38b6a661e8c74
  38. endif
  39. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_18_31),y)
  40. KERNEL_FILE_VER:= 3.18.31
  41. KERNEL_RELEASE:= 1
  42. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  43. KERNEL_HASH:= 0d04f979da76afb37af164b57aef8a2499b8987979d6f01adaa9b11821bf60b7
  44. endif
  45. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_14_67),y)
  46. KERNEL_FILE_VER:= 3.14.67
  47. KERNEL_RELEASE:= 1
  48. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  49. KERNEL_HASH:= f0fef05f0c89382e5152a3b53cbb3350613c0a16dda2a2c2fef88985a7b7dbae
  50. endif
  51. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_12_59),y)
  52. KERNEL_FILE_VER:= 3.12.59
  53. KERNEL_RELEASE:= 1
  54. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  55. KERNEL_HASH:= 6c626d95186c082a3a3e7e777cd374c0e03a851d8b8b2b2a0ee29786a1efce93
  56. endif
  57. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_10_101),y)
  58. KERNEL_FILE_VER:= 3.10.101
  59. KERNEL_RELEASE:= 1
  60. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  61. KERNEL_HASH:= 36358cdcc2f322d4b5fc0e7fc44376b7dbc895c94703db8787722145b7e912bd
  62. endif
  63. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_4_111),y)
  64. KERNEL_FILE_VER:= 3.4.111
  65. KERNEL_RELEASE:= 1
  66. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  67. KERNEL_HASH:= e02c7b5cf97b3bfa40febf2e957c1652dcecd557dc0d5cd5936815355c9e6efb
  68. endif
  69. ifeq ($(ADK_TARGET_KERNEL_VERSION_3_2_79),y)
  70. KERNEL_FILE_VER:= 3.2.79
  71. KERNEL_RELEASE:= 1
  72. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  73. KERNEL_HASH:= e3f85b5cfdf2f1590a2fd9523a6fcb09312a34309fdad4fb2a0ff60a3170547c
  74. endif
  75. ifeq ($(ADK_TARGET_KERNEL_VERSION_2_6_32_70),y)
  76. KERNEL_FILE_VER:= 2.6.32.70
  77. KERNEL_RELEASE:= 1
  78. KERNEL_VERSION:= $(KERNEL_FILE_VER)-$(KERNEL_RELEASE)
  79. KERNEL_HASH:= d7d0ee4588711d4f85ed67b65d447b4bbbe215e600a771fb87a62524b6341c43
  80. endif