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 66145138247 for ; Sun, 15 Dec 2013 04:01:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 415FDE0B36; Sun, 15 Dec 2013 04:00:59 +0000 (UTC) Received: from qmta14.westchester.pa.mail.comcast.net (qmta14.westchester.pa.mail.comcast.net [76.96.59.212]) by pigeon.gentoo.org (Postfix) with ESMTP id 82AA4E0B36 for ; Sun, 15 Dec 2013 04:00:58 +0000 (UTC) Received: from omta22.westchester.pa.mail.comcast.net ([76.96.62.73]) by qmta14.westchester.pa.mail.comcast.net with comcast id 1g081n0011ap0As5Eg0y78; Sun, 15 Dec 2013 04:00:58 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta22.westchester.pa.mail.comcast.net with comcast id 1g0x1n00G152l3L3ig0xs9; Sun, 15 Dec 2013 04:00:58 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id 2C0BED69973; Sat, 14 Dec 2013 20:00:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387080056; bh=7i/+KiIgjV8L06OcskWqZ6JjYlWDLruW4M+2H5YFWkg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=MaHCkmA7L3ucJvEOTgg+Qb2E10Xpx8YoXH2gKA859oQXsEi8ScZTlABQsnezDaP8F dRcBjV3XxEovX4asZkpMH/P6Yho00bHKZBF8vGVuACq5zmBqXYTKLlKQ5FHmzzb4tS BqJ1ijm800gsvQYH6Q0Hu9sQNLCoGMfbSiFwryVU= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3 12/19] modules/generic_stage_target.py: Use 'dev' instead of '/dev' as the mountmap key Date: Sat, 14 Dec 2013 20:00:38 -0800 Message-Id: X-Mailer: git-send-email 1.8.3.2 In-Reply-To: References: <20131215032258.GK25409@odin.tremily.us> In-Reply-To: References: DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=comcast.net; s=q20121106; t=1387080058; bh=UVR8dVeczkAgXqKFms5RsaYIsceyPX3E2hY6qU6S7Ic=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=X17SL52eWdM7ukO5K0btM/owoBlgEo+B8uKSSXsFYu6x1yaqHiWwR+r1othgSOOME 65CNdzCRrRDoaL4QaXU0iJ/fH3S6L0fMciw7jnqCfyF9a09GFpIQF28w/UVZod1avx d1FaclNdI3gyWz9YGhjyPhgLfnz0zqp0o+7dKVCfHq1ieFFuiO2hvREhvLPQyudBnb poOklHbyM4g782BYAlGZU1jwC/nWGTj2IXLy5K9clo+AJH1WXwJOWdSsgc2sMFrFCZ X7qa6Ie5kJvNxf3hrhxhuiEUbprrwkD9WNhlmE8vC5MKMDqPyb9pPG/G+l6IquyLiC AcaI/ME2TvK3A== 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: 8c5b0d5c-7be0-4d81-baa6-a5ada17356c9 X-Archives-Hash: ac4f4247fa77b6a69ca77ffce02c57ba From: Brian Dolbec W. Trevor King: Refactored Git history for Brian Dolbec's content changes. Signed-off-by: W. Trevor King Signed-off-by: Brian Dolbec --- 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 490430f..bf43eff 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -179,8 +179,8 @@ 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","/usr/portage/distfiles","/var/tmp/portage"] - self.mountmap = {"proc":"/proc", "/dev":"/dev", "/dev/pts":"/dev/pts",\ + self.mounts = ["proc", "dev","/usr/portage/distfiles", "/var/tmp/portage"] + self.mountmap = {"proc":"/proc", "dev":"/dev", "/dev/pts":"/dev/pts",\ "/usr/portage/distfiles":self.settings["distdir"],"/var/tmp/portage":"tmpfs"} if os.uname()[0] == "Linux": self.mounts.append("/dev/pts") -- 1.8.3.2