diff options
author | Torsten Wörtwein <[email protected]> | 2019-06-04 21:12:16 -0400 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2019-06-04 18:12:16 -0700 |
commit | 1ec7eda16743a74b363d3765bca7642935422862 (patch) | |
tree | febf43ba156b961f90d0085e6c80a60add9813e3 /config | |
parent | 1a132f063882bba08253b6c0abf3846cdacfb7a6 (diff) |
Allow TRIM_UNUSED_KSYM when build as a builtin-module
If ZFS is built with enable_linux_builtin, it seems to be possible
to compile the kernel with TRIM_UNUSED_KSYM.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Torsten Wörtwein <[email protected]>
Closes #8820
Diffstat (limited to 'config')
-rw-r--r-- | config/kernel.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config/kernel.m4 b/config/kernel.m4 index 2444b68ef..8e89c8014 100644 --- a/config/kernel.m4 +++ b/config/kernel.m4 @@ -528,10 +528,11 @@ AC_DEFUN([ZFS_AC_KERNEL_CONFIG_TRIM_UNUSED_KSYMS], [ AC_MSG_RESULT([yes]) ],[ AC_MSG_RESULT([no]) - AC_MSG_ERROR([ + AS_IF([test "x$enable_linux_builtin" != xyes], [ + AC_MSG_ERROR([ *** This kernel has unused symbols trimming enabled, please disable. *** Rebuild the kernel with CONFIG_TRIM_UNUSED_KSYMS=n set.]) - ]) + ])]) ]) dnl # |