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 23F67138350 for ; Wed, 29 Jan 2020 22:28:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D71BE0801; Wed, 29 Jan 2020 22:28:49 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 2118BE0801 for ; Wed, 29 Jan 2020 22:28:49 +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 DA3E334E4E5 for ; Wed, 29 Jan 2020 22:28:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4D375AF for ; Wed, 29 Jan 2020 22:28:45 +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: <1580335956.93c4a548b0aa06c2b5fd40467b80e945e081be24.whissi@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: doc/, defaults/ X-VCS-Repository: proj/genkernel X-VCS-Files: defaults/config.sh doc/genkernel.8.txt X-VCS-Directories: doc/ defaults/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 93c4a548b0aa06c2b5fd40467b80e945e081be24 X-VCS-Branch: master Date: Wed, 29 Jan 2020 22:28:45 +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: 50c2a721-902e-4082-ab35-70f82b539c26 X-Archives-Hash: a0f2e0b5d55a6fa08e36e53070ffc58f commit: 93c4a548b0aa06c2b5fd40467b80e945e081be24 Author: Thomas Deutschmann gentoo org> AuthorDate: Wed Jan 29 22:04:22 2020 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Wed Jan 29 22:12:36 2020 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=93c4a548 defaults/config.sh: Use --buildpkg=n and --usepkg=n in DEFAULT_MODULEREBUILD_CMD While we call emerge with "--ignore-default-opts" since commit da5a5fa797a5fffa6c4d694cbfe2edc83bab4890 to avoid conflicting emerge options, we also need to ensure that we don't clash with problematic emerge FEATURES like "getbinpkg". Reported-by: Rick Farina gentoo.org> Signed-off-by: Thomas Deutschmann gentoo.org> defaults/config.sh | 2 +- doc/genkernel.8.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/defaults/config.sh b/defaults/config.sh index 694b3e9..fed5355 100644 --- a/defaults/config.sh +++ b/defaults/config.sh @@ -34,7 +34,7 @@ DEFAULT_COMPRESS_INITRD_TYPE=best PORTAGE_MAKEOPTS="$(portageq envvar MAKEOPTS)" DEFAULT_MAKEOPTS="${PORTAGE_MAKEOPTS:- -j2}" -DEFAULT_MODULEREBUILD_CMD="emerge --ignore-default-opts --quiet-build=y @module-rebuild" +DEFAULT_MODULEREBUILD_CMD="emerge --ignore-default-opts --buildpkg=n --usepkg=n --quiet-build=y @module-rebuild" DEFAULT_KERNEL_MAKE=make DEFAULT_UTILS_MAKE=make diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt index aebea03..6c7b9bd 100644 --- a/doc/genkernel.8.txt +++ b/doc/genkernel.8.txt @@ -196,7 +196,7 @@ specified. Copies or does not copy all kernel modules to the initrd. *--*[*no-*]*module-rebuild*:: - Runs, or does not run "emerge --ignore-default-opts --quiet-build=y @module-rebuild" + Runs, or does not run "emerge --ignore-default-opts --buildpkg=n --usepkg=n --quiet-build=y @module-rebuild" to build out-of-tree modules when possible, i.e. when non-static kernel and modules will be build, installed, no custom 'INSTALL_MOD_PATH' is set, '/var/lib/module-rebuild/moduledb' exists