X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=include%2Fkernel-version.mk;h=07c318d942ddc0625e2970b2f8a3cdea11c2f414;hp=e481a32538e31cc91f75e2840e5cb27dcb051def;hb=7417e4d396af1ae97ec049047320404ce6021fe9;hpb=86eca97e9ec4e779f5db311f9645e3d2a60e83b3 diff --git a/include/kernel-version.mk b/include/kernel-version.mk index e481a32538..07c318d942 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -28,16 +28,22 @@ endif ifeq ($(LINUX_VERSION),2.6.26.8) LINUX_KERNEL_MD5SUM:=05dd0d4f8f110b4219ae6ec7a36c046d endif -ifeq ($(LINUX_VERSION),2.6.27.15) - LINUX_KERNEL_MD5SUM:=0756284efb091dccd012eec61def2004 +ifeq ($(LINUX_VERSION),2.6.27.21) + LINUX_KERNEL_MD5SUM:=2912af7938fae1a3f2a9a6bcf8c0009f endif -ifeq ($(LINUX_VERSION),2.6.28.2) - LINUX_KERNEL_MD5SUM:=8fce853ebfe658f0833d34bb1dc14d86 +ifeq ($(LINUX_VERSION),2.6.28.9) + LINUX_KERNEL_MD5SUM:=a4a870fdb8d0a6a7f218a6e25c9d4891 +endif +ifeq ($(LINUX_VERSION),2.6.29.1) + LINUX_KERNEL_MD5SUM:=4ada43caecb08fe2af71b416b6f586d8 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))))