2011-10-13 00:08:31 +00:00
|
|
|
<%page args="kernels, runtime_img, basearch, outroot, product, isolabel"/>
|
2011-05-09 14:47:25 +00:00
|
|
|
<%
|
2011-10-21 20:12:12 +00:00
|
|
|
configdir="tmp/config_files/x86"
|
2011-05-09 14:47:25 +00:00
|
|
|
SYSLINUXDIR="usr/share/syslinux"
|
|
|
|
PXEBOOTDIR="images/pxeboot"
|
|
|
|
BOOTDIR="isolinux"
|
|
|
|
KERNELDIR=PXEBOOTDIR
|
2011-10-11 18:58:30 +00:00
|
|
|
LIVEDIR="LiveOS"
|
2014-11-05 03:07:57 +00:00
|
|
|
LORAXDIR="usr/share/lorax/"
|
2011-05-09 14:47:25 +00:00
|
|
|
%>
|
|
|
|
|
2011-10-11 18:58:30 +00:00
|
|
|
mkdir ${LIVEDIR}
|
|
|
|
install ${runtime_img} ${LIVEDIR}/squashfs.img
|
2012-02-09 15:59:15 +00:00
|
|
|
treeinfo stage2 mainimage ${LIVEDIR}/squashfs.img
|
2011-06-23 00:22:24 +00:00
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## install bootloader and config files
|
|
|
|
mkdir ${BOOTDIR}
|
2011-05-09 14:47:25 +00:00
|
|
|
install ${SYSLINUXDIR}/isolinux.bin ${BOOTDIR}
|
|
|
|
install ${SYSLINUXDIR}/vesamenu.c32 ${BOOTDIR}
|
2011-10-21 20:12:12 +00:00
|
|
|
install ${configdir}/isolinux.cfg ${BOOTDIR}
|
|
|
|
install ${configdir}/boot.msg ${BOOTDIR}
|
2011-08-09 00:35:35 +00:00
|
|
|
install ${configdir}/grub.conf ${BOOTDIR}
|
2011-10-21 20:12:12 +00:00
|
|
|
install usr/share/anaconda/boot/syslinux-splash.png ${BOOTDIR}/splash.png
|
2012-02-10 21:29:30 +00:00
|
|
|
install boot/memtest* ${BOOTDIR}/memtest
|
2011-05-09 14:47:25 +00:00
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## configure bootloader
|
2011-05-10 22:21:18 +00:00
|
|
|
replace @VERSION@ ${product.version} ${BOOTDIR}/grub.conf ${BOOTDIR}/isolinux.cfg ${BOOTDIR}/*.msg
|
2012-03-07 10:27:11 +00:00
|
|
|
replace @PRODUCT@ '${product.name}' ${BOOTDIR}/grub.conf ${BOOTDIR}/isolinux.cfg ${BOOTDIR}/*.msg
|
2012-08-22 23:59:03 +00:00
|
|
|
replace @ROOT@ 'inst.stage2=hd:LABEL=${isolabel|udev}' ${BOOTDIR}/isolinux.cfg
|
2011-05-09 14:47:25 +00:00
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## install kernels
|
|
|
|
mkdir ${KERNELDIR}
|
2011-05-09 14:47:25 +00:00
|
|
|
%for kernel in kernels:
|
|
|
|
%if kernel.flavor:
|
2012-11-13 06:33:17 +00:00
|
|
|
## i386 PAE
|
2011-05-09 14:47:25 +00:00
|
|
|
installkernel images-xen ${kernel.path} ${KERNELDIR}/vmlinuz-${kernel.flavor}
|
|
|
|
installinitrd images-xen ${kernel.initrd.path} ${KERNELDIR}/initrd-${kernel.flavor}.img
|
2012-12-18 13:31:45 +00:00
|
|
|
%if doupgrade:
|
|
|
|
installupgradeinitrd images-xen ${kernel.upgrade.path} ${KERNELDIR}/upgrade-${kernel.flavor}.img
|
|
|
|
%endif
|
2011-05-09 14:47:25 +00:00
|
|
|
%else:
|
2012-11-13 06:33:17 +00:00
|
|
|
## normal i386, x86_64
|
2011-05-09 14:47:25 +00:00
|
|
|
installkernel images-${basearch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
|
|
installinitrd images-${basearch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
2012-12-18 13:31:45 +00:00
|
|
|
%if doupgrade:
|
|
|
|
installupgradeinitrd images-${basearch} ${kernel.upgrade.path} ${KERNELDIR}/upgrade.img
|
|
|
|
%endif
|
2011-05-09 14:47:25 +00:00
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
|
|
|
hardlink ${KERNELDIR}/vmlinuz ${BOOTDIR}
|
2011-05-10 22:21:18 +00:00
|
|
|
hardlink ${KERNELDIR}/initrd.img ${BOOTDIR}
|
2012-12-19 09:04:06 +00:00
|
|
|
%if doupgrade:
|
|
|
|
hardlink ${KERNELDIR}/upgrade.img ${BOOTDIR}
|
|
|
|
%endif
|
2011-05-09 14:47:25 +00:00
|
|
|
%if basearch == 'x86_64':
|
|
|
|
treeinfo images-xen kernel ${KERNELDIR}/vmlinuz
|
|
|
|
treeinfo images-xen initrd ${KERNELDIR}/initrd.img
|
2012-12-19 09:04:06 +00:00
|
|
|
%if doupgrade:
|
|
|
|
treeinfo images-xen upgrade ${KERNELDIR}/upgrade.img
|
|
|
|
%endif
|
2011-05-09 14:47:25 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
## WHeeeeeeee, EFI.
|
2015-04-13 17:30:24 +00:00
|
|
|
<% efiargs=""; efigraft=""; efihybrid=""; efiarch32=None; efiarch64=None %>
|
|
|
|
%if exists("boot/efi/EFI/*/gcdia32.efi"):
|
|
|
|
<% efiarch32 = 'IA32' %>
|
|
|
|
%endif
|
|
|
|
%if exists("boot/efi/EFI/*/gcdx64.efi"):
|
|
|
|
<% efiarch64 = 'X64' %>
|
|
|
|
%endif
|
|
|
|
%if efiarch32 or efiarch64:
|
2011-05-09 14:47:25 +00:00
|
|
|
<%
|
2011-10-31 18:59:35 +00:00
|
|
|
efigraft="EFI/BOOT={0}/EFI/BOOT".format(outroot)
|
2012-05-17 15:27:28 +00:00
|
|
|
images = ["images/efiboot.img"]
|
|
|
|
if domacboot:
|
|
|
|
images.append("images/macboot.img")
|
|
|
|
for img in images:
|
2011-10-31 18:59:35 +00:00
|
|
|
efiargs += " -eltorito-alt-boot -e {0} -no-emul-boot".format(img)
|
|
|
|
efigraft += " {0}={1}/{0}".format(img,outroot)
|
2012-05-18 10:48:43 +00:00
|
|
|
efihybrid = "--uefi --mac" if domacboot else "--uefi"
|
2011-05-09 14:47:25 +00:00
|
|
|
%>
|
2015-04-13 17:30:24 +00:00
|
|
|
<%include file="efi.tmpl" args="configdir=configdir, KERNELDIR=KERNELDIR, efiarch32=efiarch32, efiarch64=efiarch64, isolabel=isolabel"/>
|
2011-05-09 14:47:25 +00:00
|
|
|
%endif
|
|
|
|
|
2014-11-05 03:07:57 +00:00
|
|
|
# Create optional product.img and updates.img
|
|
|
|
<% imggraft=""; images=["product", "updates"] %>
|
|
|
|
%for img in images:
|
|
|
|
%if exists("%s/%s/" % (LORAXDIR, img)):
|
|
|
|
installimg ${LORAXDIR}/${img}/ images/${img}.img
|
|
|
|
<% imggraft += " images/{0}.img={1}/images/{0}.img".format(img, outroot) %>
|
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
Add ability for external templates to graft content into boot.iso (#1202278)
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.
Resolves: rhbz#1202278
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"):
|
|
|
|
imggraft += " " + workdir + "/iso-graft"
|
|
|
|
%>
|
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## make boot.iso
|
2011-05-10 22:21:18 +00:00
|
|
|
runcmd mkisofs -o ${outroot}/images/boot.iso \
|
2011-05-09 14:47:25 +00:00
|
|
|
-b ${BOOTDIR}/isolinux.bin -c ${BOOTDIR}/boot.cat \
|
2011-05-10 22:21:18 +00:00
|
|
|
-boot-load-size 4 -boot-info-table -no-emul-boot \
|
2011-10-13 00:08:31 +00:00
|
|
|
${efiargs} -R -J -V '${isolabel}' -T -graft-points \
|
2011-05-09 14:47:25 +00:00
|
|
|
${BOOTDIR}=${outroot}/${BOOTDIR} \
|
2011-05-12 17:34:02 +00:00
|
|
|
${KERNELDIR}=${outroot}/${KERNELDIR} \
|
2011-10-11 18:58:30 +00:00
|
|
|
${LIVEDIR}=${outroot}/${LIVEDIR} \
|
2014-11-05 03:07:57 +00:00
|
|
|
${efigraft} ${imggraft}
|
2011-08-29 20:29:43 +00:00
|
|
|
runcmd isohybrid ${efihybrid} ${outroot}/images/boot.iso
|
2011-05-09 14:47:25 +00:00
|
|
|
treeinfo images-${basearch} boot.iso images/boot.iso
|