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 37732159C9B for ; Fri, 9 Aug 2024 19:34:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D76C2BC0E6; Fri, 9 Aug 2024 19:34:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 209AF2BC0E6 for ; Fri, 9 Aug 2024 19:34:12 +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 5B2C53430F5 for ; Fri, 9 Aug 2024 19:34:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E30D31EDF for ; Fri, 9 Aug 2024 19:34:07 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1722350723.228569f3f827e7e116fede8901dbc50118519eae.dilfridge@gentoo> Subject: [gentoo-commits] proj/catalyst:dilfridge/qcow2 commit in: catalyst/targets/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/targets/stage1.py X-VCS-Directories: catalyst/targets/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: 228569f3f827e7e116fede8901dbc50118519eae X-VCS-Branch: dilfridge/qcow2 Date: Fri, 9 Aug 2024 19:34:07 +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: 3f50136d-3ace-4156-8730-0cb9a3fea9d0 X-Archives-Hash: d596ae8bb04cbc38018877a137cc0e3a Message-ID: <20240809193407.-wNN1gE_bqBaIDREOTD1QA20KRtfgasX1VQ9wt1RQz0@z> commit: 228569f3f827e7e116fede8901dbc50118519eae Author: Andreas K. Hüttel gentoo org> AuthorDate: Tue Jul 30 14:45:23 2024 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Tue Jul 30 14:45:23 2024 +0000 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=228569f3 stage1: we can't mount any squashfs twice, so we make sure we get a bind mount Signed-off-by: Andreas K. Hüttel gentoo.org> catalyst/targets/stage1.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/catalyst/targets/stage1.py b/catalyst/targets/stage1.py index 593509e4..1c9a4d42 100644 --- a/catalyst/targets/stage1.py +++ b/catalyst/targets/stage1.py @@ -32,7 +32,7 @@ class stage1(StageBase): mount_id = f'root_repo_{name}' self.mount[mount_id] = { 'enable': True, - 'source': path, + 'source': self.get_repo_location(name), 'target': normpath("/tmp/stage1root") / self.get_repo_location(name) }