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 E3AAF138334 for ; Wed, 27 Nov 2019 16:40:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16CBEE08FE; Wed, 27 Nov 2019 16:40:23 +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 EAC27E08FE for ; Wed, 27 Nov 2019 16:40:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 E565F34D4D4 for ; Wed, 27 Nov 2019 16:40:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7070B8C8 for ; Wed, 27 Nov 2019 16:40:17 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1574871536.341ee3801aaf1051ea97865c7907bbe0423f3c2b.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/initrd.defaults X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 341ee3801aaf1051ea97865c7907bbe0423f3c2b X-VCS-Branch: master Date: Wed, 27 Nov 2019 16:40:17 +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: 75cbb18d-f81d-472f-8928-9897e49fd2e6 X-Archives-Hash: b96bac4f4ad4b98476df7350fd9587f2 commit: 341ee3801aaf1051ea97865c7907bbe0423f3c2b Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Nov 27 13:41:49 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Nov 27 16:18:56 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=341ee380 initrd.defaults: Drop bcache from MY_HWOPTS There's no /etc/modules/bcache. Bcache module gets loaded via dobcache kernel-commandline argument. Signed-off-by: Thomas Deutschmann gentoo.org> defaults/initrd.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults index 9892631..268a7be 100644 --- a/defaults/initrd.defaults +++ b/defaults/initrd.defaults @@ -133,4 +133,4 @@ HWOPTS="keymap cache modules virtio hyperv ${HWOPTS_BLK} bcache lvm dmraid multi # This is the set of default HWOPTS, in the order that they are loaded. # This is whitespace aligned with HWOPTS above. -MY_HWOPTS=" modules virtio hyperv ${HWOPTS_BLK} bcache lvm dmraid mdadm fs crypto" +MY_HWOPTS=" modules virtio hyperv ${HWOPTS_BLK} lvm dmraid mdadm fs crypto"