From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id E7D5C1381F3 for ; Sun, 9 Jun 2013 13:40:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CE935E0848; Sun, 9 Jun 2013 13:40:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 19446E0853 for ; Sun, 9 Jun 2013 13:40:41 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 34BF933E372 for ; Sun, 9 Jun 2013 13:40:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id D5BA7E5462 for ; Sun, 9 Jun 2013 13:40:38 +0000 (UTC) From: "Richard Yao" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Yao" Message-ID: <1370785197.4f38da94eb1dc5f3758a583741eaa5fb1ed3d511.ryao@gentoo> Subject: [gentoo-commits] proj/genkernel:ryao commit in: defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/busy-config X-VCS-Directories: defaults/ X-VCS-Committer: ryao X-VCS-Committer-Name: Richard Yao X-VCS-Revision: 4f38da94eb1dc5f3758a583741eaa5fb1ed3d511 X-VCS-Branch: ryao Date: Sun, 9 Jun 2013 13:40: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-Archives-Salt: 9bb33429-a9c9-4860-9909-a761b69c5cee X-Archives-Hash: 1b4d5226ddb77d30e91dfaaecb4645eb commit: 4f38da94eb1dc5f3758a583741eaa5fb1ed3d511 Author: Ben Kohler gmail com> AuthorDate: Sun Jun 9 13:28:23 2013 +0000 Commit: Richard Yao gentoo org> CommitDate: Sun Jun 9 13:39:57 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=4f38da94 Make busybox's module loading more fully featured, bug #472312 Commit 3a054014e880e5b1ff28e3d87767c45a073da6b5 replaced our modprobe with busybox's modprobe. Unfortunately, this caused a regression where busybox's modprobe fails to properly load certain modules. This can be addressed by abandoning CONFIG_MODPROBE_SMALL=y. We also set a few other features to make module loading more fully featured. Signed-off-by: Richard Yao gentoo.org> --- defaults/busy-config | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/defaults/busy-config b/defaults/busy-config index f086b14..513ff0b 100644 --- a/defaults/busy-config +++ b/defaults/busy-config @@ -487,16 +487,16 @@ CONFIG_CHPASSWD=y # Linux Module Utilities # CONFIG_MODINFO=y -CONFIG_MODPROBE_SMALL=y -CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE=y -CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED=y -# CONFIG_INSMOD is not set -# CONFIG_RMMOD is not set -# CONFIG_LSMOD is not set +# CONFIG_MODPROBE_SMALL is not set +# CONFIG_FEATURE_MODPROBE_SMALL_OPTIONS_ON_CMDLINE is not set +# CONFIG_FEATURE_MODPROBE_SMALL_CHECK_ALREADY_LOADED is not set +CONFIG_INSMOD=y +CONFIG_RMMOD=y +CONFIG_LSMOD=y # CONFIG_FEATURE_LSMOD_PRETTY_2_6_OUTPUT is not set -# CONFIG_MODPROBE is not set +CONFIG_MODPROBE=y # CONFIG_FEATURE_MODPROBE_BLACKLIST is not set -# CONFIG_DEPMOD is not set +CONFIG_DEPMOD=y # # Options common to multiple modutils