From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E4617138334 for ; Fri, 8 Mar 2019 05:43:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9E21E0923; Fri, 8 Mar 2019 05:43:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 92FC5E0923 for ; Fri, 8 Mar 2019 05:43:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49067335C9F for ; Fri, 8 Mar 2019 05:43:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A6098517 for ; Fri, 8 Mar 2019 05:43:38 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1552023794.8ae9d5aa160bbc698efbc7a169ddf30381cd2ad2.robbat2@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: / X-VCS-Repository: proj/genkernel X-VCS-Files: genkernel X-VCS-Directories: / X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 8ae9d5aa160bbc698efbc7a169ddf30381cd2ad2 X-VCS-Branch: master Date: Fri, 8 Mar 2019 05:43:38 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0ea70d3a-8397-4c95-ba9b-b106db4b9fd9 X-Archives-Hash: a636892c4eba8f75dfa06c486ac7f484 commit: 8ae9d5aa160bbc698efbc7a169ddf30381cd2ad2 Author: crocket <748856+crocket users noreply github com> AuthorDate: Sat Mar 2 09:58:58 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Mar 8 05:43:14 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=8ae9d5aa Explain dozfs in more detail Signed-off-by: crocket gmail.com> (cherry picked from commit cf2c05f163128d9cc93117595c677fca35fc1649) Fixes: https://github.com/robbat2/genkernel/pull/25 Signed-off-by: Robin H. Johnson gentoo.org> genkernel | 2 ++ 1 file changed, 2 insertions(+) diff --git a/genkernel b/genkernel index ba3c3bd..61dddca 100755 --- a/genkernel +++ b/genkernel @@ -376,6 +376,8 @@ then [ "${DMRAID}" = '1' ] && print_warning 1 ' or "dodmraid="' [ "${ZFS}" = '1' ] && print_warning 1 'add "dozfs" for ZFS volume management support' [ "${ZFS}" = '1' ] && print_warning 1 ' and either "root=ZFS" to use bootfs autodetection or "root=ZFS=" to force booting from a specific dataset' + [ "${ZFS}" = '1' ] && print_warning 1 'If importing ZFS pool is slow, add dozfs=cache or dozfs=force to kernel commandline.' + [ "${ZFS}" = '1' ] && print_warning 1 '"man genkernel" explains "dozfs" in detail.' [ "${BTRFS}" = '1' ] && print_warning 1 'add "dobtrfs" for Btrfs device scanning support' [ "${ISCSI}" = '1' ] && print_warning 1 'add at least "iscsi_initiatorname= iscsi_target= and iscsi_address=" for iscsi support'