Fix magic and mapping paths

This commit is contained in:
Martin Gracik 2011-03-14 13:49:20 +01:00
parent fdbf53227e
commit 55fd24ea86
1 changed files with 2 additions and 3 deletions

View File

@ -329,11 +329,10 @@ class PPC(object):
"-sysid", "PPC", "-V", '"PBOOT"',
"-volset", '"%s"' % self.version, "-volset-size", "1",
"-volset-seqno", "1"] + macboot + \
["-map", MAPPING, "-magic", MAGIC,
["-map", joinpaths(self.installtree.root, MAPPING),
"-magic", joinpaths(self.installtree.root, MAGIC),
"-no-desktop", "-allow-multidot", "-graft-points", isopathdir]
logger.debug("running: %s" % cmd)
p = subprocess.Popen(cmd, stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
p.wait()