1350cd028f
TreeBuilder uses templates full of commands (like ramdisk.ltmpl) to create the output tree and boot images. There are 4 arch-specific templates, plus a bonus EFI template which can handle EFI image creation for any arch that implements EFI.
27 lines
853 B
Cheetah
27 lines
853 B
Cheetah
<%
|
|
ANABOOTDIR="usr/share/anaconda/boot"
|
|
BOOTDIR="boot"
|
|
KERNELDIR=BOOTDIR
|
|
%>
|
|
|
|
install boot/*.b ${BOOTDIR}
|
|
install ${ANABOOTDIR}/silo.conf ${BOOTDIR}
|
|
install ${ANABOOTDIR}/boot.msg ${BOOTDIR}/boot.msg
|
|
|
|
replace %VERSION% ${product.version} ${BOOTDIR}/boot.msg
|
|
replace %PRODUCT% ${product.name} ${BOOTDIR}/boot.msg
|
|
|
|
%for kernel in kernels:
|
|
installkernel images-${basearch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
installinitrd images-${basearch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
|
%endfor
|
|
|
|
runcmd mkisofs -R -J -T -G /${BOOTDIR}/isofs.b -B ... \
|
|
-s /${BOOTDIR}/silo.conf -r -V "PBOOT" \
|
|
-A "${product.name} ${product.version}" \
|
|
-x Fedora -x repodata \
|
|
-sparc-label "${product.name} ${product.version} Boot Disc" \
|
|
-o ${outroot}/images/boot.iso \
|
|
-graft-points boot=${BOOTDIR}
|
|
treeinfo images-${basearch} boot.iso images/boot.iso
|