upgrade iproute2 to 2.6.29-1 - includes support for the skbedit scheduler action
[openwrt/openwrt.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.2
5 else
6 LINUX_VERSION?=2.6.21.7
7 endif
8 LINUX_RELEASE?=1
9
10 ifeq ($(LINUX_VERSION),2.4.37.2)
11 LINUX_KERNEL_MD5SUM:=8a390c782991a2bfe7d4f2fc93dab059
12 endif
13 ifeq ($(LINUX_VERSION),2.6.21.7)
14 LINUX_KERNEL_MD5SUM:=bc15fad1487336d5dcb0945cd039d8ed
15 endif
16 ifeq ($(LINUX_VERSION),2.6.23.17)
17 LINUX_KERNEL_MD5SUM:=a0300a393ac91ce9c64bf31522b45e2e
18 endif
19 ifeq ($(LINUX_VERSION),2.6.25.20)
20 LINUX_KERNEL_MD5SUM:=0da698edccf03e2235abc2830a495114
21 endif
22 ifeq ($(LINUX_VERSION),2.6.27.26)
23 LINUX_KERNEL_MD5SUM:=6c246d71fa4698fb0dee0ed092f0282b
24 endif
25 ifeq ($(LINUX_VERSION),2.6.28.10)
26 LINUX_KERNEL_MD5SUM:=c4efb2c494d749cb5de274f8ae41c3fa
27 endif
28 ifeq ($(LINUX_VERSION),2.6.29.6)
29 LINUX_KERNEL_MD5SUM:=7cd24826fd3c7b0f83d9f662731a7865
30 endif
31 ifeq ($(LINUX_VERSION),2.6.30.1)
32 LINUX_KERNEL_MD5SUM:=7da2e2e31f1c00f2673d2dc50de76b33
33 endif
34
35 # disable the md5sum check for unknown kernel versions
36 LINUX_KERNEL_MD5SUM?=x
37
38 split_version=$(subst ., ,$(1))
39 merge_version=$(subst $(space),.,$(1))
40 KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION)))
41 KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE))))
42 KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))
43