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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 964AD1581E7 for ; Mon, 29 Apr 2024 15:42:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DD37BE2A07; Mon, 29 Apr 2024 15:42:32 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B7C5FE2A07 for ; Mon, 29 Apr 2024 15:42:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C1A93335D64 for ; Mon, 29 Apr 2024 15:42:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59CFB1513 for ; Mon, 29 Apr 2024 15:42:30 +0000 (UTC) From: "Ben Kohler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ben Kohler" Message-ID: <1714404934.12cdca31704000822c50b996facc955d5e3ae5a9.bkohler@gentoo> Subject: [gentoo-commits] proj/genkernel:master commit in: gkbuilds/ X-VCS-Repository: proj/genkernel X-VCS-Files: gkbuilds/lvm.gkbuild X-VCS-Directories: gkbuilds/ X-VCS-Committer: bkohler X-VCS-Committer-Name: Ben Kohler X-VCS-Revision: 12cdca31704000822c50b996facc955d5e3ae5a9 X-VCS-Branch: master Date: Mon, 29 Apr 2024 15:42:30 +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: 66116fb2-e6ff-4017-8091-d61ea606d31a X-Archives-Hash: c2bd1346b050e5dc08654eabbea5260b commit: 12cdca31704000822c50b996facc955d5e3ae5a9 Author: Ben Kohler gentoo org> AuthorDate: Mon Apr 29 15:35:34 2024 +0000 Commit: Ben Kohler gentoo org> CommitDate: Mon Apr 29 15:35:34 2024 +0000 URL: https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=12cdca31 gkbuilds/lvm: add 2.03 support Signed-off-by: Ben Kohler gentoo.org> gkbuilds/lvm.gkbuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gkbuilds/lvm.gkbuild b/gkbuilds/lvm.gkbuild index 3006381..27a7521 100644 --- a/gkbuilds/lvm.gkbuild +++ b/gkbuilds/lvm.gkbuild @@ -54,6 +54,8 @@ src_install() { "${STRIP}" --strip-all "${D}"/usr/sbin/lvm \ || die "Failed to strip '${D}/usr/sbin/lvm'!" + # dmsetup.static has moved to libdm/dm-tools/ in 2.03, allow both locations for now + [ -f libdm/dm-tools/dmsetup.static ] && mv libdm/dm-tools/dmsetup.static tools/dmsetup.static cp -a tools/dmsetup.static "${D}"/usr/sbin/dmsetup \ || die "Failed to copy '${S}/tools/dmsetup.static' to '${D}/usr/sbin/dmsetup'!"