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 934A6139694 for ; Fri, 14 Jul 2017 18:50:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 25845E0DC4; Fri, 14 Jul 2017 18:50:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 F19E7E0DC4 for ; Fri, 14 Jul 2017 18:50:10 +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 B2B4A3416B6 for ; Fri, 14 Jul 2017 18:50:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 22BDC3A56 for ; Fri, 14 Jul 2017 18:50:02 +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: <1500056060.cd9bc0d95e5b904ce55d354c1aa3f2d69ee3d4e0.robbat2@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: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: cd9bc0d95e5b904ce55d354c1aa3f2d69ee3d4e0 X-VCS-Branch: master Date: Fri, 14 Jul 2017 18:50:02 +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-Archives-Salt: 95f37754-c942-411c-8a60-bd55cb1711ea X-Archives-Hash: 2b1f0a5517406a2122c744f186161667 commit: cd9bc0d95e5b904ce55d354c1aa3f2d69ee3d4e0 Author: Robin H. Johnson gentoo org> AuthorDate: Fri Jul 14 18:14:20 2017 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Jul 14 18:14:20 2017 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=cd9bc0d9 defaults/initrd.defaults: Fix misnamed variable. Thanks to Andrey Tikhomirov vampik.ru> for catching this! Fixes: https://bugs.gentoo.org/show_bug.cgi?id=622930 Signed-off-by: Robin H. Johnson gentoo.org> defaults/initrd.defaults | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/initrd.defaults b/defaults/initrd.defaults index b7128eb..b028f72 100755 --- a/defaults/initrd.defaults +++ b/defaults/initrd.defaults @@ -92,4 +92,4 @@ HWOPTS="keymap cache modules ${HWOPTS_BLK} lvm dmraid multipath mdadm zfs fs net # This is the set of default HWOPTS, in the order that they are loaded. # This is whitespace aligned with HWOPTS above. -MY_HWOPTS=" modules ${HWOPT_BLK} dmraid mdadm fs net crypto" +MY_HWOPTS=" modules ${HWOPTS_BLK} dmraid mdadm fs net crypto"