kernel-version.mk 1.1 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Use the default kernel version if the Makefile doesn't override it
  2. LINUX_RELEASE?=1
  3. ifeq ($(LINUX_VERSION),2.6.25.20)
  4. LINUX_KERNEL_MD5SUM:=0da698edccf03e2235abc2830a495114
  5. endif
  6. ifeq ($(LINUX_VERSION),2.6.30.10)
  7. LINUX_KERNEL_MD5SUM:=eb6be465f914275967a5602cb33662f5
  8. endif
  9. ifeq ($(LINUX_VERSION),2.6.31.14)
  10. LINUX_KERNEL_MD5SUM:=3e7feb224197d8e174a90dd3759979fd
  11. endif
  12. ifeq ($(LINUX_VERSION),2.6.32.20)
  13. LINUX_KERNEL_MD5SUM:=c254831e3f59b9fef14e61871e5f4738
  14. endif
  15. ifeq ($(LINUX_VERSION),2.6.33.7)
  16. LINUX_KERNEL_MD5SUM:=2cea51deeaa0620a07d005ec3b148f06
  17. endif
  18. ifeq ($(LINUX_VERSION),2.6.34.5)
  19. LINUX_KERNEL_MD5SUM:=d280b596b32f7497bbe9dd54669c99d6
  20. endif
  21. ifeq ($(LINUX_VERSION),2.6.35.4)
  22. LINUX_KERNEL_MD5SUM:=0bb2cd59c13d7412f813c8fbc0769eec
  23. endif
  24. # disable the md5sum check for unknown kernel versions
  25. LINUX_KERNEL_MD5SUM?=x
  26. split_version=$(subst ., ,$(1))
  27. merge_version=$(subst $(space),.,$(1))
  28. KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
  29. KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
  30. KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))