2020-09-22 10:48:37 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2007-09-09 03:55:42 +08:00
|
|
|
#
|
2020-09-22 10:48:37 +08:00
|
|
|
# Copyright (C) 2006-2020 OpenWrt.org
|
|
|
|
|
2006-11-19 05:12:18 +08:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2016-08-05 20:08:47 +08:00
|
|
|
include $(INCLUDE_DIR)/depends.mk
|
2006-11-19 05:12:18 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
ifneq ($(DUMP),1)
|
2006-11-12 07:11:02 +08:00
|
|
|
all: compile
|
|
|
|
endif
|
|
|
|
|
2018-07-14 19:07:34 +08:00
|
|
|
KERNEL_FILE_DEPENDS=$(GENERIC_BACKPORT_DIR) $(GENERIC_PATCH_DIR) $(GENERIC_HACK_DIR) $(PATCH_DIR) $(GENERIC_FILES_DIR) $(FILES_DIR)
|
2022-09-06 22:48:37 +08:00
|
|
|
STAMP_PREPARED=$(LINUX_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call $(if $(CONFIG_AUTOREMOVE),find_md5_reproducible,find_md5),$(KERNEL_FILE_DEPENDS),)))
|
2007-06-03 16:28:05 +08:00
|
|
|
STAMP_CONFIGURED:=$(LINUX_DIR)/.configured
|
2007-09-29 08:05:48 +08:00
|
|
|
include $(INCLUDE_DIR)/download.mk
|
2007-06-03 16:28:05 +08:00
|
|
|
include $(INCLUDE_DIR)/quilt.mk
|
2007-03-24 21:42:54 +08:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
2006-10-10 21:41:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Prepare
|
|
|
|
$(call Kernel/Prepare/Default)
|
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Configure
|
|
|
|
$(call Kernel/Configure/Default)
|
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/CompileModules
|
|
|
|
$(call Kernel/CompileModules/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Kernel/CompileImage
|
|
|
|
$(call Kernel/CompileImage/Default)
|
2013-06-28 03:58:20 +08:00
|
|
|
$(call Kernel/CompileImage/Initramfs)
|
2006-10-19 14:20:55 +08:00
|
|
|
endef
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define Kernel/Clean
|
|
|
|
$(call Kernel/Clean/Default)
|
|
|
|
endef
|
|
|
|
|
2007-09-29 08:05:48 +08:00
|
|
|
define Download/kernel
|
|
|
|
URL:=$(LINUX_SITE)
|
|
|
|
FILE:=$(LINUX_SOURCE)
|
2016-12-17 00:32:10 +08:00
|
|
|
HASH:=$(LINUX_KERNEL_HASH)
|
2007-09-29 08:05:48 +08:00
|
|
|
endef
|
|
|
|
|
2016-11-10 01:34:18 +08:00
|
|
|
KERNEL_GIT_OPTS:=
|
|
|
|
ifneq ($(strip $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)),"")
|
|
|
|
KERNEL_GIT_OPTS+=--reference $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Download/git-kernel
|
|
|
|
URL:=$(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI))
|
|
|
|
PROTO:=git
|
2024-07-03 15:15:46 +08:00
|
|
|
SOURCE_VERSION:=$(CONFIG_KERNEL_GIT_REF)
|
2016-11-10 01:34:18 +08:00
|
|
|
FILE:=$(LINUX_SOURCE)
|
2017-01-18 21:36:45 +08:00
|
|
|
SUBDIR:=linux-$(LINUX_VERSION)
|
2016-11-10 01:34:18 +08:00
|
|
|
OPTS:=$(KERNEL_GIT_OPTS)
|
|
|
|
endef
|
|
|
|
|
2010-07-21 23:18:24 +08:00
|
|
|
ifdef CONFIG_COLLECT_KERNEL_DEBUG
|
|
|
|
define Kernel/CollectDebug
|
|
|
|
rm -rf $(KERNEL_BUILD_DIR)/debug
|
|
|
|
mkdir -p $(KERNEL_BUILD_DIR)/debug/modules
|
|
|
|
$(CP) $(LINUX_DIR)/vmlinux $(KERNEL_BUILD_DIR)/debug/
|
|
|
|
-$(CP) \
|
2024-01-07 23:56:05 +08:00
|
|
|
$(STAGING_DIR_ROOT)/lib/modules/$(LINUX_VERSION)/*.ko \
|
2010-07-21 23:18:24 +08:00
|
|
|
$(KERNEL_BUILD_DIR)/debug/modules/
|
|
|
|
$(FIND) $(KERNEL_BUILD_DIR)/debug -type f | $(XARGS) $(KERNEL_CROSS)strip --only-keep-debug
|
2016-02-01 07:29:16 +08:00
|
|
|
$(TAR) c -C $(KERNEL_BUILD_DIR) debug \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
2020-05-14 02:33:46 +08:00
|
|
|
| zstd -T0 -f -o $(BIN_DIR)/kernel-debug.tar.zst
|
2010-07-21 23:18:24 +08:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-08-05 20:08:47 +08:00
|
|
|
ifeq ($(DUMP)$(filter prereq clean refresh update,$(MAKECMDGOALS)),)
|
|
|
|
ifneq ($(if $(QUILT),,$(CONFIG_AUTOREBUILD)),)
|
|
|
|
define Kernel/Autoclean
|
|
|
|
$(PKG_BUILD_DIR)/.dep_files: $(STAMP_PREPARED)
|
2016-08-19 16:57:30 +08:00
|
|
|
$(call rdep,$(KERNEL_FILE_DEPENDS),$(STAMP_PREPARED),$(PKG_BUILD_DIR)/.dep_files,-x "*/.dep_*")
|
2016-08-05 20:08:47 +08:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define BuildKernel
|
2007-09-29 12:29:11 +08:00
|
|
|
$(if $(QUILT),$(Build/Quilt))
|
2007-09-29 08:05:48 +08:00
|
|
|
$(if $(LINUX_SITE),$(call Download,kernel))
|
2016-11-10 01:34:18 +08:00
|
|
|
$(if $(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),$(call Download,git-kernel))
|
2006-10-19 14:20:55 +08:00
|
|
|
|
2014-10-12 23:00:19 +08:00
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2016-08-05 20:08:47 +08:00
|
|
|
$(Kernel/Autoclean)
|
2011-10-03 19:33:13 +08:00
|
|
|
$(STAMP_PREPARED): $(if $(LINUX_SITE),$(DL_DIR)/$(LINUX_SOURCE))
|
2006-10-19 14:20:55 +08:00
|
|
|
-rm -rf $(KERNEL_BUILD_DIR)
|
|
|
|
-mkdir -p $(KERNEL_BUILD_DIR)
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Prepare)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
|
|
|
|
2012-12-03 01:42:17 +08:00
|
|
|
$(KERNEL_BUILD_DIR)/symtab.h: FORCE
|
|
|
|
rm -f $(KERNEL_BUILD_DIR)/symtab.h
|
|
|
|
touch $(KERNEL_BUILD_DIR)/symtab.h
|
2017-03-16 16:53:30 +08:00
|
|
|
+$(KERNEL_MAKE) vmlinux
|
2009-08-08 22:22:04 +08:00
|
|
|
find $(LINUX_DIR) $(STAGING_DIR_ROOT)/lib/modules -name \*.ko | \
|
|
|
|
xargs $(TARGET_CROSS)nm | \
|
|
|
|
awk '$$$$1 == "U" { print $$$$2 } ' | \
|
2012-12-03 01:42:17 +08:00
|
|
|
sort -u > $(KERNEL_BUILD_DIR)/mod_symtab.txt
|
2020-12-31 04:04:42 +08:00
|
|
|
$(TARGET_CROSS)nm -n $(LINUX_DIR)/vmlinux.o | awk '/^[0-9a-f]+ [rR] __ksymtab_/ {print substr($$$$3,11)}' > $(KERNEL_BUILD_DIR)/kernel_symtab.txt
|
2013-12-14 21:14:44 +08:00
|
|
|
grep -Ff $(KERNEL_BUILD_DIR)/mod_symtab.txt $(KERNEL_BUILD_DIR)/kernel_symtab.txt > $(KERNEL_BUILD_DIR)/sym_include.txt
|
|
|
|
grep -Fvf $(KERNEL_BUILD_DIR)/mod_symtab.txt $(KERNEL_BUILD_DIR)/kernel_symtab.txt > $(KERNEL_BUILD_DIR)/sym_exclude.txt
|
2009-08-08 22:22:04 +08:00
|
|
|
( \
|
|
|
|
echo '#define SYMTAB_KEEP \'; \
|
2012-12-03 01:42:17 +08:00
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_include.txt | \
|
2013-01-27 00:26:13 +08:00
|
|
|
awk '{print "KEEP(*(___ksymtab+" $$$$1 ")) \\" }'; \
|
2009-08-08 22:22:04 +08:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_KEEP_GPL \'; \
|
2012-12-03 01:42:17 +08:00
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_include.txt | \
|
2013-01-27 00:26:13 +08:00
|
|
|
awk '{print "KEEP(*(___ksymtab_gpl+" $$$$1 ")) \\" }'; \
|
2012-12-03 01:42:17 +08:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_DISCARD \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_exclude.txt | \
|
2013-01-27 00:26:04 +08:00
|
|
|
awk '{print "*(___ksymtab+" $$$$1 ") \\" }'; \
|
2012-12-03 01:42:17 +08:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_DISCARD_GPL \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_exclude.txt | \
|
2013-01-27 00:26:04 +08:00
|
|
|
awk '{print "*(___ksymtab_gpl+" $$$$1 ") \\" }'; \
|
2012-12-03 01:42:17 +08:00
|
|
|
echo; \
|
2009-08-08 22:22:04 +08:00
|
|
|
) > $$@
|
|
|
|
|
2016-08-05 20:08:47 +08:00
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_KCONFIG_LIST) $(TOPDIR)/.config FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Configure)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2019-08-30 21:24:45 +08:00
|
|
|
$(LINUX_DIR)/.modules: export STAGING_PREFIX=$$(STAGING_DIR_HOST)
|
|
|
|
$(LINUX_DIR)/.modules: export PKG_CONFIG_PATH=$$(STAGING_DIR_HOST)/lib/pkgconfig
|
|
|
|
$(LINUX_DIR)/.modules: export PKG_CONFIG_LIBDIR=$$(STAGING_DIR_HOST)/lib/pkgconfig
|
2021-07-23 07:32:38 +08:00
|
|
|
$(LINUX_DIR)/.modules: export FAIL_ON_UNCONFIGURED=1
|
2007-07-16 13:28:13 +08:00
|
|
|
$(LINUX_DIR)/.modules: $(STAMP_CONFIGURED) $(LINUX_DIR)/.config FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/CompileModules)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2019-08-30 21:24:45 +08:00
|
|
|
$(LINUX_DIR)/.image: export STAGING_PREFIX=$$(STAGING_DIR_HOST)
|
|
|
|
$(LINUX_DIR)/.image: export PKG_CONFIG_PATH=$$(STAGING_DIR_HOST)/lib/pkgconfig
|
|
|
|
$(LINUX_DIR)/.image: export PKG_CONFIG_LIBDIR=$$(STAGING_DIR_HOST)/lib/pkgconfig
|
2009-08-08 22:22:04 +08:00
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) $(if $(CONFIG_STRIP_KERNEL_EXPORTS),$(KERNEL_BUILD_DIR)/symtab.h) FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/CompileImage)
|
2010-07-21 23:18:24 +08:00
|
|
|
$(Kernel/CollectDebug)
|
2006-10-19 14:20:55 +08:00
|
|
|
touch $$@
|
|
|
|
|
|
|
|
mostlyclean: FORCE
|
2007-09-09 03:55:42 +08:00
|
|
|
$(Kernel/Clean)
|
2006-11-12 13:06:56 +08:00
|
|
|
|
2006-10-19 14:20:55 +08:00
|
|
|
define BuildKernel
|
|
|
|
endef
|
2006-11-12 07:11:02 +08:00
|
|
|
|
2014-06-02 20:43:13 +08:00
|
|
|
download: $(if $(LINUX_SITE),$(DL_DIR)/$(LINUX_SOURCE))
|
2017-02-15 19:34:52 +08:00
|
|
|
prepare: $(STAMP_PREPARED)
|
2007-09-09 03:55:42 +08:00
|
|
|
compile: $(LINUX_DIR)/.modules
|
2024-10-04 22:31:25 +08:00
|
|
|
+$(MAKE) -C image compile TARGET_BUILD=
|
2007-08-07 08:04:25 +08:00
|
|
|
|
2024-02-08 07:49:27 +08:00
|
|
|
dtb: $(STAMP_CONFIGURED)
|
|
|
|
$(_SINGLE)$(KERNEL_MAKE) scripts_dtc
|
|
|
|
$(MAKE) -C image compile-dtb TARGET_BUILD=
|
|
|
|
|
2020-04-02 07:21:37 +08:00
|
|
|
oldconfig menuconfig nconfig xconfig: $(STAMP_PREPARED) $(STAMP_CHECKED) FORCE
|
2016-01-29 08:38:49 +08:00
|
|
|
rm -f $(LINUX_DIR)/.config.prev
|
2011-04-06 22:48:55 +08:00
|
|
|
rm -f $(STAMP_CONFIGURED)
|
|
|
|
$(LINUX_RECONF_CMD) > $(LINUX_DIR)/.config
|
2017-06-08 00:14:27 +08:00
|
|
|
$(_SINGLE)$(KERNEL_MAKE) \
|
2020-04-07 20:26:42 +08:00
|
|
|
$(if $(findstring Darwin,$(HOST_OS)), \
|
|
|
|
HOSTLDLIBS_mconf="-L$(STAGING_DIR_HOST)/lib -lncurses" \
|
|
|
|
filechk_conf_cfg=" :" \
|
|
|
|
) \
|
2019-11-12 04:37:45 +08:00
|
|
|
YACC=$(STAGING_DIR_HOST)/bin/bison \
|
2017-06-08 00:14:27 +08:00
|
|
|
$$@
|
2020-10-21 03:36:52 +08:00
|
|
|
$(call LINUX_RECONF_DIFF,$(LINUX_DIR)/.config) > $(LINUX_RECONFIG_TARGET)
|
2007-02-17 00:59:44 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
install: $(LINUX_DIR)/.image
|
2008-08-17 00:59:47 +08:00
|
|
|
+$(MAKE) -C image compile install TARGET_BUILD=
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
clean: FORCE
|
2006-10-19 14:20:55 +08:00
|
|
|
rm -rf $(KERNEL_BUILD_DIR)
|
2006-01-11 03:43:00 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
image-prereq:
|
2008-08-17 00:59:47 +08:00
|
|
|
@+$(NO_TRACE_MAKE) -s -C image prereq TARGET_BUILD=
|
2006-06-26 09:55:47 +08:00
|
|
|
|
2007-09-09 03:55:42 +08:00
|
|
|
prereq: image-prereq
|
|
|
|
|
|
|
|
endef
|