mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-25 00:11:13 +00:00
toolchain: kernel-headers: fix check target for external Git trees
Executing following command currently fails: $ make toolchain/kernel-headers/{download,check} V=sc FIXUP=1 ... include/kernel-version.mk:11: *** Missing kernel version/hash file for . Please create include/kernel-. Stop. So lets fix it by adding the necessary missing KERNEL_PATCHVER variable. That additional kernel-build.mk include is needed to add another set of missing variables: $ make toolchain/kernel-headers/{download,check} V=sc FIXUP=1 ... Makefile:115: *** ERROR: Unknown pack format for file tmp/dl/. Stop. Fixes:0765466a42
("kernel: split kernel version to dedicated files") Signed-off-by: Petr Štetiar <ynezz@true.cz> (cherry picked from commit6b7f1ffbad
)
This commit is contained in:
parent
c69482a912
commit
c3372266ba
@ -24,7 +24,10 @@ ifneq ($(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),)
|
|||||||
PKG_SOURCE_VERSION:=$(call qstrip,$(CONFIG_KERNEL_GIT_REF))
|
PKG_SOURCE_VERSION:=$(call qstrip,$(CONFIG_KERNEL_GIT_REF))
|
||||||
PKG_MIRROR_HASH:=$(call qstrip,$(CONFIG_KERNEL_GIT_MIRROR_HASH))
|
PKG_MIRROR_HASH:=$(call qstrip,$(CONFIG_KERNEL_GIT_MIRROR_HASH))
|
||||||
ifdef CHECK
|
ifdef CHECK
|
||||||
|
PLATFORM_DIR:=$(firstword $(wildcard $(TOPDIR)/target/linux/feeds/$(BOARD) $(TOPDIR)/target/linux/$(BOARD)))
|
||||||
|
include $(PLATFORM_DIR)/Makefile
|
||||||
include $(INCLUDE_DIR)/kernel-version.mk
|
include $(INCLUDE_DIR)/kernel-version.mk
|
||||||
|
include $(INCLUDE_DIR)/kernel-build.mk
|
||||||
PKG_VERSION:=$(LINUX_VERSION)
|
PKG_VERSION:=$(LINUX_VERSION)
|
||||||
else
|
else
|
||||||
PKG_SOURCE:=$(LINUX_SOURCE)
|
PKG_SOURCE:=$(LINUX_SOURCE)
|
||||||
|
Loading…
Reference in New Issue
Block a user