VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   32 Branches   54 Tags
author: Sami Tolvanen <samitolvanen@google.com> 2020-12-11 10:46:20 -0800 committer: Kees Cook <keescook@chromium.org> 2021-01-14 08:21:08 -0800 commit: 38e89184900385b0dad1ee55c35ae8abcfee6ece parent: dc5723b02e523b2c4a68667f7e28c65018f7202f
Commit Summary:
kbuild: lto: fix module versioning
Diffstat:
1 file changed, 2 insertions, 1 deletion
diff --git a/Makefile b/Makefile
index 2b9bcecd6ea1..173a7c9bd1fb 100644
--- a/Makefile
+++ b/Makefile
@@ -1837,7 +1837,8 @@ clean: $(clean-dirs)
 		-o -name '.tmp_*.o.*' \
 		-o -name '*.c.[012]*.*' \
 		-o -name '*.ll' \
-		-o -name '*.gcno' \) -type f -print | xargs rm -f
+		-o -name '*.gcno' \
+		-o -name '*.*.symversions' \) -type f -print | xargs rm -f
 
 # Generate tags for editors
 # ---------------------------------------------------------------------------