fix missing self.root in create_runtime()
This commit is contained in:
parent
bfc8dcdd7a
commit
07695dff71
@ -135,7 +135,7 @@ class RuntimeBuilder(object):
|
|||||||
workdir = joinpaths(outdir, "runtime-workdir")
|
workdir = joinpaths(outdir, "runtime-workdir")
|
||||||
fssize = 2 * (1024*1024*1024) # 2GB sparse file compresses down to nothin'
|
fssize = 2 * (1024*1024*1024) # 2GB sparse file compresses down to nothin'
|
||||||
os.makedirs(joinpaths(workdir, "LiveOS"))
|
os.makedirs(joinpaths(workdir, "LiveOS"))
|
||||||
imgutils.mkext4img(self.root, joinpaths(workdir, "LiveOS/rootfs.img"),
|
imgutils.mkext4img(self.vars.root, joinpaths(workdir, "LiveOS/rootfs.img"),
|
||||||
label="Anaconda", size=fssize)
|
label="Anaconda", size=fssize)
|
||||||
# squash the live rootfs and clean up workdir
|
# squash the live rootfs and clean up workdir
|
||||||
imgutils.mksquashfs(workdir, joinpaths(outdir, runtime))
|
imgutils.mksquashfs(workdir, joinpaths(outdir, runtime))
|
||||||
|
Loading…
Reference in New Issue
Block a user