From 3b6cba33bc4acff47b70642d2899e8c7dfd703cc Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Wed, 27 Dec 2006 18:06:43 +0000 Subject: [PATCH] Added patch from Mike Frysinger to change the SPARC personality check. git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@1202 d1e1f19c-881f-0410-ab34-b69fee027534 --- ChangeLog | 4 ++++ arch/sparc.py | 6 +++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2c07894d..153b0d2b 100644 --- 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 arch/sparc.py: + Added patch from Mike Frysinger to change the SPARC + personality check. + 27 Dec 2006; Chris Gianelloni targets/support/chroot-functions.sh, targets/support/livecdfs-update.sh: Fix the display manager sed lines and change the icon for the local Handbook diff --git a/arch/sparc.py b/arch/sparc.py index 58cb1d4a..ddb705c8 100644 --- a/arch/sparc.py +++ b/arch/sparc.py @@ -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" -- 2.26.2