kernel-version.mk 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # Use the default kernel version if the Makefile doesn't override it
  2. LINUX_RELEASE?=1
  3. LINUX_VERSION-3.18 = .71
  4. LINUX_VERSION-4.4 = .119
  5. LINUX_VERSION-4.9 = .86
  6. LINUX_VERSION-4.14 = .25
  7. LINUX_KERNEL_HASH-3.18.71 = 5abc9778ad44ce02ed6c8ab52ece8a21c6d20d21f6ed8a19287b4a38a50c1240
  8. LINUX_KERNEL_HASH-4.4.119 = 4f1f9b7b6b2ee93597239d89bb3b6b60c71ebd8c91d706fadd36f515c68443e6
  9. LINUX_KERNEL_HASH-4.9.86 = a7cf6eb5efcf182f1760fdfc06118eecce5d8c9d82d6945e68fc15db990c6e85
  10. LINUX_KERNEL_HASH-4.14.25 = 6dcfbf79c068e51c1b06edb1ce58ddc9ca351f862bf2a144e96106ec3f21e587
  11. remove_uri_prefix=$(subst git://,,$(subst http://,,$(subst https://,,$(1))))
  12. sanitize_uri=$(call qstrip,$(subst @,_,$(subst :,_,$(subst .,_,$(subst -,_,$(subst /,_,$(1)))))))
  13. ifneq ($(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),)
  14. LINUX_VERSION:=$(call sanitize_uri,$(call remove_uri_prefix,$(CONFIG_KERNEL_GIT_CLONE_URI)))
  15. ifeq ($(call qstrip,$(CONFIG_KERNEL_GIT_REF)),)
  16. CONFIG_KERNEL_GIT_REF:=HEAD
  17. endif
  18. LINUX_VERSION:=$(LINUX_VERSION)-$(call sanitize_uri,$(CONFIG_KERNEL_GIT_REF))
  19. else
  20. ifdef KERNEL_PATCHVER
  21. LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER)))
  22. endif
  23. endif
  24. split_version=$(subst ., ,$(1))
  25. merge_version=$(subst $(space),.,$(1))
  26. KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
  27. KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
  28. KERNEL_PATCHVER ?= $(KERNEL)
  29. # disable the md5sum check for unknown kernel versions
  30. LINUX_KERNEL_HASH:=$(LINUX_KERNEL_HASH-$(strip $(LINUX_VERSION)))
  31. LINUX_KERNEL_HASH?=x