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 DD35E138334 for ; Sat, 14 Dec 2019 19:02:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 77805E0894; Sat, 14 Dec 2019 19:02:40 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 617C6E0894 for ; Sat, 14 Dec 2019 19:02:40 +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 5D99434D87E for ; Sat, 14 Dec 2019 19:02:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 79BD0906 for ; Sat, 14 Dec 2019 19:02:36 +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: <1576349081.63f7d255e2dc2956f293f1e7f5f7b4c503951fb0.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/modules_load X-VCS-Directories: defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 63f7d255e2dc2956f293f1e7f5f7b4c503951fb0 X-VCS-Branch: master Date: Sat, 14 Dec 2019 19:02:36 +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: e15bba4c-5058-4b1d-847c-ab5c10719d8e X-Archives-Hash: 971c99889c3fab0af24805317623742c commit: 63f7d255e2dc2956f293f1e7f5f7b4c503951fb0 Author: Zac Medico gentoo org> AuthorDate: Fri Dec 13 08:41:20 2019 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Dec 14 18:44:41 2019 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=63f7d255 modules_load: include realtek for r8169 Since linux-5.3-rc1, the r8169 driver triggers a kernel oops unless the realtek module is also included in the initramfs. See: https://bugzilla.kernel.org/show_bug.cgi?id=204343 Signed-off-by: Zac Medico gentoo.org> Closes: https://github.com/gentoo/genkernel/pull/11 Signed-off-by: Thomas Deutschmann gentoo.org> defaults/modules_load | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/modules_load b/defaults/modules_load index 1b85842..9caa3c7 100644 --- a/defaults/modules_load +++ b/defaults/modules_load @@ -16,7 +16,7 @@ MODULES_WAITSCAN="scsi_wait_scan" MODULES_BLOCK="sdhci_acpi sdhci_pci" # Hardware (Network) -MODULES_NET="8139cp 8139too atl1c atlantic bcm_phy_lib bnx2 bonding broadcom cxgb cxgb3 cxgb4 e1000 e1000e ena hv_netvsc ionic igb ixgb ixgbe macvlan pcnet32 r8169 samsung-sxgbe sky2 tg3 tulip virtio_net vmxnet3 vxge vxlan gve" +MODULES_NET="8139cp 8139too atl1c atlantic bcm_phy_lib bnx2 bonding broadcom cxgb cxgb3 cxgb4 e1000 e1000e ena hv_netvsc ionic igb ixgb ixgbe macvlan pcnet32 r8169 realtek samsung-sxgbe sky2 tg3 tulip virtio_net vmxnet3 vxge vxlan gve" # iSCSI support MODULES_ISCSI="scsi_transport_iscsi libiscsi iscsi_tcp"