2006-12-25 09:12:57 +00:00
|
|
|
# Use the default kernel version if the Makefile doesn't override it
|
|
|
|
|
2007-06-28 05:52:00 +00:00
|
|
|
LINUX_RELEASE?=1
|
|
|
|
|
2012-06-05 06:57:51 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.3.8)
|
2012-11-18 08:49:08 +00:00
|
|
|
LINUX_KERNEL_MD5SUM:=f1058f64eed085deb44f10cee8541d50
|
2012-03-20 15:55:06 +00:00
|
|
|
endif
|
2012-12-11 20:14:39 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.6.10)
|
|
|
|
LINUX_KERNEL_MD5SUM:=a8c2dcd268d3ca2b81908990abd5d382
|
2012-10-23 12:21:34 +00:00
|
|
|
endif
|
2012-12-11 11:31:17 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.7)
|
|
|
|
LINUX_KERNEL_MD5SUM:=21223369d682bcf44bcdfe1521095983
|
|
|
|
endif
|
2007-06-28 05:52:00 +00:00
|
|
|
|
|
|
|
# disable the md5sum check for unknown kernel versions
|
|
|
|
LINUX_KERNEL_MD5SUM?=x
|
|
|
|
|
2009-03-03 13:54:29 +00:00
|
|
|
split_version=$(subst ., ,$(1))
|
|
|
|
merge_version=$(subst $(space),.,$(1))
|
2009-03-09 15:05:57 +00:00
|
|
|
KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
|
|
|
|
KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
|
2011-06-15 21:10:33 +00:00
|
|
|
ifeq ($(firstword $(call split_version,$(KERNEL_BASE))),2)
|
|
|
|
KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))
|
|
|
|
else
|
|
|
|
KERNEL_PATCHVER=$(KERNEL)
|
|
|
|
endif
|
2006-12-25 09:12:57 +00:00
|
|
|
|