X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=include%2Fkernel-version.mk;h=d49572c12eeab01a4fc7a7678c357022341d9f45;hb=a19833b9c26205fc3089a315cec6dff255f15341;hp=de914f932256caf883b8ae323ece765edbac9608;hpb=15fb6e6e69c80d00f2ea52efb6602748decea758;p=openwrt.git diff --git a/include/kernel-version.mk b/include/kernel-version.mk index de914f9322..d49572c12e 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -1,37 +1,35 @@ # Use the default kernel version if the Makefile doesn't override it ifeq ($(KERNEL),2.4) - LINUX_VERSION?=2.4.35.4 -else - LINUX_VERSION?=2.6.21.7 + LINUX_VERSION?=2.4.37.9 endif LINUX_RELEASE?=1 -ifeq ($(LINUX_VERSION),2.4.34) - LINUX_KERNEL_MD5SUM:=f59665540a7f3351ea416a0dad104b55 +ifeq ($(LINUX_VERSION),2.4.37.9) + LINUX_KERNEL_MD5SUM:=b85b8962840c13f17f944e7b1890f8f8 endif -ifeq ($(LINUX_VERSION),2.4.35.4) - LINUX_KERNEL_MD5SUM:=34066faff3d8c042df1c7600b08b8070 +ifeq ($(LINUX_VERSION),2.6.25.20) + LINUX_KERNEL_MD5SUM:=0da698edccf03e2235abc2830a495114 endif -ifeq ($(LINUX_VERSION),2.6.21.7) - LINUX_KERNEL_MD5SUM:=bc15fad1487336d5dcb0945cd039d8ed +ifeq ($(LINUX_VERSION),2.6.30.10) + LINUX_KERNEL_MD5SUM:=eb6be465f914275967a5602cb33662f5 endif -ifeq ($(LINUX_VERSION),2.6.22.19) - LINUX_KERNEL_MD5SUM:=4db27facb78aeb79d06e6ae6bf0ac0b6 +ifeq ($(LINUX_VERSION),2.6.31.12) + LINUX_KERNEL_MD5SUM:=517be354b81b780e2f4b2ad614d030de endif -ifeq ($(LINUX_VERSION),2.6.23.17) - LINUX_KERNEL_MD5SUM:=a0300a393ac91ce9c64bf31522b45e2e +ifeq ($(LINUX_VERSION),2.6.32.9) + LINUX_KERNEL_MD5SUM:=0771a9c70503c92f40d815ef76eb62fe endif -ifeq ($(LINUX_VERSION),2.6.24.7) - LINUX_KERNEL_MD5SUM:=40a73780d51525d28d36dec852c680c4 -endif -ifeq ($(LINUX_VERSION),2.6.25.10) - LINUX_KERNEL_MD5SUM:=a6b0aa5b1fa1ae5a02a7b67345f01e86 +ifeq ($(LINUX_VERSION),2.6.33) + LINUX_KERNEL_MD5SUM:=c3883760b18d50e8d78819c54d579b00 endif # disable the md5sum check for unknown kernel versions LINUX_KERNEL_MD5SUM?=x -KERNEL?=2.$(word 2,$(subst ., ,$(strip $(LINUX_VERSION)))) -KERNEL_PATCHVER=$(shell echo '$(LINUX_VERSION)' | cut -d. -f1,2,3 | cut -d- -f1) +split_version=$(subst ., ,$(1)) +merge_version=$(subst $(space),.,$(1)) +KERNEL_BASE=$(firstword $(subst -, ,$(LINUX_VERSION))) +KERNEL=$(call merge_version,$(wordlist 1,2,$(call split_version,$(KERNEL_BASE)))) +KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE))))