2005-09-09 17:28:28 +00:00
|
|
|
#
|
|
|
|
# Kbuild for top-level directory of the kernel
|
|
|
|
# This file takes care of the following:
|
2008-04-28 09:12:44 +00:00
|
|
|
# 1) Generate bounds.h
|
2015-05-18 12:19:12 +00:00
|
|
|
# 2) Generate timeconst.h
|
|
|
|
# 3) Generate asm-offsets.h (may need bounds.h and timeconst.h)
|
|
|
|
# 4) Check for missing system calls
|
2016-05-23 23:24:40 +00:00
|
|
|
# 5) Generate constants.py (may need bounds.h)
|
2005-09-09 17:28:28 +00:00
|
|
|
|
2015-01-05 06:57:15 +00:00
|
|
|
# Default sed regexp - multiline due to syntax constraints
|
|
|
|
define sed-y
|
|
|
|
"/^->/{s:->#\(.*\):/* \1 */:; \
|
|
|
|
s:^->\([^ ]*\) [\$$#]*\([-0-9]*\) \(.*\):#define \1 \2 /* \3 */:; \
|
|
|
|
s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; \
|
|
|
|
s:->::; p;}"
|
|
|
|
endef
|
2008-04-28 09:12:44 +00:00
|
|
|
|
2015-03-11 10:01:01 +00:00
|
|
|
# Use filechk to avoid rebuilds when a header changes, but the resulting file
|
|
|
|
# does not
|
|
|
|
define filechk_offsets
|
2008-04-28 09:12:44 +00:00
|
|
|
(set -e; \
|
2015-01-05 06:57:15 +00:00
|
|
|
echo "#ifndef $2"; \
|
|
|
|
echo "#define $2"; \
|
2008-04-28 09:12:44 +00:00
|
|
|
echo "/*"; \
|
|
|
|
echo " * DO NOT MODIFY."; \
|
|
|
|
echo " *"; \
|
|
|
|
echo " * This file was generated by Kbuild"; \
|
|
|
|
echo " */"; \
|
|
|
|
echo ""; \
|
2015-03-11 10:01:01 +00:00
|
|
|
sed -ne $(sed-y); \
|
2008-04-28 09:12:44 +00:00
|
|
|
echo ""; \
|
2015-03-11 10:01:01 +00:00
|
|
|
echo "#endif" )
|
2008-04-28 09:12:44 +00:00
|
|
|
endef
|
|
|
|
|
2015-01-05 06:57:15 +00:00
|
|
|
#####
|
|
|
|
# 1) Generate bounds.h
|
|
|
|
|
|
|
|
bounds-file := include/generated/bounds.h
|
|
|
|
|
|
|
|
always := $(bounds-file)
|
2015-03-26 11:59:52 +00:00
|
|
|
targets := kernel/bounds.s
|
2015-01-05 06:57:15 +00:00
|
|
|
|
2008-04-28 09:12:44 +00:00
|
|
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
|
|
|
kernel/bounds.s: kernel/bounds.c FORCE
|
|
|
|
$(Q)mkdir -p $(dir $@)
|
|
|
|
$(call if_changed_dep,cc_s_c)
|
|
|
|
|
2015-03-11 10:01:01 +00:00
|
|
|
$(obj)/$(bounds-file): kernel/bounds.s FORCE
|
|
|
|
$(call filechk,offsets,__LINUX_BOUNDS_H__)
|
2008-04-28 09:12:44 +00:00
|
|
|
|
|
|
|
#####
|
2015-05-18 12:19:12 +00:00
|
|
|
# 2) Generate timeconst.h
|
|
|
|
|
|
|
|
timeconst-file := include/generated/timeconst.h
|
|
|
|
|
|
|
|
targets += $(timeconst-file)
|
|
|
|
|
|
|
|
quiet_cmd_gentimeconst = GEN $@
|
|
|
|
define cmd_gentimeconst
|
|
|
|
(echo $(CONFIG_HZ) | bc -q $< ) > $@
|
|
|
|
endef
|
|
|
|
define filechk_gentimeconst
|
|
|
|
(echo $(CONFIG_HZ) | bc -q $< )
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(obj)/$(timeconst-file): kernel/time/timeconst.bc FORCE
|
|
|
|
$(call filechk,gentimeconst)
|
|
|
|
|
|
|
|
#####
|
|
|
|
# 3) Generate asm-offsets.h
|
2005-09-09 17:28:28 +00:00
|
|
|
#
|
|
|
|
|
2009-04-19 20:35:10 +00:00
|
|
|
offsets-file := include/generated/asm-offsets.h
|
2005-09-09 17:28:28 +00:00
|
|
|
|
2008-04-28 09:12:44 +00:00
|
|
|
always += $(offsets-file)
|
2007-10-11 09:11:36 +00:00
|
|
|
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
|
2008-04-28 09:12:44 +00:00
|
|
|
|
2005-09-09 17:28:28 +00:00
|
|
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
2008-04-28 09:12:44 +00:00
|
|
|
arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \
|
2015-05-18 12:19:12 +00:00
|
|
|
$(obj)/$(timeconst-file) $(obj)/$(bounds-file) FORCE
|
2005-09-09 17:28:28 +00:00
|
|
|
$(Q)mkdir -p $(dir $@)
|
|
|
|
$(call if_changed_dep,cc_s_c)
|
|
|
|
|
2015-03-11 10:01:01 +00:00
|
|
|
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
|
|
|
|
$(call filechk,offsets,__ASM_OFFSETS_H__)
|
2005-09-09 17:28:28 +00:00
|
|
|
|
2007-03-27 20:50:29 +00:00
|
|
|
#####
|
2015-05-18 12:19:12 +00:00
|
|
|
# 4) Check for missing system calls
|
2007-03-27 20:50:29 +00:00
|
|
|
#
|
|
|
|
|
2011-08-25 01:03:30 +00:00
|
|
|
always += missing-syscalls
|
|
|
|
targets += missing-syscalls
|
|
|
|
|
2007-03-27 20:50:29 +00:00
|
|
|
quiet_cmd_syscalls = CALL $<
|
2011-11-08 18:20:10 +00:00
|
|
|
cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
|
2007-03-27 20:50:29 +00:00
|
|
|
|
2011-08-25 01:03:30 +00:00
|
|
|
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
|
2007-03-27 20:50:29 +00:00
|
|
|
$(call cmd,syscalls)
|
2008-04-28 09:12:44 +00:00
|
|
|
|
2016-05-23 23:24:40 +00:00
|
|
|
#####
|
|
|
|
# 5) Generate constants for Python GDB integration
|
|
|
|
#
|
|
|
|
|
|
|
|
extra-$(CONFIG_GDB_SCRIPTS) += build_constants_py
|
|
|
|
|
|
|
|
build_constants_py: $(obj)/$(timeconst-file) $(obj)/$(bounds-file)
|
|
|
|
@$(MAKE) $(build)=scripts/gdb/linux $@
|
|
|
|
|
2015-05-18 12:19:12 +00:00
|
|
|
# Keep these three files during make clean
|
|
|
|
no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)
|