Make sure we always have the images-xen section for x86.

The x86 architecture requires that we have the images-xen section
in .treeinfo even if we have no xen kernel.
This commit is contained in:
Martin Gracik 2010-02-25 15:17:39 +01:00
parent 38b6fce4e5
commit 6efaa3365c
1 changed files with 7 additions and 0 deletions

View File

@ -211,6 +211,13 @@ class Lorax(BaseLoraxClass):
"initrd": "images/pxeboot/{0}".format(initrdfile)}
self.treeinfo_add_section(self.conf.treeinfo, section, data)
if self.conf.basearch == "i386":
# add the xen section for x86
section = "images-xen"
data = {"kernel": "images/pxeboot/{0}".format(kernelfile),
"initrd": "images/pxeboot/{0}".format(initrdfile)}
self.treeinfo_add_section(self.conf.treeinfo, section, data)
# copy the kernel and initrd image to the isolinux directory
kdst = os.path.join(self.conf.isodir, kernelfile)
idst = os.path.join(self.conf.isodir, initrdfile)