Add the images-xen section to treeinfo on x86_64 (#683383)
This commit is contained in:
parent
7d9a728651
commit
ccd8a136b0
@ -429,6 +429,14 @@ class Lorax(BaseLoraxClass):
|
|||||||
data = {"initrd": "images/pxeboot/{0}".format(initrd.fname)}
|
data = {"initrd": "images/pxeboot/{0}".format(initrd.fname)}
|
||||||
treeinfo.add_section(section, data)
|
treeinfo.add_section(section, data)
|
||||||
|
|
||||||
|
# we need to have a xen section for x86_64
|
||||||
|
if self.basearch == "x86_64":
|
||||||
|
section = "images-xen"
|
||||||
|
data = {"kernel": "images/pxeboot/{0}".format(kernel.fname)}
|
||||||
|
treeinfo.add_section(section, data)
|
||||||
|
data = {"initrd": "images/pxeboot/{0}".format(initrd.fname)}
|
||||||
|
treeinfo.add_section(section, data)
|
||||||
|
|
||||||
# copy initrds to outputtree
|
# copy initrds to outputtree
|
||||||
shutil.copy2(initrds[0].fpath, self.outputtree.isolinuxdir)
|
shutil.copy2(initrds[0].fpath, self.outputtree.isolinuxdir)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user