summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.masahiro@socionext.com>2019-02-19 04:33:03 -0500
committerMasahiro Yamada <yamada.masahiro@socionext.com>2019-02-27 07:40:01 -0500
commit01d509a48b467fa6e03d4af43b84bce835af4cef (patch)
tree8ed29ee6c8981520d262bd7122f274054ccbd202
parent67274c083438340ad16c1437caebc84e1253b224 (diff)
kbuild: remove unimportant comments from ./Kbuild
Every time we add/remove a target, we need to touch the header part, including renumbering. This is not so important information. Numbering targets is rather misleading because they are not necessarily generated in this order. For example, 1) and 2) can be executed simultaneously when the -j option is given. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
-rw-r--r--Kbuild15
1 files changed, 4 insertions, 11 deletions
diff --git a/Kbuild b/Kbuild
index 4cebcc7b09b7..a07bbd62f052 100644
--- a/Kbuild
+++ b/Kbuild
@@ -1,14 +1,9 @@
1# SPDX-License-Identifier: GPL-2.0 1# SPDX-License-Identifier: GPL-2.0
2# 2#
3# Kbuild for top-level directory of the kernel 3# Kbuild for top-level directory of the kernel
4# This file takes care of the following:
5# 1) Generate bounds.h
6# 2) Generate timeconst.h
7# 3) Generate asm-offsets.h (may need bounds.h and timeconst.h)
8# 4) Check for missing system calls
9 4
10##### 5#####
11# 1) Generate bounds.h 6# Generate bounds.h
12 7
13bounds-file := include/generated/bounds.h 8bounds-file := include/generated/bounds.h
14 9
@@ -19,7 +14,7 @@ $(bounds-file): kernel/bounds.s FORCE
19 $(call filechk,offsets,__LINUX_BOUNDS_H__) 14 $(call filechk,offsets,__LINUX_BOUNDS_H__)
20 15
21##### 16#####
22# 2) Generate timeconst.h 17# Generate timeconst.h
23 18
24timeconst-file := include/generated/timeconst.h 19timeconst-file := include/generated/timeconst.h
25 20
@@ -31,8 +26,7 @@ $(timeconst-file): kernel/time/timeconst.bc FORCE
31 $(call filechk,gentimeconst) 26 $(call filechk,gentimeconst)
32 27
33##### 28#####
34# 3) Generate asm-offsets.h 29# Generate asm-offsets.h
35#
36 30
37offsets-file := include/generated/asm-offsets.h 31offsets-file := include/generated/asm-offsets.h
38 32
@@ -45,8 +39,7 @@ $(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
45 $(call filechk,offsets,__ASM_OFFSETS_H__) 39 $(call filechk,offsets,__ASM_OFFSETS_H__)
46 40
47##### 41#####
48# 4) Check for missing system calls 42# Check for missing system calls
49#
50 43
51always += missing-syscalls 44always += missing-syscalls
52targets += missing-syscalls 45targets += missing-syscalls