From: Hannes Reinecke <[email protected]> iscsiuio is using pthread, which requires libgcc_s for pthread_cancel to work. Without this library iscsiuio will crash with SIGABRT.
References: bnc#881692 Signed-off-by: Hannes Reinecke <[email protected]> Signed-off-by: Thomas Renninger <[email protected]> --- modules.d/95iscsi/module-setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/modules.d/95iscsi/module-setup.sh b/modules.d/95iscsi/module-setup.sh index 5d2a39b..3641fb8 100755 --- a/modules.d/95iscsi/module-setup.sh +++ b/modules.d/95iscsi/module-setup.sh @@ -106,6 +106,7 @@ cmdline() { install() { inst_multiple umount iscsistart hostname iscsi-iname inst_multiple -o iscsiuio + inst_libdir_file 'libgcc_s.so*' inst_hook cmdline 90 "$moddir/parse-iscsiroot.sh" inst_hook cleanup 90 "$moddir/cleanup-iscsi.sh" inst "$moddir/iscsiroot.sh" "/sbin/iscsiroot" -- 1.8.5.2 -- To unsubscribe from this list: send the line "unsubscribe initramfs" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html
