X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/f4d24919d49f2c25d0ec3f7658a93f6170580db7..04052c7fd2baf81bb0672f6c7ae52e770a410e90:/include/kernel-version.mk?ds=sidebyside diff --git a/include/kernel-version.mk b/include/kernel-version.mk index af457a248..b6d495097 100644 --- a/include/kernel-version.mk +++ b/include/kernel-version.mk @@ -1,15 +1,40 @@ # Use the default kernel version if the Makefile doesn't override it -ifeq ($(LINUX_VERSION),) - ifeq ($(KERNEL),2.4) - LINUX_VERSION:=2.4.33.4 - LINUX_RELEASE:=1 - LINUX_KERNEL_MD5SUM:=aca0257549c385a227088ad8853a72a2 - else - LINUX_VERSION:=2.6.19.1 - LINUX_RELEASE:=1 - LINUX_KERNEL_MD5SUM:=2ab08fdfddc00e09b3d5bc7397d3c8be - endif -endif -KERNEL:=2.$(word 2,$(subst ., ,$(strip $(LINUX_VERSION)))) +ifeq ($(KERNEL),2.4) + LINUX_VERSION?=2.4.37.2 +else + LINUX_VERSION?=2.6.21.7 +endif +LINUX_RELEASE?=1 + +ifeq ($(LINUX_VERSION),2.4.37.2) + LINUX_KERNEL_MD5SUM:=8a390c782991a2bfe7d4f2fc93dab059 +endif +ifeq ($(LINUX_VERSION),2.6.21.7) + LINUX_KERNEL_MD5SUM:=bc15fad1487336d5dcb0945cd039d8ed +endif +ifeq ($(LINUX_VERSION),2.6.23.17) + LINUX_KERNEL_MD5SUM:=a0300a393ac91ce9c64bf31522b45e2e +endif +ifeq ($(LINUX_VERSION),2.6.25.20) + LINUX_KERNEL_MD5SUM:=0da698edccf03e2235abc2830a495114 +endif +ifeq ($(LINUX_VERSION),2.6.27.26) + LINUX_KERNEL_MD5SUM:=6c246d71fa4698fb0dee0ed092f0282b +endif +ifeq ($(LINUX_VERSION),2.6.28.10) + LINUX_KERNEL_MD5SUM:=c4efb2c494d749cb5de274f8ae41c3fa +endif +ifeq ($(LINUX_VERSION),2.6.30.1) + LINUX_KERNEL_MD5SUM:=7da2e2e31f1c00f2673d2dc50de76b33 +endif + +# disable the md5sum check for unknown kernel versions +LINUX_KERNEL_MD5SUM?=x + +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))))