From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05B81138247 for ; Sat, 14 Dec 2013 22:26:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DBF70E0B47; Sat, 14 Dec 2013 22:24:52 +0000 (UTC) Received: from qmta05.westchester.pa.mail.comcast.net (qmta05.westchester.pa.mail.comcast.net [76.96.62.48]) by pigeon.gentoo.org (Postfix) with ESMTP id 6456DE0AB9 for ; Sat, 14 Dec 2013 22:24:47 +0000 (UTC) Received: from omta08.westchester.pa.mail.comcast.net ([76.96.62.12]) by qmta05.westchester.pa.mail.comcast.net with comcast id 1aAX1n0010Fqzac55aQnox; Sat, 14 Dec 2013 22:24:47 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta08.westchester.pa.mail.comcast.net with comcast id 1aQm1n002152l3L3UaQmwz; Sat, 14 Dec 2013 22:24:47 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id A7F7DD68B61; Sat, 14 Dec 2013 14:24:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387059885; bh=SWiq44TY3q6bIoSeft+sW90LfwuqnmWJWpG3rPBw/94=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=EBSuBvsi8NQPuCe9S/xW2raqyQPyCR1GvZJOQ3HSBO9taLcjDUwFJx8C+HbX8DKfN fUOpHel+1nTp47oTjHQN3kzm4iAM6QIHKWX0ZOx2xUk/Tou2S7JbvnVLW1y4TbBQmH ZmYPgnWkZQGRK3tj266saThdIGbBrtPTdjipSsJw= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 15/21] modules/generic_stage_target.py: Use 'port_tmpdir' instead of '/var/tmp/portage' as the mountmap key Date: Sat, 14 Dec 2013 14:24:23 -0800 Message-Id: <17244c5b04b54d9cf0abfc8a45676f7d96cc3d79.1387059467.git.wking@tremily.us> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387059887; bh=y9+r/xFou1UKdTB/p4n20llKrhqpI++okI2Bhr9fy4M=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=AWrd0c7sprF4IEnMTKqZbTmtuP0djVcWEFJhdXKPMZDRZiBGBfuNqlYvZl1R0DeFd kwunM34jo6flu3X9pvIexGlvcCLj3pWaNWz/r6SzVtM3M+X6ARAbDOWBetxWfRRBS4 88Zd3vXKIIwVzk38yLV5mMaJ7XbnHiWysdNHYwswOCKzHOPqmBRrr5FhlVqK9uzG9m lCt4+8yCDIK0zrWkDFPSold+tRAhuX6r5TE91LSnrIB4AD3bal1m8YNGqDkBO2CAYO HVT+Nh3AoEridw+L55aJ95PCFDZTEy3EVaULVCFFwGPCYH+K4Kyee7GL4mIBUwhRsI TYMrj91kWullw== Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 0228433b-a9f6-4416-9e86-17c19caa0e48 X-Archives-Hash: 48a4a684fc863260a561128b82d2efe4 From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King --- modules/generic_stage_target.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index e5bdf91..2426b12 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -179,9 +179,9 @@ class generic_stage_target(generic_target): "/usr/portage":self.settings["snapshot_cache_path"]+"/portage",\ "/usr/portage/distfiles":self.settings["distdir"],"/var/tmp/portage":"tmpfs"} else: - self.mounts = ["proc", "dev", "distdir", "/var/tmp/portage"] + self.mounts = ["proc", "dev", "distdir", "port_tmpdir"] self.mountmap = {"proc":"/proc", "dev":"/dev", "/dev/pts":"/dev/pts",\ - "distdir":self.settings["distdir"],"/var/tmp/portage":"tmpfs"} + "distdir":self.settings["distdir"], "port_tmpdir":"tmpfs"} if os.uname()[0] == "Linux": self.mounts.append("/dev/pts") -- 1.8.3.2