2014-03-25 20:35:31 +00:00
|
|
|
<%page args="kernels, runtime_img, basearch, libdir, inroot, outroot, product, isolabel"/>
|
|
|
|
<%
|
|
|
|
configdir="tmp/config_files/ppc"
|
|
|
|
BOOTDIR="ppc"
|
|
|
|
GRUBDIR="boot/grub"
|
2015-02-27 20:00:44 +00:00
|
|
|
STAGE2IMG="images/install.img"
|
2014-11-05 03:07:57 +00:00
|
|
|
LORAXDIR="usr/share/lorax/"
|
2014-03-25 20:35:31 +00:00
|
|
|
|
2019-03-13 16:06:04 +00:00
|
|
|
## Don't allow spaces or escape characters in the iso label
|
|
|
|
def valid_label(ch):
|
|
|
|
return ch.isalnum() or ch == '_'
|
|
|
|
|
|
|
|
isolabel = ''.join(ch if valid_label(ch) else '-' for ch in isolabel)
|
2014-03-25 20:35:31 +00:00
|
|
|
|
2019-03-28 15:34:30 +00:00
|
|
|
import os
|
2017-03-09 19:08:19 +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 = ""
|
2014-03-25 20:35:31 +00:00
|
|
|
%>
|
|
|
|
|
2015-02-27 20:00:44 +00:00
|
|
|
mkdir images
|
|
|
|
install ${runtime_img} ${STAGE2IMG}
|
|
|
|
treeinfo stage2 mainimage ${STAGE2IMG}
|
2014-03-25 20:35:31 +00:00
|
|
|
|
|
|
|
## install the bootloaders
|
|
|
|
## ppc/chrp: for normal PPC systems.
|
|
|
|
## uses /ppc/bootinfo.txt in the iso root
|
|
|
|
## uses /boot/grub/grub.cfg in the iso root
|
|
|
|
mkdir ${BOOTDIR}
|
|
|
|
## boot stuff for normal (CHRP/PREP) PPC systems
|
|
|
|
install ${configdir}/bootinfo.txt ${BOOTDIR}
|
|
|
|
|
|
|
|
mkdir ${GRUBDIR}/powerpc-ieee1275
|
|
|
|
## "()" means the current device to grub2
|
|
|
|
runcmd grub2-mkimage --format=powerpc-ieee1275 --directory=/usr/lib/grub/powerpc-ieee1275 --prefix="()/"${GRUBDIR} \
|
|
|
|
--output=${outroot}/${GRUBDIR}/powerpc-ieee1275/core.elf iso9660 ext2 ofnet net tftp http
|
|
|
|
install /usr/lib/grub/powerpc-ieee1275/*.mod ${GRUBDIR}/powerpc-ieee1275
|
|
|
|
install /usr/lib/grub/powerpc-ieee1275/*.lst ${GRUBDIR}/powerpc-ieee1275
|
|
|
|
|
|
|
|
install ${configdir}/grub.cfg.in ${GRUBDIR}/grub.cfg
|
|
|
|
replace @PRODUCT@ '${product.name}' ${GRUBDIR}/grub.cfg
|
|
|
|
replace @VERSION@ ${product.version} ${GRUBDIR}/grub.cfg
|
2019-01-08 13:12:26 +00:00
|
|
|
replace @ROOT@ 'inst.stage2=hd:LABEL=${isolabel|udev}' ${GRUBDIR}/grub.cfg
|
2014-03-25 20:35:31 +00:00
|
|
|
|
|
|
|
## Install kernel and bootloader config (in separate places for each arch)
|
|
|
|
%for kernel in kernels:
|
|
|
|
<%
|
|
|
|
bits = 64
|
|
|
|
## separate dirs/images for each arch
|
|
|
|
KERNELDIR=BOOTDIR+"/ppc%s" % bits
|
|
|
|
%>
|
|
|
|
## install kernel
|
|
|
|
mkdir ${KERNELDIR}
|
|
|
|
installkernel images-${kernel.arch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
|
|
installinitrd images-${kernel.arch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
|
|
|
|
|
|
|
treeinfo images-${kernel.arch} zimage
|
|
|
|
%endfor
|
|
|
|
|
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
|
|
|
|
|
2014-11-05 03:07:57 +00:00
|
|
|
## make boot.iso
|
2019-03-28 15:34:30 +00:00
|
|
|
runcmd xorrisofs -v -U -J -R ${isoargs} \
|
2014-03-25 20:35:31 +00:00
|
|
|
-o ${outroot}/images/boot.iso \
|
2019-02-12 18:14:32 +00:00
|
|
|
-r -l -sysid PPC \
|
2014-03-25 20:35:31 +00:00
|
|
|
-A "${product.name} ${product.version}" -V '${isolabel}' \
|
|
|
|
-volset "${product.version}" -volset-size 1 -volset-seqno 1 \
|
2019-02-12 18:14:32 +00:00
|
|
|
-chrp-boot \
|
|
|
|
-graft-points \
|
2019-01-24 00:52:51 +00:00
|
|
|
.discinfo=${outroot}/.discinfo \
|
2014-03-25 20:35:31 +00:00
|
|
|
${BOOTDIR}=${outroot}/${BOOTDIR} \
|
|
|
|
${GRUBDIR}=${outroot}/${GRUBDIR} \
|
2017-03-09 19:08:19 +00:00
|
|
|
${STAGE2IMG}=${outroot}/${STAGE2IMG} ${filegraft}
|
2014-03-25 20:35:31 +00:00
|
|
|
|
|
|
|
%for kernel in kernels:
|
|
|
|
treeinfo images-${kernel.arch} boot.iso images/boot.iso
|
|
|
|
%endfor
|