]>
Commit | Line | Data |
---|---|---|
86feeaa8 SR |
1 | # |
2 | # Kbuild for top-level directory of the kernel | |
3 | # This file takes care of the following: | |
4 | # 1) Generate asm-offsets.h | |
c53aeca0 | 5 | # 2) Check for missing system calls |
86feeaa8 SR |
6 | |
7 | ##### | |
8d36a623 | 8 | # 1) Generate asm-offsets.h |
86feeaa8 SR |
9 | # |
10 | ||
96a388de | 11 | offsets-file := include/asm-$(SRCARCH)/asm-offsets.h |
86feeaa8 SR |
12 | |
13 | always := $(offsets-file) | |
14 | targets := $(offsets-file) | |
6752ed90 | 15 | targets += arch/$(SRCARCH)/kernel/asm-offsets.s |
f241182b | 16 | clean-files := $(addprefix $(objtree)/,$(targets)) |
86feeaa8 | 17 | |
048eb582 SR |
18 | # Default sed regexp - multiline due to syntax constraints |
19 | define sed-y | |
20 | "/^->/{s:^->\([^ ]*\) [\$$#]*\([^ ]*\) \(.*\):#define \1 \2 /* \3 */:; s:->::; p;}" | |
21 | endef | |
22 | # Override default regexp for specific architectures | |
0947640f | 23 | sed-$(CONFIG_MIPS) := "/^@@@/{s/^@@@//; s/ \#.*\$$//; p;}" |
048eb582 | 24 | |
86feeaa8 SR |
25 | quiet_cmd_offsets = GEN $@ |
26 | define cmd_offsets | |
86feeaa8 SR |
27 | (set -e; \ |
28 | echo "#ifndef __ASM_OFFSETS_H__"; \ | |
29 | echo "#define __ASM_OFFSETS_H__"; \ | |
30 | echo "/*"; \ | |
31 | echo " * DO NOT MODIFY."; \ | |
32 | echo " *"; \ | |
65ff22ee | 33 | echo " * This file was generated by Kbuild"; \ |
86feeaa8 SR |
34 | echo " *"; \ |
35 | echo " */"; \ | |
36 | echo ""; \ | |
ac448afb | 37 | sed -ne $(sed-y) $<; \ |
86feeaa8 SR |
38 | echo ""; \ |
39 | echo "#endif" ) > $@ | |
40 | endef | |
41 | ||
42 | # We use internal kbuild rules to avoid the "is up to date" message from make | |
6752ed90 | 43 | arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c FORCE |
86feeaa8 SR |
44 | $(Q)mkdir -p $(dir $@) |
45 | $(call if_changed_dep,cc_s_c) | |
46 | ||
6752ed90 | 47 | $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild |
ac448afb | 48 | $(Q)mkdir -p $(dir $@) |
86feeaa8 SR |
49 | $(call cmd,offsets) |
50 | ||
c53aeca0 SR |
51 | ##### |
52 | # 2) Check for missing system calls | |
53 | # | |
54 | ||
55 | quiet_cmd_syscalls = CALL $< | |
56 | cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) | |
57 | ||
58 | PHONY += missing-syscalls | |
59 | missing-syscalls: scripts/checksyscalls.sh FORCE | |
60 | $(call cmd,syscalls) |