2019-03-29 18:10:01 +00:00
|
|
|
<%page args="kernels, runtime_img, basearch, inroot, outroot, product, isolabel, extra_boot_args"/>
|
2018-06-18 18:56:22 +00:00
|
|
|
<%
|
|
|
|
configdir="tmp/config_files/x86"
|
|
|
|
PXEBOOTDIR="images/pxeboot"
|
|
|
|
KERNELDIR=PXEBOOTDIR
|
2022-04-14 17:32:39 +00:00
|
|
|
GRUB2DIR="boot/grub2"
|
2018-06-18 18:56:22 +00:00
|
|
|
LIVEDIR="LiveOS"
|
|
|
|
LORAXDIR="usr/share/lorax/"
|
|
|
|
|
|
|
|
## 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)
|
|
|
|
|
2021-10-26 20:50:43 +00:00
|
|
|
import os
|
2018-06-18 18:56:22 +00:00
|
|
|
from os.path import basename
|
2021-10-26 20:50:43 +00:00
|
|
|
from pylorax.sysutils import joinpaths
|
2018-06-18 18:56:22 +00:00
|
|
|
|
2021-10-26 20:50:43 +00:00
|
|
|
# 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 = ""
|
2018-06-18 18:56:22 +00:00
|
|
|
%>
|
|
|
|
|
|
|
|
mkdir ${LIVEDIR}
|
|
|
|
install ${runtime_img} ${LIVEDIR}/squashfs.img
|
|
|
|
treeinfo stage2 mainimage ${LIVEDIR}/squashfs.img
|
|
|
|
|
|
|
|
## install kernels
|
|
|
|
mkdir ${KERNELDIR}
|
|
|
|
%for kernel in kernels:
|
|
|
|
%if kernel.flavor:
|
|
|
|
installkernel images-xen ${kernel.path} ${KERNELDIR}/vmlinuz-${kernel.flavor}
|
|
|
|
installinitrd images-xen ${kernel.initrd.path} ${KERNELDIR}/initrd-${kernel.flavor}.img
|
|
|
|
%else:
|
|
|
|
installkernel images-${basearch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
|
|
installinitrd images-${basearch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
|
|
|
%if basearch == 'x86_64':
|
|
|
|
treeinfo images-xen kernel ${KERNELDIR}/vmlinuz
|
|
|
|
treeinfo images-xen initrd ${KERNELDIR}/initrd.img
|
|
|
|
%endif
|
|
|
|
|
2022-04-14 17:32:39 +00:00
|
|
|
## configure grub2 config file
|
|
|
|
mkdir ${GRUB2DIR}
|
|
|
|
install ${configdir}/grub2-bios.cfg ${GRUB2DIR}/grub.cfg
|
|
|
|
replace @VERSION@ ${product.version} ${GRUB2DIR}/grub.cfg
|
|
|
|
replace @PRODUCT@ '${product.name}' ${GRUB2DIR}/grub.cfg
|
|
|
|
replace @KERNELPATH@ /${KERNELDIR}/vmlinuz ${GRUB2DIR}/grub.cfg
|
|
|
|
replace @INITRDPATH@ /${KERNELDIR}/initrd.img ${GRUB2DIR}/grub.cfg
|
2022-06-03 17:48:55 +00:00
|
|
|
replace @ISOLABEL@ '${isolabel}' ${GRUB2DIR}/grub.cfg
|
2022-04-14 17:32:39 +00:00
|
|
|
replace @ROOT@ 'root=live:CDLABEL=${isolabel|udev}' ${GRUB2DIR}/grub.cfg
|
|
|
|
replace @EXTRA@ '${extra_boot_args}' ${GRUB2DIR}/grub.cfg
|
|
|
|
|
|
|
|
|
2018-06-18 18:56:22 +00:00
|
|
|
## WHeeeeeeee, EFI.
|
2021-10-26 20:50:43 +00:00
|
|
|
<% efiargs=""; efigraft=""; efiarch32=None; efiarch64=None %>
|
2018-06-18 18:56:22 +00:00
|
|
|
%if exists("boot/efi/EFI/*/gcdia32.efi"):
|
|
|
|
<% efiarch32 = 'IA32' %>
|
|
|
|
%endif
|
|
|
|
%if exists("boot/efi/EFI/*/gcdx64.efi"):
|
|
|
|
<% efiarch64 = 'X64' %>
|
|
|
|
%endif
|
2022-10-18 20:04:26 +00:00
|
|
|
%if (efiarch32 or efiarch64):
|
2019-03-29 18:10:01 +00:00
|
|
|
<%include file="efi.tmpl" args="configdir=configdir, KERNELDIR=KERNELDIR, efiarch32=efiarch32, efiarch64=efiarch64, isolabel=isolabel, extra_boot_args=extra_boot_args"/>
|
2018-06-18 18:56:22 +00:00
|
|
|
%endif
|
|
|
|
|
|
|
|
# Create optional product.img and updates.img
|
|
|
|
<% filegraft=""; images=["product", "updates"]; compressargs=""; %>
|
|
|
|
%for img in images:
|
|
|
|
%if exists("%s/%s/" % (LORAXDIR, img)):
|
|
|
|
installimg ${compressargs} ${LORAXDIR}/${img}/ images/${img}.img
|
|
|
|
treeinfo images-${basearch} ${img}.img images/${img}.img
|
|
|
|
<% filegraft += " images/{0}.img={1}/images/{0}.img".format(img, outroot) %>
|
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
|
|
|
# Add the license files
|
|
|
|
%for f in glob("/usr/share/licenses/*-release/*"):
|
|
|
|
install ${f} ${f|basename}
|
|
|
|
<% filegraft += " {0}={1}/{0}".format(basename(f), outroot) %>
|
|
|
|
%endfor
|
|
|
|
|
2021-10-26 20:50:43 +00:00
|
|
|
# Add the livecd-iso-to-disk script if installed
|
|
|
|
<% f = "usr/bin/livecd-iso-to-disk" %>
|
|
|
|
%if exists(f):
|
|
|
|
install ${f} ${LIVEDIR}/${f|basename}
|
|
|
|
%endif
|
|
|
|
|
2022-04-14 17:32:39 +00:00
|
|
|
## Make images/eltoritio.img
|
|
|
|
runcmd grub2-mkimage -O i386-pc-eltorito -d ${inroot}/usr/lib/grub/i386-pc \
|
|
|
|
-o ${outroot}/images/eltorito.img \
|
|
|
|
-p /${GRUB2DIR} \
|
|
|
|
iso9660 biosdisk
|
|
|
|
treeinfo images-${basearch} eltorito.img images/eltorito.img
|
|
|
|
|
2018-06-18 18:56:22 +00:00
|
|
|
## make boot.iso
|
2021-10-26 20:50:43 +00:00
|
|
|
runcmd xorrisofs ${isoargs} -o ${outroot}/images/boot.iso \
|
2022-04-14 17:32:39 +00:00
|
|
|
-R -J -V '${isolabel}' \
|
|
|
|
--grub2-mbr ${inroot}/usr/lib/grub/i386-pc/boot_hybrid.img \
|
|
|
|
-partition_offset 16 \
|
|
|
|
-appended_part_as_gpt \
|
|
|
|
-append_partition 2 C12A7328-F81F-11D2-BA4B-00A0C93EC93B ${outroot}/images/efiboot.img \
|
|
|
|
-iso_mbr_part_type EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 \
|
|
|
|
-c boot.cat --boot-catalog-hide \
|
|
|
|
-b images/eltorito.img \
|
|
|
|
-no-emul-boot -boot-load-size 4 -boot-info-table --grub2-boot-info \
|
|
|
|
-eltorito-alt-boot \
|
|
|
|
-e '--interval:appended_partition_2:all::' -no-emul-boot \
|
2018-06-18 18:56:22 +00:00
|
|
|
-graft-points \
|
|
|
|
${KERNELDIR}=${outroot}/${KERNELDIR} \
|
|
|
|
${LIVEDIR}=${outroot}/${LIVEDIR} \
|
2022-04-14 17:32:39 +00:00
|
|
|
${filegraft} \
|
|
|
|
${GRUB2DIR}=${outroot}/${GRUB2DIR} \
|
|
|
|
${GRUB2DIR}/i386-pc=${inroot}/usr/lib/grub/i386-pc \
|
|
|
|
images/eltorito.img=${outroot}/images/eltorito.img \
|
|
|
|
EFI/BOOT=${outroot}/EFI/BOOT
|
2018-06-18 18:56:22 +00:00
|
|
|
treeinfo images-${basearch} boot.iso images/boot.iso
|