brcm47xx: backport r29923
[openwrt-10.03/.git] / include / kernel-version.mk
1 # Use the default kernel version if the Makefile doesn't override it
2
3 ifeq ($(KERNEL),2.4)
4   LINUX_VERSION?=2.4.37.9
5 endif
6 LINUX_RELEASE?=1
7
8 ifeq ($(LINUX_VERSION),2.4.37.9)
9   LINUX_KERNEL_MD5SUM:=b85b8962840c13f17f944e7b1890f8f8
10 endif
11 ifeq ($(LINUX_VERSION),2.6.30.10)
12   LINUX_KERNEL_MD5SUM:=eb6be465f914275967a5602cb33662f5
13 endif
14 ifeq ($(LINUX_VERSION),2.6.32.27)
15   LINUX_KERNEL_MD5SUM:=c8df8bed01a3b7e4ce13563e74181d71
16 endif
17 ifeq ($(LINUX_VERSION),2.6.32.33)
18   LINUX_KERNEL_MD5SUM:=2b4e5ed210534d9b4f5a563089dfcc80
19 endif
20
21 # disable the md5sum check for unknown kernel versions
22 LINUX_KERNEL_MD5SUM?=x
23
24 split_version=$(subst ., ,$(1))
25 merge_version=$(subst $(space),.,$(1))
26 KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
27 KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
28 KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))
29