From 2f74950c5e0f0693448a4c8bb75389313f00c996 Mon Sep 17 00:00:00 2001 From: Mauricio Faria de Oliveira Date: Thu, 22 Aug 2019 13:48:48 -0300 Subject: [PATCH] Document ZFS_DKMS_ENABLE_DEBUGINFO in userland configuration Document the ZFS_DKMS_ENABLE_DEBUGINFO option in the userland configuration file, as done with the other ZFS_DKMS_* options. It has been introduced with commit e45c1734a665 ("dkms: Enable debuginfo option to be set with zfs sysconfig file") but isn't mentioned anywhere other than the 'dkms.conf' file (generated). Reviewed-by: Brian Behlendorf Signed-off-by: Mauricio Faria de Oliveira Closes #9191 --- etc/init.d/zfs.in | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/etc/init.d/zfs.in b/etc/init.d/zfs.in index 7998569b2c..d4ad1beaaa 100644 --- a/etc/init.d/zfs.in +++ b/etc/init.d/zfs.in @@ -91,6 +91,10 @@ MOUNT_EXTRA_OPTIONS="" # Only applicable for Debian GNU/Linux {dkms,initramfs}. ZFS_DKMS_ENABLE_DEBUG='no' +# Build kernel modules with the --enable-debuginfo switch? +# Only applicable for Debian GNU/Linux {dkms,initramfs}. +ZFS_DKMS_ENABLE_DEBUGINFO='no' + # Keep debugging symbols in kernel modules? # Only applicable for Debian GNU/Linux {dkms,initramfs}. ZFS_DKMS_DISABLE_STRIP='no'