diff options
author | Aaron Tomlin | 2022-03-22 14:03:44 +0000 |
---|---|---|
committer | Luis Chamberlain | 2022-04-05 08:43:04 -0700 |
commit | 47889798da4307ed78346f04c5d95c87abbf696b (patch) | |
tree | 7f5459cddb735b209697ce858e8262ea2c8e6735 /kernel/module/Makefile | |
parent | f64205a42046d3802c423fa2059e7fca39af127c (diff) |
module: Move version support into a separate file
No functional change.
This patch migrates module version support out of core code into
kernel/module/version.c. In addition simple code refactoring to
make this possible.
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Aaron Tomlin <atomlin@redhat.com>
Signed-off-by: Luis Chamberlain <mcgrof@kernel.org>
Diffstat (limited to 'kernel/module/Makefile')
-rw-r--r-- | kernel/module/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/module/Makefile b/kernel/module/Makefile index 88f5cdcdb067..e2eff9853a28 100644 --- a/kernel/module/Makefile +++ b/kernel/module/Makefile @@ -18,3 +18,4 @@ obj-$(CONFIG_KALLSYMS) += kallsyms.o obj-$(CONFIG_PROC_FS) += procfs.o obj-$(CONFIG_SYSFS) += sysfs.o obj-$(CONFIG_KGDB_KDB) += kdb.o +obj-$(CONFIG_MODVERSIONS) += version.o |