2016-03-23 16:54:48 +00:00
|
|
|
<%page args="kernels, runtime_img, basearch, inroot, outroot, product, isolabel"/>
|
2013-12-12 22:15:13 +00:00
|
|
|
<%
|
|
|
|
configdir="tmp/config_files/aarch64"
|
|
|
|
PXEBOOTDIR="images/pxeboot"
|
|
|
|
KERNELDIR=PXEBOOTDIR
|
2015-02-27 20:00:44 +00:00
|
|
|
STAGE2IMG="images/install.img"
|
2014-11-05 03:07:57 +00:00
|
|
|
LORAXDIR="usr/share/lorax/"
|
2016-05-11 00:39:01 +00:00
|
|
|
|
2019-03-28 15:34:30 +00:00
|
|
|
import os
|
2016-05-11 00:39:01 +00:00
|
|
|
from os.path import basename
|
2019-03-28 15:34:30 +00:00
|
|
|
from pylorax.sysutils import joinpaths
|
|
|
|
|
|
|
|
# Test the runtime_img, if it is > 4GiB we need to set -iso-level to 3
|
|
|
|
if os.stat(joinpaths(inroot, runtime_img)).st_size >= 4*1024**3:
|
|
|
|
isoargs = "-iso-level 3"
|
|
|
|
else:
|
|
|
|
isoargs = ""
|
2013-12-12 22:15:13 +00:00
|
|
|
%>
|
|
|
|
|
2015-02-27 20:00:44 +00:00
|
|
|
mkdir images
|
|
|
|
install ${runtime_img} ${STAGE2IMG}
|
|
|
|
treeinfo stage2 mainimage ${STAGE2IMG}
|
2013-12-12 22:15:13 +00:00
|
|
|
|
|
|
|
## install kernels
|
|
|
|
mkdir ${KERNELDIR}
|
|
|
|
%for kernel in kernels:
|
|
|
|
## normal aarch64
|
|
|
|
installkernel images-${basearch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
|
|
installinitrd images-${basearch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
|
|
|
%endfor
|
|
|
|
|
|
|
|
#FIXME: this will need adjusted when we have a real bootloader.
|
|
|
|
## WHeeeeeeee, EFI.
|
|
|
|
## We could remove the basearch restriction someday..
|
|
|
|
<% efiargs=""; efigraft="" %>
|
2015-01-14 15:50:24 +00:00
|
|
|
%if exists("boot/efi/EFI/*/gcdaa64.efi"):
|
2013-12-12 22:15:13 +00:00
|
|
|
<%
|
2017-08-22 15:16:39 +00:00
|
|
|
efiarch32 = None
|
|
|
|
efiarch64 = 'AA64'
|
2013-12-12 22:15:13 +00:00
|
|
|
efigraft="EFI/BOOT={0}/EFI/BOOT".format(outroot)
|
|
|
|
images = ["images/efiboot.img"]
|
2016-05-11 00:39:01 +00:00
|
|
|
%>
|
|
|
|
%for img in images:
|
|
|
|
<%
|
2013-12-12 22:15:13 +00:00
|
|
|
efiargs += " -eltorito-alt-boot -e {0} -no-emul-boot".format(img)
|
|
|
|
efigraft += " {0}={1}/{0}".format(img,outroot)
|
2016-05-11 00:39:01 +00:00
|
|
|
%>
|
|
|
|
treeinfo images-${basearch} ${img|basename} ${img}
|
|
|
|
%endfor
|
2017-08-22 15:16:39 +00:00
|
|
|
<%include file="efi.tmpl" args="configdir=configdir, KERNELDIR=KERNELDIR, efiarch32=efiarch32, efiarch64=efiarch64, isolabel=isolabel"/>
|
2013-12-12 22:15:13 +00:00
|
|
|
%endif
|
|
|
|
|
2014-11-05 03:07:57 +00:00
|
|
|
# Create optional product.img and updates.img
|
2017-03-09 19:08:19 +00:00
|
|
|
<% filegraft=""; images=["product", "updates"] %>
|
2014-11-05 03:07:57 +00:00
|
|
|
%for img in images:
|
|
|
|
%if exists("%s/%s/" % (LORAXDIR, img)):
|
|
|
|
installimg ${LORAXDIR}/${img}/ images/${img}.img
|
2016-05-11 00:39:01 +00:00
|
|
|
treeinfo images-${basearch} ${img}.img images/${img}.img
|
2017-03-09 19:08:19 +00:00
|
|
|
<% filegraft += " images/{0}.img={1}/images/{0}.img".format(img, outroot) %>
|
2014-11-05 03:07:57 +00:00
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
Add ability for external templates to graft content into boot.iso
I originally added --add-template to support doing something similar
to pungi, which injects content into the system to be used by default.
However, this causes the content to be part of the squashfs, which
means PXE installations have to download significantly more data that
they may not need (if they actually want to pull the tree data from
the network, which is not an unusual case).
What I actually need is to be able to modify *both* the runtime image
and the arch-specific content. For the runtime, I need to change
/usr/share/anaconda/interactive-defaults.ks to point to the new
content. (Although, potentially we could patch Anaconda itself to
auto-detect an ostree repository configured in disk image, similar to
what it does for yum repositories)
For the arch-specfic image, I want to drop my content into the ISO
root.
So this patch adds --add-arch-template and --add-arch-template-var
in order to do the latter, while preserving the --add-template
to affect the runtime image.
Further, the templates will automatically graft in a directory named
"iso-graft/" from the working directory (if it exists).
(I suggest that external templates create a subdirectory named
"content" to avoid clashes with any future lorax work)
Thus, this will be used by the Atomic Host lorax templates to inject
content/repo, but could be used by e.g. pungi to add content/rpms as
well.
I tried to avoid code deduplication by creating a new template for the
product.img bits and this, but that broke because the parent boot.iso
code needs access to the `${imggraft}` variable. I think a real fix
here would involve turning the product.img, content/, *and* boot.iso
into a new template.
2015-03-17 21:26:21 +00:00
|
|
|
# Inherit iso-graft/ if it exists from external templates
|
|
|
|
<%
|
|
|
|
import os
|
|
|
|
if os.path.exists(workdir + "/iso-graft"):
|
2017-03-09 19:08:19 +00:00
|
|
|
filegraft += " " + workdir + "/iso-graft"
|
Add ability for external templates to graft content into boot.iso
I originally added --add-template to support doing something similar
to pungi, which injects content into the system to be used by default.
However, this causes the content to be part of the squashfs, which
means PXE installations have to download significantly more data that
they may not need (if they actually want to pull the tree data from
the network, which is not an unusual case).
What I actually need is to be able to modify *both* the runtime image
and the arch-specific content. For the runtime, I need to change
/usr/share/anaconda/interactive-defaults.ks to point to the new
content. (Although, potentially we could patch Anaconda itself to
auto-detect an ostree repository configured in disk image, similar to
what it does for yum repositories)
For the arch-specfic image, I want to drop my content into the ISO
root.
So this patch adds --add-arch-template and --add-arch-template-var
in order to do the latter, while preserving the --add-template
to affect the runtime image.
Further, the templates will automatically graft in a directory named
"iso-graft/" from the working directory (if it exists).
(I suggest that external templates create a subdirectory named
"content" to avoid clashes with any future lorax work)
Thus, this will be used by the Atomic Host lorax templates to inject
content/repo, but could be used by e.g. pungi to add content/rpms as
well.
I tried to avoid code deduplication by creating a new template for the
product.img bits and this, but that broke because the parent boot.iso
code needs access to the `${imggraft}` variable. I think a real fix
here would involve turning the product.img, content/, *and* boot.iso
into a new template.
2015-03-17 21:26:21 +00:00
|
|
|
%>
|
|
|
|
|
2017-03-09 19:08:19 +00:00
|
|
|
# Add the license files
|
2021-01-18 00:58:01 +00:00
|
|
|
%for f in glob("usr/share/licenses/*-release-common/*"):
|
2017-03-09 19:08:19 +00:00
|
|
|
install ${f} ${f|basename}
|
|
|
|
<% filegraft += " {0}={1}/{0}".format(basename(f), outroot) %>
|
|
|
|
%endfor
|
|
|
|
|
2015-01-14 15:50:24 +00:00
|
|
|
%if exists("boot/efi/EFI/*/gcdaa64.efi"):
|
2014-12-09 16:34:59 +00:00
|
|
|
## make boot.iso
|
2019-03-28 15:34:30 +00:00
|
|
|
runcmd xorrisofs ${isoargs} -o ${outroot}/images/boot.iso \
|
2018-04-26 16:52:07 +00:00
|
|
|
${efiargs} -R -J -V '${isolabel}' \
|
2016-03-14 23:41:09 +00:00
|
|
|
-graft-points \
|
2019-01-24 00:52:51 +00:00
|
|
|
.discinfo=${outroot}/.discinfo \
|
2014-12-09 16:34:59 +00:00
|
|
|
${KERNELDIR}=${outroot}/${KERNELDIR} \
|
2015-02-27 20:00:44 +00:00
|
|
|
${STAGE2IMG}=${outroot}/${STAGE2IMG} \
|
2017-03-09 19:08:19 +00:00
|
|
|
${efigraft} ${filegraft}
|
2014-12-09 16:34:59 +00:00
|
|
|
treeinfo images-${basearch} boot.iso images/boot.iso
|
|
|
|
%endif
|