X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/ced4ed829e6cb8b05137bc951a8f86de09a03b2d..10874bfa96ee5b3d37db36384a42eb749b232825:/include/kernel.mk diff --git a/include/kernel.mk b/include/kernel.mk index b413d8484..b80c3b63f 100644 --- a/include/kernel.mk +++ b/include/kernel.mk @@ -31,6 +31,7 @@ else endif PATCH_DIR ?= ./patches$(shell [ -d "./patches-$(KERNEL_PATCHVER)" ] && printf -- "-$(KERNEL_PATCHVER)" || true ) + FILES_DIR ?= ./files$(shell [ -d "./files-$(KERNEL_PATCHVER)" ] && printf -- "-$(KERNEL_PATCHVER)" || true ) KERNEL_BUILD_DIR ?= $(BUILD_DIR_BASE)/linux-$(BOARD)$(if $(SUBTARGET),_$(SUBTARGET))$(if $(BUILD_SUFFIX),_$(BUILD_SUFFIX)) LINUX_DIR ?= $(KERNEL_BUILD_DIR)/linux-$(LINUX_VERSION) @@ -144,3 +145,7 @@ define AutoLoad add_module $(1) "$(2)"; endef +define CompareKernelPatchVer + $(shell [ $$(echo $(1) | tr . 0) -$(2) $$(echo $(3) | tr . 0) ] && echo 1 || echo 0) +endef +