2007-09-08 19:55:42 +00:00
|
|
|
#
|
2007-03-24 13:42:54 +00:00
|
|
|
# Copyright (C) 2006-2007 OpenWrt.org
|
2006-06-27 00:35:46 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
2006-11-18 21:12:18 +00:00
|
|
|
include $(INCLUDE_DIR)/prereq.mk
|
2016-08-05 12:08:47 +00:00
|
|
|
include $(INCLUDE_DIR)/depends.mk
|
2006-11-18 21:12:18 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
ifneq ($(DUMP),1)
|
2006-11-11 23:11:02 +00:00
|
|
|
all: compile
|
|
|
|
endif
|
|
|
|
|
2016-08-05 12:08:47 +00:00
|
|
|
KERNEL_FILE_DEPENDS=$(GENERIC_PATCH_DIR) $(PATCH_DIR) $(GENERIC_FILES_DIR) $(FILES_DIR)
|
|
|
|
STAMP_PREPARED=$(LINUX_DIR)/.prepared$(if $(QUILT)$(DUMP),,_$(shell $(call find_md5,$(KERNEL_FILE_DEPENDS),)))
|
2007-06-03 08:28:05 +00:00
|
|
|
STAMP_CONFIGURED:=$(LINUX_DIR)/.configured
|
2007-09-29 00:05:48 +00:00
|
|
|
include $(INCLUDE_DIR)/download.mk
|
2007-06-03 08:28:05 +00:00
|
|
|
include $(INCLUDE_DIR)/quilt.mk
|
2007-03-24 13:42:54 +00:00
|
|
|
include $(INCLUDE_DIR)/kernel-defaults.mk
|
2006-10-10 13:41:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Prepare
|
|
|
|
$(call Kernel/Prepare/Default)
|
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Configure
|
|
|
|
$(call Kernel/Configure/Default)
|
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/CompileModules
|
|
|
|
$(call Kernel/CompileModules/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Kernel/CompileImage
|
|
|
|
$(call Kernel/CompileImage/Default)
|
2013-06-27 19:58:20 +00:00
|
|
|
$(call Kernel/CompileImage/Initramfs)
|
2006-10-19 06:20:55 +00:00
|
|
|
endef
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define Kernel/Clean
|
|
|
|
$(call Kernel/Clean/Default)
|
|
|
|
endef
|
|
|
|
|
2007-09-29 00:05:48 +00:00
|
|
|
define Download/kernel
|
|
|
|
URL:=$(LINUX_SITE)
|
|
|
|
FILE:=$(LINUX_SOURCE)
|
2016-12-16 16:32:10 +00:00
|
|
|
HASH:=$(LINUX_KERNEL_HASH)
|
2007-09-29 00:05:48 +00:00
|
|
|
endef
|
|
|
|
|
2016-11-09 17:34:18 +00:00
|
|
|
KERNEL_GIT_OPTS:=
|
|
|
|
ifneq ($(strip $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)),"")
|
|
|
|
KERNEL_GIT_OPTS+=--reference $(CONFIG_KERNEL_GIT_LOCAL_REPOSITORY)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(CONFIG_KERNEL_GIT_BRANCH)),"")
|
|
|
|
KERNEL_GIT_OPTS+=--branch $(CONFIG_KERNEL_GIT_BRANCH)
|
|
|
|
endif
|
|
|
|
|
|
|
|
define Download/git-kernel
|
|
|
|
URL:=$(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI))
|
|
|
|
PROTO:=git
|
|
|
|
VERSION:=$(CONFIG_KERNEL_GIT_BRANCH)
|
|
|
|
FILE:=$(LINUX_SOURCE)
|
2017-01-18 13:36:45 +00:00
|
|
|
SUBDIR:=linux-$(LINUX_VERSION)
|
2016-11-09 17:34:18 +00:00
|
|
|
OPTS:=$(KERNEL_GIT_OPTS)
|
|
|
|
endef
|
|
|
|
|
2010-07-21 15:18:24 +00: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) \
|
|
|
|
$(STAGING_DIR_ROOT)/lib/modules/$(LINUX_VERSION)/* \
|
|
|
|
$(KERNEL_BUILD_DIR)/debug/modules/
|
|
|
|
$(FIND) $(KERNEL_BUILD_DIR)/debug -type f | $(XARGS) $(KERNEL_CROSS)strip --only-keep-debug
|
2016-01-31 23:29:16 +00:00
|
|
|
$(TAR) c -C $(KERNEL_BUILD_DIR) debug \
|
|
|
|
$(if $(SOURCE_DATE_EPOCH),--mtime="@$(SOURCE_DATE_EPOCH)") \
|
|
|
|
| bzip2 -c -9 > $(BIN_DIR)/kernel-debug.tar.bz2
|
2010-07-21 15:18:24 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
|
2016-08-05 12:08:47 +00: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 08:57:30 +00:00
|
|
|
$(call rdep,$(KERNEL_FILE_DEPENDS),$(STAMP_PREPARED),$(PKG_BUILD_DIR)/.dep_files,-x "*/.dep_*")
|
2016-08-05 12:08:47 +00:00
|
|
|
endef
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define BuildKernel
|
2007-09-29 04:29:11 +00:00
|
|
|
$(if $(QUILT),$(Build/Quilt))
|
2007-09-29 00:05:48 +00:00
|
|
|
$(if $(LINUX_SITE),$(call Download,kernel))
|
2016-11-09 17:34:18 +00:00
|
|
|
$(if $(call qstrip,$(CONFIG_KERNEL_GIT_CLONE_URI)),$(call Download,git-kernel))
|
2006-10-19 06:20:55 +00:00
|
|
|
|
2014-10-12 15:00:19 +00:00
|
|
|
.NOTPARALLEL:
|
|
|
|
|
2016-08-05 12:08:47 +00:00
|
|
|
$(Kernel/Autoclean)
|
2011-10-03 11:33:13 +00:00
|
|
|
$(STAMP_PREPARED): $(if $(LINUX_SITE),$(DL_DIR)/$(LINUX_SOURCE))
|
2006-10-19 06:20:55 +00:00
|
|
|
-rm -rf $(KERNEL_BUILD_DIR)
|
|
|
|
-mkdir -p $(KERNEL_BUILD_DIR)
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Prepare)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
|
|
|
|
2012-12-02 17:42:17 +00:00
|
|
|
$(KERNEL_BUILD_DIR)/symtab.h: FORCE
|
|
|
|
rm -f $(KERNEL_BUILD_DIR)/symtab.h
|
|
|
|
touch $(KERNEL_BUILD_DIR)/symtab.h
|
2017-03-16 08:53:30 +00:00
|
|
|
+$(KERNEL_MAKE) vmlinux
|
2009-08-08 14:22:04 +00:00
|
|
|
find $(LINUX_DIR) $(STAGING_DIR_ROOT)/lib/modules -name \*.ko | \
|
|
|
|
xargs $(TARGET_CROSS)nm | \
|
|
|
|
awk '$$$$1 == "U" { print $$$$2 } ' | \
|
2012-12-02 17:42:17 +00:00
|
|
|
sort -u > $(KERNEL_BUILD_DIR)/mod_symtab.txt
|
2014-09-15 16:18:48 +00:00
|
|
|
$(TARGET_CROSS)nm -n $(LINUX_DIR)/vmlinux.o | grep ' [rR] __ksymtab' | sed -e 's,........ [rR] __ksymtab_,,' > $(KERNEL_BUILD_DIR)/kernel_symtab.txt
|
2013-12-14 13:14:44 +00: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 14:22:04 +00:00
|
|
|
( \
|
|
|
|
echo '#define SYMTAB_KEEP \'; \
|
2012-12-02 17:42:17 +00:00
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_include.txt | \
|
2013-01-26 16:26:13 +00:00
|
|
|
awk '{print "KEEP(*(___ksymtab+" $$$$1 ")) \\" }'; \
|
2009-08-08 14:22:04 +00:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_KEEP_GPL \'; \
|
2012-12-02 17:42:17 +00:00
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_include.txt | \
|
2013-01-26 16:26:13 +00:00
|
|
|
awk '{print "KEEP(*(___ksymtab_gpl+" $$$$1 ")) \\" }'; \
|
2012-12-02 17:42:17 +00:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_DISCARD \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_exclude.txt | \
|
2013-01-26 16:26:04 +00:00
|
|
|
awk '{print "*(___ksymtab+" $$$$1 ") \\" }'; \
|
2012-12-02 17:42:17 +00:00
|
|
|
echo; \
|
|
|
|
echo '#define SYMTAB_DISCARD_GPL \'; \
|
|
|
|
cat $(KERNEL_BUILD_DIR)/sym_exclude.txt | \
|
2013-01-26 16:26:04 +00:00
|
|
|
awk '{print "*(___ksymtab_gpl+" $$$$1 ") \\" }'; \
|
2012-12-02 17:42:17 +00:00
|
|
|
echo; \
|
2009-08-08 14:22:04 +00:00
|
|
|
) > $$@
|
|
|
|
|
2016-08-05 12:08:47 +00:00
|
|
|
$(STAMP_CONFIGURED): $(STAMP_PREPARED) $(LINUX_KCONFIG_LIST) $(TOPDIR)/.config FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Configure)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-07-16 05:28:13 +00:00
|
|
|
$(LINUX_DIR)/.modules: $(STAMP_CONFIGURED) $(LINUX_DIR)/.config FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/CompileModules)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2009-08-08 14:22:04 +00:00
|
|
|
$(LINUX_DIR)/.image: $(STAMP_CONFIGURED) $(if $(CONFIG_STRIP_KERNEL_EXPORTS),$(KERNEL_BUILD_DIR)/symtab.h) FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/CompileImage)
|
2010-07-21 15:18:24 +00:00
|
|
|
$(Kernel/CollectDebug)
|
2006-10-19 06:20:55 +00:00
|
|
|
touch $$@
|
|
|
|
|
|
|
|
mostlyclean: FORCE
|
2007-09-08 19:55:42 +00:00
|
|
|
$(Kernel/Clean)
|
2006-11-12 05:06:56 +00:00
|
|
|
|
2006-10-19 06:20:55 +00:00
|
|
|
define BuildKernel
|
|
|
|
endef
|
2006-11-11 23:11:02 +00:00
|
|
|
|
2014-06-02 12:43:13 +00:00
|
|
|
download: $(if $(LINUX_SITE),$(DL_DIR)/$(LINUX_SOURCE))
|
2017-02-15 11:34:52 +00:00
|
|
|
prepare: $(STAMP_PREPARED)
|
2007-09-08 19:55:42 +00:00
|
|
|
compile: $(LINUX_DIR)/.modules
|
|
|
|
$(MAKE) -C image compile TARGET_BUILD=
|
2007-08-07 00:04:25 +00:00
|
|
|
|
2010-08-06 21:36:35 +00:00
|
|
|
oldconfig menuconfig nconfig: $(STAMP_PREPARED) $(STAMP_CHECKED) FORCE
|
2016-01-29 00:38:49 +00:00
|
|
|
rm -f $(LINUX_DIR)/.config.prev
|
2011-04-06 14:48:55 +00:00
|
|
|
rm -f $(STAMP_CONFIGURED)
|
|
|
|
$(LINUX_RECONF_CMD) > $(LINUX_DIR)/.config
|
2017-06-07 16:14:27 +00:00
|
|
|
$(_SINGLE)$(KERNEL_MAKE) \
|
|
|
|
$(if $(findstring Darwin,$(HOST_OS)),HOST_LOADLIBES="-L$(STAGING_DIR_HOST)/lib -lncurses") \
|
|
|
|
$$@
|
2011-04-06 14:48:55 +00:00
|
|
|
$(LINUX_RECONF_DIFF) $(LINUX_DIR)/.config > $(LINUX_RECONFIG_TARGET)
|
2007-02-16 16:59:44 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
install: $(LINUX_DIR)/.image
|
2008-08-16 16:59:47 +00:00
|
|
|
+$(MAKE) -C image compile install TARGET_BUILD=
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
clean: FORCE
|
2006-10-19 06:20:55 +00:00
|
|
|
rm -rf $(KERNEL_BUILD_DIR)
|
2006-01-10 19:43:00 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
image-prereq:
|
2008-08-16 16:59:47 +00:00
|
|
|
@+$(NO_TRACE_MAKE) -s -C image prereq TARGET_BUILD=
|
2006-06-26 01:55:47 +00:00
|
|
|
|
2007-09-08 19:55:42 +00:00
|
|
|
prereq: image-prereq
|
|
|
|
|
|
|
|
endef
|