From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1216421-garchives=archives.gentoo.org@lists.gentoo.org> 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 4EB57138359 for <garchives@archives.gentoo.org>; Tue, 20 Oct 2020 08:30:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A14AAE084A; Tue, 20 Oct 2020 08:30:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 87DBFE082D for <gentoo-commits@lists.gentoo.org>; Tue, 20 Oct 2020 08:30:31 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 87CB134068A for <gentoo-commits@lists.gentoo.org>; Tue, 20 Oct 2020 08:30:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E22D73B5 for <gentoo-commits@lists.gentoo.org>; Tue, 20 Oct 2020 08:30:27 +0000 (UTC) From: "Matt Turner" <mattst88@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, "Matt Turner" <mattst88@gentoo.org> Message-ID: <1603177803.ffe1b6669ba37b166ba968c0cc99267f1b1f0aab.mattst88@gentoo> Subject: [gentoo-commits] proj/catalyst:pending/mattst88 commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/kmerge.sh X-VCS-Directories: targets/support/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: ffe1b6669ba37b166ba968c0cc99267f1b1f0aab X-VCS-Branch: pending/mattst88 Date: Tue, 20 Oct 2020 08:30:27 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 263547bf-83b8-48ee-bfd2-76dacc072b63 X-Archives-Hash: 179bc04bdda23c0dfb33cd7568dd9156 Message-ID: <20201020083027.kfxd3-SW96EaKB4wK5yjXiDiehW_Am9UMZv6fyDDCg4@z> commit: ffe1b6669ba37b166ba968c0cc99267f1b1f0aab Author: Matt Turner <mattst88 <AT> gentoo <DOT> org> AuthorDate: Mon Oct 19 18:17:56 2020 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Tue Oct 20 07:10:03 2020 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=ffe1b666 targets: Default to sys-kernel/gentoo-sources directly Using virtual/linux-sources was a nice idea, but leads to multiple failures in practice. For example, we use 'portageq contents' later, and the virtual provides no files. We could handle the indirection with 'portageq expand_virtual' in some cases but that requires the virtual to be installed on the system. Fixes: 388def77 ("kmerge.sh blows away the /usr/src/linux symlink ...") Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> targets/support/kmerge.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh index 40e208e4..c4136dec 100755 --- a/targets/support/kmerge.sh +++ b/targets/support/kmerge.sh @@ -118,11 +118,7 @@ eval "kernel_merge=\$clst_boot_kernel_${kname}_packages" eval "kernel_use=\$clst_boot_kernel_${kname}_use" eval eval kernel_gk_kernargs=( \$clst_boot_kernel_${kname}_gk_kernargs ) eval "ksource=\$clst_boot_kernel_${kname}_sources" - -if [ -z "${ksource}" ] -then - ksource="virtual/linux-sources" -fi +[[ -z ${ksource} ]] && ksource="sys-kernel/gentoo-sources" # Check if we have a match in kerncach