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 0126A138247 for ; Sun, 15 Dec 2013 04:01:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F3427E0B5F; Sun, 15 Dec 2013 04:01:08 +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 7D570E0B5F for ; Sun, 15 Dec 2013 04:00:58 +0000 (UTC) Received: from omta02.westchester.pa.mail.comcast.net ([76.96.62.19]) by qmta05.westchester.pa.mail.comcast.net with comcast id 1fzz1n0060QuhwU55g0yEp; Sun, 15 Dec 2013 04:00:58 +0000 Received: from odin.tremily.us ([24.18.63.50]) by omta02.westchester.pa.mail.comcast.net with comcast id 1g0x1n002152l3L3Ng0x3w; Sun, 15 Dec 2013 04:00:58 +0000 Received: by odin.tremily.us (Postfix, from userid 1000) id F174CD6996E; Sat, 14 Dec 2013 20:00:55 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=tremily.us; s=odin; t=1387080056; bh=Fhzk5cNcAeMtOmA8zbRXmRxLXHhNXpvMw/+DMPKo6Ug=; h=From:To:Cc:Subject:Date:In-Reply-To:References:In-Reply-To: References; b=opplT5d6DBmyWPC6b4r9ynx5Ee0cbXmdQJaI+Y9bMHieBos7CVQ8FrKOhKK79+Kzg qfnJL56ioz9YuVofMM1z2tTyw4iwL4ABgNjD4yjnZSH+qfAFECDMhy8v835j8eUWsl urB7dhaL3ua3SgpqYEWMkTBUK4/g5TLJdYuL9r6o= From: "W. Trevor King" To: Catalyst Cc: Brian Dolbec , "W. Trevor King" Subject: [gentoo-catalyst] [PATCH v3 11/19] modules/generic_stage_target.py: Use 'proc' instead of '/proc' as the mountmap key Date: Sat, 14 Dec 2013 20:00:37 -0800 Message-Id: <0d2b26f6e90c963139cff227ce146d2605265c26.1387079534.git.wking@tremily.us> 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=3H1hrlkelUrXdK353GaJXg6zda8O+WJl6kHpejiKEaE=; h=Received:Received:Received:From:To:Subject:Date:Message-Id; b=tMvTRW2oxhIuyRPtXzhLz3v/z/5rS1gFTIzQ+r+zIea4lXVAxL/Vs5io2H8Lhe3mn YhcSmz9Y92niiOlnxqRkhZDlPhl7obg1GRIP3bzuYzkCZkJDbPkN7uKOwWiz4E8W6n kgVKzVGhexurie3ZXLz6hG8wW2+bBsal1uXSsljGOTApWacDZZgnNhSfAkV8GAU/ol cNOOfSG0TwtBafS8tOq9F+7gIoHT6o8JediMgP9dCyRzMfqPNGYs/cU1YjODg8Ku2+ JHuJNrmimi7rpxmPdDPkD++KN0gIorknpmbyN9kiPEJETXHC8GdYtLqc8FuLxpRYUj zLU2iF7bssS8w== 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: 2e4d2bce-b6e7-4e60-9950-7a86f8f2713f X-Archives-Hash: 65e6f3d8cb2696f16cff29ee2cc5cd60 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 a68b356..490430f 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