kbuild: Don't reset timestamps in include/generated if not needed

Use filechk to generate asm-offsets.h and bounds.h. Based on a patch by
Valdis Kletnieks.

Reported-by: Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
Acked-By: Valdis Kletnieks <Valdis.Kletnieks@vt.edu>
Reviewed-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
This commit is contained in:
Michal Marek 2015-03-11 11:01:01 +01:00
parent c517d838eb
commit 70a4fd6c56
1 changed files with 9 additions and 9 deletions

18
Kbuild
View File

@ -13,8 +13,9 @@ define sed-y
s:->::; p;}" s:->::; p;}"
endef endef
quiet_cmd_offsets = GEN $@ # Use filechk to avoid rebuilds when a header changes, but the resulting file
define cmd_offsets # does not
define filechk_offsets
(set -e; \ (set -e; \
echo "#ifndef $2"; \ echo "#ifndef $2"; \
echo "#define $2"; \ echo "#define $2"; \
@ -24,9 +25,9 @@ define cmd_offsets
echo " * This file was generated by Kbuild"; \ echo " * This file was generated by Kbuild"; \
echo " */"; \ echo " */"; \
echo ""; \ echo ""; \
sed -ne $(sed-y) $<; \ sed -ne $(sed-y); \
echo ""; \ echo ""; \
echo "#endif" ) > $@ echo "#endif" )
endef endef
##### #####
@ -42,9 +43,8 @@ kernel/bounds.s: kernel/bounds.c FORCE
$(Q)mkdir -p $(dir $@) $(Q)mkdir -p $(dir $@)
$(call if_changed_dep,cc_s_c) $(call if_changed_dep,cc_s_c)
$(obj)/$(bounds-file): kernel/bounds.s Kbuild $(obj)/$(bounds-file): kernel/bounds.s FORCE
$(Q)mkdir -p $(dir $@) $(call filechk,offsets,__LINUX_BOUNDS_H__)
$(call cmd,offsets,__LINUX_BOUNDS_H__)
##### #####
# 2) Generate asm-offsets.h # 2) Generate asm-offsets.h
@ -62,8 +62,8 @@ arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \
$(Q)mkdir -p $(dir $@) $(Q)mkdir -p $(dir $@)
$(call if_changed_dep,cc_s_c) $(call if_changed_dep,cc_s_c)
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s Kbuild $(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
$(call cmd,offsets,__ASM_OFFSETS_H__) $(call filechk,offsets,__ASM_OFFSETS_H__)
##### #####
# 3) Check for missing system calls # 3) Check for missing system calls