From: Daniel Robbins Date: Mon, 24 Nov 2003 21:46:19 +0000 (+0000) Subject: support for sparc target X-Git-Tag: CATALYST_1_0_1~152 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=c77ef5632cd29600ec30bca545792ee866322297;p=catalyst.git support for sparc target git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@88 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/modules/targets.py b/modules/targets.py index f83be962..c4f2976f 100644 --- a/modules/targets.py +++ b/modules/targets.py @@ -23,14 +23,16 @@ class generic_stage_target(generic_target): # x86 or amd64. targetmap={ "x86" : ["x86"], - "amd64" : ["x86","amd64"] + "amd64" : ["x86","amd64"], + "sparc" : ["sparc"] } machinemap={ "i386" : "x86", "i486" : "x86", "i586" : "x86", "i686" : "x86", - "x86_64" : "amd64" + "x86_64" : "amd64", + "sparc64" : "sparc" } mymachine=os.uname()[4]