Added patch from Mike Frysinger <vapier@gentoo.org> to change the SPARC personality...
authorChris Gianelloni <wolf31o2@gentoo.org>
Wed, 27 Dec 2006 18:06:43 +0000 (18:06 +0000)
committerChris Gianelloni <wolf31o2@gentoo.org>
Wed, 27 Dec 2006 18:06:43 +0000 (18:06 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1202 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
arch/sparc.py

index 2c07894dab883c095b81375f64e0b81a906b85bc..153b0d2b8e6afab1244afc5fb43bd41a0799b7c0 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,10 @@
 # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
 # $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.664 2006/10/02 20:41:53 wolf31o2 Exp $
 
+  27 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org> arch/sparc.py:
+  Added patch from Mike Frysinger <vapier@gentoo.org> to change the SPARC
+  personality check.
+
   27 Dec 2006; Chris Gianelloni <wolf31o2@gentoo.org>
   targets/support/chroot-functions.sh, targets/support/livecdfs-update.sh:
   Fix the display manager sed lines and change the icon for the local Handbook
index 58cb1d4a0a8c365d20cd9e786249abfb9f12748c..ddb705c84f3cae8e50fd9af40d7c2ef604e3f10d 100644 (file)
@@ -9,9 +9,9 @@ class generic_sparc(builder.generic):
                builder.generic.__init__(self,myspec)
                self.settings["mainarch"]="sparc"
                if self.settings["hostarch"]=="sparc64":
-                       if not os.path.exists("/bin/sparc32"):
-                               raise CatalystError,"required /bin/sparc32 executable not found (\"emerge sparc-utils\" to fix.)"
-                       self.settings["CHROOT"]="/bin/sparc32 chroot"
+                       if not os.path.exists("/bin/linux32"):
+                               raise CatalystError,"required /bin/linux32 executable not found (\"emerge setarch\" to fix.)"
+                       self.settings["CHROOT"]="linux32 chroot"
                else:
                        self.settings["CHROOT"]="chroot"