projects
/
catalyst.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8b22743
)
support for sparc target
author
Daniel Robbins
<drobbins@gentoo.org>
Mon, 24 Nov 2003 21:46:19 +0000
(21:46 +0000)
committer
Daniel Robbins
<drobbins@gentoo.org>
Mon, 24 Nov 2003 21:46:19 +0000
(21:46 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@88
d1e1f19c
-881f-0410-ab34-
b69fee027534
modules/targets.py
patch
|
blob
|
history
diff --git
a/modules/targets.py
b/modules/targets.py
index f83be962a8b9adab3c3141f43a5257b20f9f6658..c4f2976f418dc20c5b5e88d53cacfd2fd7a38f7b 100644
(file)
--- 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]