----------------------------------------------------------------------
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@98
d1e1f19c-881f-0410-ab34-
b69fee027534
def register(foo):
"Inform main catalyst program of the contents of this plugin."
#power/ppc can't be used as a subarch name as it has a "/" in it and is used in filenames
- foo.update({"ppc":arch_ppc,"power/ppc":arch_power_ppc,"g3":arch_g3,"g4":arch_g4})
+ foo.update({"ppc":arch_ppc,"power-ppc":arch_power_ppc,"g3":arch_g3,"g4":arch_g4})
"sparc64" : ["sparc64"],
"ia64" : ["ia64"],
"alpha" : ["alpha"],
- "sparc" : ["sparc"]
+ "sparc" : ["sparc"],
+ "ppc" : ["ppc"]
}
machinemap={ "i386" : "x86",
"sparc64" : "sparc64",
"ia64" : "ia64",
"alpha" : "alpha",
- "sparc" : "sparc"
+ "sparc" : "sparc",
+ "ppc" : "ppc"
}
mymachine=os.uname()[4]