projects
/
catalyst.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c77ef56
)
alpha, ia64 support
author
Daniel Robbins
<drobbins@gentoo.org>
Mon, 24 Nov 2003 21:50:26 +0000
(21:50 +0000)
committer
Daniel Robbins
<drobbins@gentoo.org>
Mon, 24 Nov 2003 21:50:26 +0000
(21:50 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@89
d1e1f19c
-881f-0410-ab34-
b69fee027534
modules/targets.py
patch
|
blob
|
history
diff --git
a/modules/targets.py
b/modules/targets.py
index c4f2976f418dc20c5b5e88d53cacfd2fd7a38f7b..933a9807ccf9863735c1fdc2afd17b722a449f83 100644
(file)
--- a/
modules/targets.py
+++ b/
modules/targets.py
@@
-24,7
+24,9
@@
class generic_stage_target(generic_target):
targetmap={ "x86" : ["x86"],
"amd64" : ["x86","amd64"],
- "sparc" : ["sparc"]
+ "sparc" : ["sparc"],
+ "ia64" : ["ia64"],
+ "alpha" : ["alpha"]
}
machinemap={ "i386" : "x86",
@@
-32,7
+34,9
@@
class generic_stage_target(generic_target):
"i586" : "x86",
"i686" : "x86",
"x86_64" : "amd64",
- "sparc64" : "sparc"
+ "sparc64" : "sparc",
+ "ia64" : "ia64",
+ "alpha" : "alpha"
}
mymachine=os.uname()[4]