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 AD165138247 for ; Sat, 14 Dec 2013 22:25:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 625D7E0B39; Sat, 14 Dec 2013 22:24:49 +0000 (UTC) Received: from qmta02.westchester.pa.mail.comcast.net (qmta02.westchester.pa.mail.comcast.net [76.96.62.24]) by pigeon.gentoo.org (Postfix) with ESMTP id 8C49BE0B2A for ; Sat, 14 Dec 2013 22:24:47 +0000 (UTC) Received: from omta03.westchester.pa.mail.comcast.net ([76.96.62.27]) by qmta02.westchester.pa.mail.comcast.net with comcast id 1Yx71n0030bG4ec51aQnFX; Sat, 14 Dec 2013 22:24:47 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta03.westchester.pa.mail.comcast.net with comcast id 1aQm1n00G152l3L3PaQmpW; Sat, 14 Dec 2013 22:24:47 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id D49EBD68B66; 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=fmF7YCOL1glDxYa0uK4pWsHww9FlwzBNOwis7HANqkk=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=D5XO8uaDIqZh2ilH/cCO3zBC+2L9eY3n12sR2FUrqCGbkEK/V7b++ps0xYh5YLKFe yK7mEWUTuNfV3f4BtKX1wxm+7ga2qFXVMRrT4Lhi+Z7vtLC4ryonm4PW7rZLwBtH7p Etht5pjdovVzN2QhoLNNvA60umita2KbPAmS2I8w= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v2 16/21] modules/generic_stage_target.py: Use 'devpts' instead of '/dev/pts' as the mountmap key Date: Sat, 14 Dec 2013 14:24:24 -0800 Message-Id: <96d279b815e6135ecdc2fd9c84cc9598be814901.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=CZP0LS40la3lNi6cOeL2aWE4a89Wg3JcW3ZEqxlpudk=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=cJ+JgnRfOjylTCFZNZwH5+YwmNFDb/+yR/6ogrl11apNJD0ahvEK8wAWx1Zrbaqrw 65whaL7IwL/8hGYxAQUaAVCNvqhHUQSnyE2gf8uvzfO7i7vLUVXx6Av2ByHdQ/q4w3 7V/wfyoiXgvEIbbs6cT2gsr937BTzMnacri+FbheondblMWxmfkoAy2vXat0Otp2W3 I2S9xjPFMBfuiFEZ+SOth+RoN/5AVL2lxyvNE2gMr6KrEKxVTp9KWrcGfxBkmrSpmt kj2iloBJLw+kHhjQMORkIKPd+ElUnX7buce04SM9sHhJrdhiThvouUALW98mvYpIr7 PkH2HKKE8RTaw== 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: 3879e956-fe55-4abb-bf2d-6af49b8d3054 X-Archives-Hash: ee2c979f5acb74c1c19f38d453f5bf3c 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 2426b12..f8dd352 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -180,10 +180,10 @@ class generic_stage_target(generic_target): "/usr/portage/distfiles":self.settings["distdir"],"/var/tmp/portage":"tmpfs"} else: self.mounts = ["proc", "dev", "distdir", "port_tmpdir"] - self.mountmap = {"proc":"/proc", "dev":"/dev", "/dev/pts":"/dev/pts",\ + self.mountmap = {"proc":"/proc", "dev":"/dev", "devpts":"/dev/pts", "distdir":self.settings["distdir"], "port_tmpdir":"tmpfs"} if os.uname()[0] == "Linux": - self.mounts.append("/dev/pts") + self.mounts.append("devpts") self.set_mounts() -- 1.8.3.2