diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-15 01:06:22 +0900 |
---|---|---|
committer | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-08-21 21:05:21 +0900 |
commit | 10df063855822fcea3c0f51dbf534ad643d3cb1b (patch) | |
tree | 437f5b671d7ceb1870ffa245fd27e2ef45a4892c /Documentation/kbuild | |
parent | 888f0c346ff01d544d1cb9da6395a7b3def7fe87 (diff) | |
download | linux-10df063855822fcea3c0f51dbf534ad643d3cb1b.tar.bz2 |
kbuild: rebuild modules when module linker scripts are updated
Currently, the timestamp of module linker scripts are not checked.
Add them to the dependency of modules so they are correctly rebuilt.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Diffstat (limited to 'Documentation/kbuild')
-rw-r--r-- | Documentation/kbuild/makefiles.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/kbuild/makefiles.rst b/Documentation/kbuild/makefiles.rst index 88c384da592e..68ed20ef37dd 100644 --- a/Documentation/kbuild/makefiles.rst +++ b/Documentation/kbuild/makefiles.rst @@ -993,6 +993,11 @@ When kbuild executes, the following steps are followed (roughly): The linker script with full path. Assigned by the top-level Makefile. + KBUILD_LDS_MODULE + + The module linker script with full path. Assigned by the top-level + Makefile and additionally by the arch Makefile. + KBUILD_VMLINUX_OBJS All object files for vmlinux. They are linked to vmlinux in the same |