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"
|
2011-05-09 14:47:25 +00:00
|
|
|
%>
|
|
|
|
|
2011-10-11 18:58:30 +00:00
|
|
|
mkdir ${LIVEDIR}
|
|
|
|
install ${runtime_img} ${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
|
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
|
|
|
|
replace @PRODUCT@ ${product.name} ${BOOTDIR}/grub.conf ${BOOTDIR}/isolinux.cfg ${BOOTDIR}/*.msg
|
2011-10-13 00:08:31 +00:00
|
|
|
replace @ROOT@ 'root=live:CDLABEL=${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:
|
|
|
|
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
|
|
|
|
|
|
|
|
hardlink ${KERNELDIR}/vmlinuz ${BOOTDIR}
|
2011-05-10 22:21:18 +00:00
|
|
|
hardlink ${KERNELDIR}/initrd.img ${BOOTDIR}
|
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
|
|
|
|
%endif
|
|
|
|
|
|
|
|
## WHeeeeeeee, EFI.
|
|
|
|
## We could remove the basearch restriction someday..
|
2011-08-29 20:29:43 +00:00
|
|
|
<% efiargs=""; efigraft=""; efihybrid="" %>
|
2011-05-09 14:47:25 +00:00
|
|
|
%if exists("boot/efi/EFI/redhat/grub.efi") and basearch != 'i386':
|
|
|
|
<%
|
|
|
|
efiarch = 'X64' if basearch=='x86_64' else 'IA32'
|
|
|
|
efiargs="-eltorito-alt-boot -e images/efiboot.img -no-emul-boot"
|
2011-05-12 17:34:02 +00:00
|
|
|
efigraft="EFI/BOOT={0}/EFI/BOOT images/efiboot.img={0}/images/efiboot.img".format(outroot)
|
2011-08-29 20:29:43 +00:00
|
|
|
efihybrid="-u"
|
2011-05-09 14:47:25 +00:00
|
|
|
%>
|
2011-08-09 00:35:35 +00:00
|
|
|
<%include file="efi.tmpl" args="configdir=configdir, KERNELDIR=KERNELDIR, efiarch=efiarch"/>
|
2011-05-09 14:47:25 +00:00
|
|
|
%endif
|
|
|
|
|
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} \
|
2011-05-09 14:47:25 +00:00
|
|
|
${efigraft}
|
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
|