X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/68b30359d3cc49afdee951259659e154020a2838..cec137000a9a1f83df31c3b2a210562f9564753e:/include/kernel-version.mk diff --git a/include/kernel-version.mk b/include/kernel-version.mk index 55595e8bd..364257844 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -28,13 +28,19 @@ endif ifeq ($(LINUX_VERSION),2.6.26.8) LINUX_KERNEL_MD5SUM:=05dd0d4f8f110b4219ae6ec7a36c046d endif -ifeq ($(LINUX_VERSION),2.6.27.9) - LINUX_KERNEL_MD5SUM:=ef06a3ea963f556948e77971df912303 +ifeq ($(LINUX_VERSION),2.6.27.21) + LINUX_KERNEL_MD5SUM:=2912af7938fae1a3f2a9a6bcf8c0009f +endif +ifeq ($(LINUX_VERSION),2.6.28.9) + LINUX_KERNEL_MD5SUM:=a4a870fdb8d0a6a7f218a6e25c9d4891 endif # disable the md5sum check for unknown kernel versions LINUX_KERNEL_MD5SUM?=x -KERNEL?=2.$(word 2,$(subst ., ,$(strip $(LINUX_VERSION)))) -KERNEL_PATCHVER=$(shell echo '$(LINUX_VERSION)' | cut -d. -f1,2,3 | cut -d- -f1) +split_version=$(subst ., ,$(1)) +merge_version=$(subst $(space),.,$(1)) +KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION))) +KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE)))) +KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(LINUX_VERSION))))