Kbuild 2.0 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2 3 4
#
# Kbuild for top-level directory of the kernel
# This file takes care of the following:
5
# 1) Generate bounds.h
6 7 8
# 2) Generate timeconst.h
# 3) Generate asm-offsets.h (may need bounds.h and timeconst.h)
# 4) Check for missing system calls
9 10
# 5) check atomics headers are up-to-date
# 6) Generate constants.py (may need bounds.h)
11

12 13 14 15 16 17
#####
# 1) Generate bounds.h

bounds-file := include/generated/bounds.h

always  := $(bounds-file)
18
targets := kernel/bounds.s
19

20
$(bounds-file): kernel/bounds.s FORCE
21
	$(call filechk,offsets,__LINUX_BOUNDS_H__)
22 23

#####
24 25 26 27 28 29
# 2) Generate timeconst.h

timeconst-file := include/generated/timeconst.h

targets += $(timeconst-file)

30
filechk_gentimeconst = echo $(CONFIG_HZ) | bc -q $<
31

32
$(timeconst-file): kernel/time/timeconst.bc FORCE
33 34 35 36
	$(call filechk,gentimeconst)

#####
# 3) Generate asm-offsets.h
37 38
#

39
offsets-file := include/generated/asm-offsets.h
40

41
always  += $(offsets-file)
42
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
43

44
arch/$(SRCARCH)/kernel/asm-offsets.s: $(timeconst-file) $(bounds-file)
45

46
$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
47
	$(call filechk,offsets,__ASM_OFFSETS_H__)
48

49
#####
50
# 4) Check for missing system calls
51 52
#

53 54 55
always += missing-syscalls
targets += missing-syscalls

56
quiet_cmd_syscalls = CALL    $<
57
      cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
58

59
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
60
	$(call cmd,syscalls)
61

62
#####
63 64 65 66 67 68 69
# 5) Check atomic headers are up-to-date
#

always += old-atomics
targets += old-atomics

quiet_cmd_atomics = CALL    $<
70
      cmd_atomics = $(CONFIG_SHELL) $<
71 72 73 74 75 76

old-atomics: scripts/atomic/check-atomics.sh FORCE
	$(call cmd,atomics)

#####
# 6) Generate constants for Python GDB integration
77 78 79 80
#

extra-$(CONFIG_GDB_SCRIPTS) += build_constants_py

81
build_constants_py: $(timeconst-file) $(bounds-file)
82 83
	@$(MAKE) $(build)=scripts/gdb/linux $@

84 85
# Keep these three files during make clean
no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)