From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-598133-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 8284A1381F3 for <garchives@archives.gentoo.org>; Sun, 9 Jun 2013 13:33:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5C1B5E085B; Sun, 9 Jun 2013 13:33:49 +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 9BB6AE085B for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2013 13:33:48 +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 B017F33E358 for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2013 13:33:47 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7130BE5464 for <gentoo-commits@lists.gentoo.org>; Sun, 9 Jun 2013 13:33:45 +0000 (UTC) From: "Richard Yao" <ryao@gentoo.org> 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" <ryao@gentoo.org> Message-ID: <1370784503.c3c2e464e21a7298284c4688a2fd3776c813bedb.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: c3c2e464e21a7298284c4688a2fd3776c813bedb X-VCS-Branch: ryao Date: Sun, 9 Jun 2013 13:33:45 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e0ee71bb-7a04-4487-b658-e3ba5c85ef15 X-Archives-Hash: 167cfa9006ffcf6ccb8ae77bcd063edf commit: c3c2e464e21a7298284c4688a2fd3776c813bedb Author: Ben Kohler <bkohler <AT> gmail <DOT> com> AuthorDate: Sun Jun 9 13:28:23 2013 +0000 Commit: Richard Yao <ryao <AT> gentoo <DOT> org> CommitDate: Sun Jun 9 13:28:23 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/genkernel.git;a=commit;h=c3c2e464 Make busybox's module loading more fully featured, bug #472312 Commit 3a054014e880e5b1ff28e3d87767c45a073da6b5 replaced our modprobe with busybox's modprobe. Unfortunately, this caused a regression because busybox's modprobe does 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 <ryao <AT> 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