1
0

kernel-version.mk 697 B

123456789101112131415161718192021
  1. # Use the default kernel version if the Makefile doesn't override it
  2. LINUX_RELEASE?=1
  3. LINUX_VERSION-4.4 = .115
  4. LINUX_KERNEL_HASH-4.4.115 = 184861c36af4094120417c2270abaca4b90a275019f667c79574f6f8e41858ca
  5. ifdef KERNEL_PATCHVER
  6. LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER)))
  7. endif
  8. split_version=$(subst ., ,$(1))
  9. merge_version=$(subst $(space),.,$(1))
  10. KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
  11. KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
  12. KERNEL_PATCHVER ?= $(KERNEL)
  13. # disable the md5sum check for unknown kernel versions
  14. LINUX_KERNEL_HASH:=$(LINUX_KERNEL_HASH-$(strip $(LINUX_VERSION)))
  15. LINUX_KERNEL_HASH?=x