Added another fix from Andrew Gaffney <agaffney@gentoo.org> from bug #166294. This...
authorChris Gianelloni <wolf31o2@gentoo.org>
Mon, 12 Feb 2007 23:34:35 +0000 (23:34 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Mon, 12 Feb 2007 23:34:35 +0000 (23:34 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1215 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/generic_stage_target.py

index ad75b6ba73ff090b860a477cafededd5a1608da7..ca86afc707dae70c71e987c937d0bf22942087f7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
 # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
 # $Id: $
 
+  12 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org>
+  modules/generic_stage_target.py:
+  Added another fix from Andrew Gaffney <agaffney@gentoo.org> from bug
+  #166294. This one should fix the HPPA/PPC architectures.
+
   12 Feb 2007; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/support/chroot-functions.sh:
   Added patch from Andrew Gaffney <agaffney@gentoo.org> for bug #166420 to
index b9cb3c3fdd58bd9fcc265b361a91788d5a5c131f..64cf6965c650789b642ef2bdb399917f15ecba00 100644 (file)
@@ -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):