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-18 14:41:16 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.6.11)
|
|
|
|
LINUX_KERNEL_MD5SUM:=3d602ad7f7984509c3e923a5ae90bc54
|
2012-10-23 12:21:34 +00:00
|
|
|
endif
|
2013-03-03 13:57:40 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.7.10)
|
|
|
|
LINUX_KERNEL_MD5SUM:=09624c3702107076efcac5e1cd8a18ec
|
2012-12-11 11:31:17 +00:00
|
|
|
endif
|
2013-03-04 08:43:55 +00:00
|
|
|
ifeq ($(LINUX_VERSION),3.8.2)
|
|
|
|
LINUX_KERNEL_MD5SUM:=0587d693653dc5e67e3d280278100d1d
|
2013-02-19 09:17:38 +00:00
|
|
|
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
|
|
|
|