1 # SPDX-License-Identifier: GPL-2.0
3 # Kbuild for top-level directory of the kernel
5 # Prepare global headers and check sanity before descending into sub-directories
6 # ---------------------------------------------------------------------------
10 bounds-file := include/generated/bounds.h
12 targets := kernel/bounds.s
14 $(bounds-file): kernel/bounds.s FORCE
15 $(call filechk,offsets,__LINUX_BOUNDS_H__)
17 # Generate timeconst.h
19 timeconst-file := include/generated/timeconst.h
21 filechk_gentimeconst = echo $(CONFIG_HZ) | bc -q $<
23 $(timeconst-file): kernel/time/timeconst.bc FORCE
24 $(call filechk,gentimeconst)
26 # Generate asm-offsets.h
28 offsets-file := include/generated/asm-offsets.h
30 targets += arch/$(SRCARCH)/kernel/asm-offsets.s
32 arch/$(SRCARCH)/kernel/asm-offsets.s: $(timeconst-file) $(bounds-file)
34 $(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
35 $(call filechk,offsets,__ASM_OFFSETS_H__)
37 # Check for missing system calls
39 quiet_cmd_syscalls = CALL $<
40 cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
42 PHONY += missing-syscalls
43 missing-syscalls: scripts/checksyscalls.sh $(offsets-file)
46 # Check the manual modification of atomic headers
48 quiet_cmd_check_sha1 = CHKSHA1 $<
50 if ! command -v sha1sum >/dev/null; then \
51 echo "warning: cannot check the header due to sha1sum missing"; \
54 if [ "$$(sed -n '$$s:// ::p' $<)" != \
55 "$$(sed '$$d' $< | sha1sum | sed 's/ .*//')" ]; then \
56 echo "error: $< has been modified." >&2; \
61 atomic-checks += $(addprefix $(obj)/.checked-, \
62 atomic-arch-fallback.h \
63 atomic-instrumented.h \
66 targets += $(atomic-checks)
67 $(atomic-checks): $(obj)/.checked-%: include/linux/atomic/% FORCE
68 $(call if_changed,check_sha1)
70 # A phony target that depends on all the preparation targets
73 prepare: $(offsets-file) missing-syscalls $(atomic-checks)
76 # Ordinary directory descending
77 # ---------------------------------------------------------------------------
81 obj-y += arch/$(SRCARCH)/
90 obj-$(CONFIG_BLOCK) += block/
91 obj-$(CONFIG_IO_URING) += io_uring/
92 obj-$(CONFIG_RUST) += rust/
96 obj-$(CONFIG_SAMPLES) += samples/
97 obj-$(CONFIG_NET) += net/
99 obj-y += $(ARCH_DRIVERS)