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
|
|
|
|
|
2015-04-07 21:29:26 +00:00
|
|
|
LINUX_VERSION-3.18 = .11
|
2015-04-22 09:35:36 +00:00
|
|
|
LINUX_VERSION-4.0 =
|
2007-06-28 05:52:00 +00:00
|
|
|
|
2015-04-07 21:29:26 +00:00
|
|
|
LINUX_KERNEL_MD5SUM-3.18.11 = 2def91951c9cedf7896efb864e0c090c
|
2015-04-22 09:35:36 +00:00
|
|
|
LINUX_KERNEL_MD5SUM-4.0 = a86916bd12798220da9eb4a1eec3616d
|
2014-10-24 13:04:08 +00:00
|
|
|
|
|
|
|
ifdef KERNEL_PATCHVER
|
|
|
|
LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER)))
|
|
|
|
endif
|
2007-06-28 05:52:00 +00:00
|
|
|
|
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))))
|
2014-10-24 13:04:08 +00:00
|
|
|
KERNEL_PATCHVER ?= $(KERNEL)
|
2006-12-25 09:12:57 +00:00
|
|
|
|
2014-10-24 13:04:08 +00:00
|
|
|
# disable the md5sum check for unknown kernel versions
|
|
|
|
LINUX_KERNEL_MD5SUM:=$(LINUX_KERNEL_MD5SUM-$(strip $(LINUX_VERSION)))
|
|
|
|
LINUX_KERNEL_MD5SUM?=x
|