Have to call os.makedirs
This commit is contained in:
parent
84f00068e3
commit
1de4bb132c
@ -157,9 +157,8 @@ class PPC(object):
|
|||||||
# create ppc dir
|
# create ppc dir
|
||||||
os.makedirs(joinpaths(self.outputroot, ppcdir))
|
os.makedirs(joinpaths(self.outputroot, ppcdir))
|
||||||
|
|
||||||
if (kernel_arch == "ppc"):
|
# create mac dir
|
||||||
# create mac dir
|
os.makedirs(joinpaths(self.outputroot, MACDIR))
|
||||||
os.makedirs(joinpaths(self.outputroot, MACDIR))
|
|
||||||
|
|
||||||
# create netboot dir
|
# create netboot dir
|
||||||
os.makedirs(joinpaths(self.outputroot, NETBOOTDIR))
|
os.makedirs(joinpaths(self.outputroot, NETBOOTDIR))
|
||||||
@ -744,7 +743,7 @@ class SPARC(object):
|
|||||||
def create_boot(self, efiboot=None):
|
def create_boot(self, efiboot=None):
|
||||||
# create isopath dir
|
# create isopath dir
|
||||||
isopathdir = joinpaths(self.outputroot, ISOPATHDIR)
|
isopathdir = joinpaths(self.outputroot, ISOPATHDIR)
|
||||||
makedirs(isopathdir)
|
os.makedirs(isopathdir)
|
||||||
|
|
||||||
# copy sparc dir to isopath dir
|
# copy sparc dir to isopath dir
|
||||||
shutil.copytree(joinpaths(self.outputroot, SPARCDIR),
|
shutil.copytree(joinpaths(self.outputroot, SPARCDIR),
|
||||||
|
Loading…
Reference in New Issue
Block a user