X-Git-Url: https://git.archive.openwrt.org/?a=blobdiff_plain;f=include%2Fkernel-version.mk;h=811a6ce602ea29f8860f68a5f82e4233a325544f;hb=7d9a07b8551f0a3ec2e5a24c31ea1a60ecac2cad;hp=71e4f12837dc5193f0eb9620af27242e7145882a;hpb=8f3d3ea2183d32de437ba5443c9e5a2a2dcd476f;p=openwrt.git diff --git a/include/kernel-version.mk b/include/kernel-version.mk index 71e4f12837..811a6ce602 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -1,37 +1,27 @@ # 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.5 -endif LINUX_RELEASE?=1 -ifeq ($(LINUX_VERSION),2.4.34) - LINUX_KERNEL_MD5SUM:=f59665540a7f3351ea416a0dad104b55 -endif -ifeq ($(LINUX_VERSION),2.4.35.4) - LINUX_KERNEL_MD5SUM:=34066faff3d8c042df1c7600b08b8070 -endif -ifeq ($(LINUX_VERSION),2.6.21.7) - LINUX_KERNEL_MD5SUM:=bc15fad1487336d5dcb0945cd039d8ed +ifeq ($(LINUX_VERSION),3.3.8) + LINUX_KERNEL_MD5SUM:=f1058f64eed085deb44f10cee8541d50 endif -ifeq ($(LINUX_VERSION),2.6.22.18) - LINUX_KERNEL_MD5SUM:=bd375d5885bf114c74a2216d52d86e34 +ifeq ($(LINUX_VERSION),3.6.11) + LINUX_KERNEL_MD5SUM:=3d602ad7f7984509c3e923a5ae90bc54 endif -ifeq ($(LINUX_VERSION),2.6.23.16) - LINUX_KERNEL_MD5SUM:=2637a7f1d4450bc5e27422f307fc6529 -endif -ifeq ($(LINUX_VERSION),2.6.24.2) - LINUX_KERNEL_MD5SUM:=dd573a2fae55624ed92fa49c17583964 -endif -ifeq ($(LINUX_VERSION),2.6.25) - LINUX_KERNEL_MD5SUM:=db95a49a656a3247d4995a797d333153 +ifeq ($(LINUX_VERSION),3.7.1) + LINUX_KERNEL_MD5SUM:=b3f99fb945b270b503b2a0996b8b29e7 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)))) +ifeq ($(firstword $(call split_version,$(KERNEL_BASE))),2) + KERNEL_PATCHVER=$(call merge_version,$(wordlist 1,3,$(call split_version,$(KERNEL_BASE)))) +else + KERNEL_PATCHVER=$(KERNEL) +endif