mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-23 23:50:51 +07:00
bdf37b4dd3
Building a kernel out of tree with:
make O=/tmp/b oldconfig
cd /tmp/b
make
gives this error:
CALL /mnt/kernel/kernel/linux/scripts/atomic/check-atomics.sh
/bin/bash: scripts/atomic/check-atomics.sh: No such file or directory
make[3]: *** [/mnt/kernel/kernel/linux/./Kbuild:86: old-atomics] Error 127
make[3]: *** Waiting for unfinished jobs....
Make the command use the proper build prerequisite which is the absolute
path to the script.
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Borislav Petkov <bp@suse.de>
Cc: Boqun Feng <boqun.feng@gmail.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mark Rutland <mark.rutland@arm.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Will Deacon <will.deacon@arm.com>
Cc: arnd@arndb.de
Cc: aryabinin@virtuozzo.com
Cc: catalin.marinas@arm.com
Cc: dvyukov@google.com
Cc: glider@google.com
Cc: linux-arm-kernel@lists.infradead.org
Cc: linuxdrivers@attotech.com
Fixes: 8d32588077
("locking/atomics: Check generated headers are up-to-date")
Link: http://lkml.kernel.org/r/20181108194128.13368-1-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
99 lines
2.5 KiB
Makefile
99 lines
2.5 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Kbuild for top-level directory of the kernel
|
|
# This file takes care of the following:
|
|
# 1) Generate bounds.h
|
|
# 2) Generate timeconst.h
|
|
# 3) Generate asm-offsets.h (may need bounds.h and timeconst.h)
|
|
# 4) Check for missing system calls
|
|
# 5) check atomics headers are up-to-date
|
|
# 6) Generate constants.py (may need bounds.h)
|
|
|
|
#####
|
|
# 1) Generate bounds.h
|
|
|
|
bounds-file := include/generated/bounds.h
|
|
|
|
always := $(bounds-file)
|
|
targets := kernel/bounds.s
|
|
|
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
|
kernel/bounds.s: kernel/bounds.c FORCE
|
|
$(call if_changed_dep,cc_s_c)
|
|
|
|
$(obj)/$(bounds-file): kernel/bounds.s FORCE
|
|
$(call filechk,offsets,__LINUX_BOUNDS_H__)
|
|
|
|
#####
|
|
# 2) Generate timeconst.h
|
|
|
|
timeconst-file := include/generated/timeconst.h
|
|
|
|
targets += $(timeconst-file)
|
|
|
|
quiet_cmd_gentimeconst = GEN $@
|
|
define cmd_gentimeconst
|
|
(echo $(CONFIG_HZ) | bc -q $< ) > $@
|
|
endef
|
|
define filechk_gentimeconst
|
|
(echo $(CONFIG_HZ) | bc -q $< )
|
|
endef
|
|
|
|
$(obj)/$(timeconst-file): kernel/time/timeconst.bc FORCE
|
|
$(call filechk,gentimeconst)
|
|
|
|
#####
|
|
# 3) Generate asm-offsets.h
|
|
#
|
|
|
|
offsets-file := include/generated/asm-offsets.h
|
|
|
|
always += $(offsets-file)
|
|
targets += arch/$(SRCARCH)/kernel/asm-offsets.s
|
|
|
|
# We use internal kbuild rules to avoid the "is up to date" message from make
|
|
arch/$(SRCARCH)/kernel/asm-offsets.s: arch/$(SRCARCH)/kernel/asm-offsets.c \
|
|
$(obj)/$(timeconst-file) $(obj)/$(bounds-file) FORCE
|
|
$(call if_changed_dep,cc_s_c)
|
|
|
|
$(obj)/$(offsets-file): arch/$(SRCARCH)/kernel/asm-offsets.s FORCE
|
|
$(call filechk,offsets,__ASM_OFFSETS_H__)
|
|
|
|
#####
|
|
# 4) Check for missing system calls
|
|
#
|
|
|
|
always += missing-syscalls
|
|
targets += missing-syscalls
|
|
|
|
quiet_cmd_syscalls = CALL $<
|
|
cmd_syscalls = $(CONFIG_SHELL) $< $(CC) $(c_flags) $(missing_syscalls_flags)
|
|
|
|
missing-syscalls: scripts/checksyscalls.sh $(offsets-file) FORCE
|
|
$(call cmd,syscalls)
|
|
|
|
#####
|
|
# 5) Check atomic headers are up-to-date
|
|
#
|
|
|
|
always += old-atomics
|
|
targets += old-atomics
|
|
|
|
quiet_cmd_atomics = CALL $<
|
|
cmd_atomics = $(CONFIG_SHELL) $<
|
|
|
|
old-atomics: scripts/atomic/check-atomics.sh FORCE
|
|
$(call cmd,atomics)
|
|
|
|
#####
|
|
# 6) Generate constants for Python GDB integration
|
|
#
|
|
|
|
extra-$(CONFIG_GDB_SCRIPTS) += build_constants_py
|
|
|
|
build_constants_py: $(obj)/$(timeconst-file) $(obj)/$(bounds-file)
|
|
@$(MAKE) $(build)=scripts/gdb/linux $@
|
|
|
|
# Keep these three files during make clean
|
|
no-clean-files := $(bounds-file) $(offsets-file) $(timeconst-file)
|