2006-12-25 17:12:57 +08:00
|
|
|
# Use the default kernel version if the Makefile doesn't override it
|
|
|
|
|
2007-06-28 13:52:00 +08:00
|
|
|
LINUX_RELEASE?=1
|
|
|
|
|
2012-06-05 14:57:51 +08:00
|
|
|
ifeq ($(LINUX_VERSION),3.3.8)
|
2012-11-18 16:49:08 +08:00
|
|
|
LINUX_KERNEL_MD5SUM:=f1058f64eed085deb44f10cee8541d50
|
2012-03-20 23:55:06 +08:00
|
|
|
endif
|
2012-12-18 22:41:16 +08:00
|
|
|
ifeq ($(LINUX_VERSION),3.6.11)
|
|
|
|
LINUX_KERNEL_MD5SUM:=3d602ad7f7984509c3e923a5ae90bc54
|
2012-10-23 20:21:34 +08:00
|
|
|
endif
|
2013-03-03 21:57:40 +08:00
|
|
|
ifeq ($(LINUX_VERSION),3.7.10)
|
|
|
|
LINUX_KERNEL_MD5SUM:=09624c3702107076efcac5e1cd8a18ec
|
2012-12-11 19:31:17 +08:00
|
|
|
endif
|
2013-04-30 18:43:59 +08:00
|
|
|
ifeq ($(LINUX_VERSION),3.8.10)
|
|
|
|
LINUX_KERNEL_MD5SUM:=3d5fb6d9add9cce7725bbe9b139c8d6e
|
2013-02-19 17:17:38 +08:00
|
|
|
endif
|
2007-06-28 13:52:00 +08:00
|
|
|
|
|
|
|
# disable the md5sum check for unknown kernel versions
|
|
|
|
LINUX_KERNEL_MD5SUM?=x
|
|
|
|
|
2009-03-03 21:54:29 +08:00
|
|
|
split_version=$(subst ., ,$(1))
|
|
|
|
merge_version=$(subst $(space),.,$(1))
|
2009-03-09 23:05:57 +08:00
|
|
|
KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
|
|
|
|
KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
|
2011-06-16 05:10:33 +08: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 17:12:57 +08:00
|
|
|
|