| 1234567891011121314151617181920212223242526272829303132333435363738 |
- # Use the default kernel version if the Makefile doesn't override it
- LINUX_RELEASE?=1
- LINUX_VERSION-3.18 = .71
- LINUX_VERSION-4.4 = .112
- LINUX_VERSION-4.9 = .82
- LINUX_VERSION-4.14 = .20
- LINUX_KERNEL_HASH-3.18.71 = 5abc9778ad44ce02ed6c8ab52ece8a21c6d20d21f6ed8a19287b4a38a50c1240
- LINUX_KERNEL_HASH-4.4.112 = 544b42cbeed022896115c76a18fc97b4507d5b41d7ac0ce1dce9afd6ffd11ecd
- LINUX_KERNEL_HASH-4.9.82 = 4b710b2701daafeb8e4db4c06f0ed3e62a6d20d6213a4927769c89ae42a9b180
- LINUX_KERNEL_HASH-4.14.20 = 4ab7f42aa6af9c1e3b00cba6b1fa305a87407666aaa2fae555f7fbdaafb6d292
- remove_uri_prefix=$(subst git://,,$(subst http://,,$(subst https://,,$(1))))
- sanitize_uri=$(call qstrip,$(subst @,_,$(subst :,_,$(subst .,_,$(subst -,_,$(subst /,_,$(1)))))))
- ifneq ($(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),)
- LINUX_VERSION:=$(call sanitize_uri,$(call remove_uri_prefix,$(CONFIG_KERNEL_GIT_CLONE_URI)))
- ifeq ($(call qstrip,$(CONFIG_KERNEL_GIT_REF)),)
- CONFIG_KERNEL_GIT_REF:=HEAD
- endif
- LINUX_VERSION:=$(LINUX_VERSION)-$(call sanitize_uri,$(CONFIG_KERNEL_GIT_REF))
- else
- ifdef KERNEL_PATCHVER
- LINUX_VERSION:=$(KERNEL_PATCHVER)$(strip $(LINUX_VERSION-$(KERNEL_PATCHVER)))
- endif
- endif
- 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 ?= $(KERNEL)
- # disable the md5sum check for unknown kernel versions
- LINUX_KERNEL_HASH:=$(LINUX_KERNEL_HASH-$(strip $(LINUX_VERSION)))
- LINUX_KERNEL_HASH?=x
|