From 97f34332a7cee1b8fbd1c97f816b74a456b43827 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Mon, 12 Feb 2007 23:34:35 +0000 Subject: [PATCH] Added another fix from Andrew Gaffney from bug #166294. This one should fix the HPPA/PPC architectures. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1215 d1e1f19c-881f-0410-ab34-b69fee027534 --- ChangeLog | 5 +++++ modules/generic_stage_target.py | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index ad75b6ba..ca86afc7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,11 @@ # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 # $Id: $ + 12 Feb 2007; Chris Gianelloni + modules/generic_stage_target.py: + Added another fix from Andrew Gaffney from bug + #166294. This one should fix the HPPA/PPC architectures. + 12 Feb 2007; Chris Gianelloni targets/support/chroot-functions.sh: Added patch from Andrew Gaffney for bug #166420 to diff --git a/modules/generic_stage_target.py b/modules/generic_stage_target.py index b9cb3c3f..64cf6965 100644 --- a/modules/generic_stage_target.py +++ b/modules/generic_stage_target.py @@ -41,10 +41,10 @@ class generic_stage_target(generic_target): "s390" : "s390", "ppc" : "ppc", "ppc64" : "ppc64", - "powerpc" : "powerpc", - "powerpc64" : "powerpc64", - "parisc" : "parisc", - "parisc64" : "parisc", + "powerpc" : "ppc", + "powerpc64" : "ppc64", + "parisc" : "hppa", + "parisc64" : "hppa", "hppa" : "hppa", "hppa64" : "hppa", "mips" : "mips", @@ -54,7 +54,7 @@ class generic_stage_target(generic_target): "armeb" : "arm", "armv5b" : "arm" } - + if self.settings.has_key("chost"): hostmachine = self.settings["chost"].split("-")[0] if not machinemap.has_key(hostmachine): -- 2.26.2