2011-10-13 00:08:31 +00:00
|
|
|
<%page args="kernels, runtime_img, basearch, libdir, inroot, outroot, product, isolabel"/>
|
2011-05-09 14:47:25 +00:00
|
|
|
<%
|
2011-10-21 20:12:12 +00:00
|
|
|
configdir="tmp/config_files/ppc"
|
2011-05-09 14:47:25 +00:00
|
|
|
BOOTDIR="ppc"
|
2011-10-11 18:58:30 +00:00
|
|
|
LIVEDIR="LiveOS"
|
2011-05-09 14:47:25 +00:00
|
|
|
MACDIR=BOOTDIR+"/mac"
|
|
|
|
NETBOOTDIR="images/netboot"
|
|
|
|
|
|
|
|
WRAPPER="usr/sbin/wrapper"
|
2011-07-01 17:05:11 +00:00
|
|
|
WRAPPER_DATA="usr/"+libdir+"/kernel-wrapper"
|
|
|
|
|
2011-05-09 14:47:25 +00:00
|
|
|
bitsizes = set()
|
|
|
|
prepboot = ""
|
2011-11-16 20:02:43 +00:00
|
|
|
|
|
|
|
## NOTE: yaboot freaks out and stops parsing its config if it sees a '\',
|
|
|
|
## so we can't use the udev escape sequences in the root arg.
|
|
|
|
## Instead we'll just replace any non-ASCII characters in the isolabel
|
|
|
|
## with '_', which means we won't need any udev escapes.
|
|
|
|
isolabel = ''.join(ch if ch.isalnum() else '_' for ch in isolabel)
|
|
|
|
|
|
|
|
rootarg = "root=live:CDLABEL=%s" % isolabel
|
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-11-16 19:49:35 +00:00
|
|
|
## install bootloaders.
|
|
|
|
## NOTE: there's two different bootloader setups here:
|
|
|
|
## ppc/chrp: for normal PPC systems. needs 'addnote' run on yaboot.
|
|
|
|
## uses /etc/yaboot.conf, as is the default.
|
|
|
|
## ppc/mac: for PowerMacs. no 'addnote' (it breaks some Macs!)
|
|
|
|
## ofboot.b picks one of /ppc/ppc{32,64}/yaboot.conf for yaboot,
|
|
|
|
## thus automatically booting the correct kernel for the machine.
|
2011-08-09 01:11:28 +00:00
|
|
|
mkdir ${BOOTDIR}
|
2011-11-16 19:49:35 +00:00
|
|
|
## boot stuff for normal (CHRP/PREP) PPC systems
|
2011-08-09 00:35:35 +00:00
|
|
|
install ${configdir}/bootinfo.txt ${BOOTDIR}
|
2011-05-09 14:47:25 +00:00
|
|
|
install boot/efika.forth ${BOOTDIR}
|
2011-08-09 01:11:28 +00:00
|
|
|
mkdir ${BOOTDIR}/chrp
|
2011-05-09 14:47:25 +00:00
|
|
|
install usr/lib/yaboot/yaboot ${BOOTDIR}/chrp
|
2011-10-21 20:12:12 +00:00
|
|
|
runcmd ${inroot}/usr/lib/yaboot/addnote ${outroot}/${BOOTDIR}/chrp/yaboot
|
2011-11-16 19:49:35 +00:00
|
|
|
## special boot dir for PowerMacs
|
2011-05-09 14:47:25 +00:00
|
|
|
mkdir ${MACDIR}
|
|
|
|
install usr/lib/yaboot/yaboot ${MACDIR}
|
2011-08-09 00:35:35 +00:00
|
|
|
install ${configdir}/ofboot.b ${MACDIR}
|
2011-05-09 14:47:25 +00:00
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## NOTE: PPC is kind of funky. There's three possible "arch" setups here:
|
|
|
|
## ppc, ppc64, and 'hybrid' (ppc userspace, both ppc & ppc64 kernels).
|
|
|
|
|
|
|
|
## Install kernel and bootloader config (in separate places for each arch)
|
2011-05-09 14:47:25 +00:00
|
|
|
%for kernel in kernels:
|
|
|
|
<%
|
|
|
|
bits = 64 if kernel.arch == "ppc64" else 32
|
2011-10-21 20:12:12 +00:00
|
|
|
## separate dirs/images for each arch
|
2011-05-09 14:47:25 +00:00
|
|
|
KERNELDIR=BOOTDIR+"/ppc%s" % bits
|
|
|
|
NETIMG=NETBOOTDIR+"/ppc%s.img" % bits
|
|
|
|
bitsizes.add(bits)
|
|
|
|
%>
|
2011-10-21 20:12:12 +00:00
|
|
|
## install kernel
|
2011-07-05 23:37:26 +00:00
|
|
|
mkdir ${KERNELDIR} ${NETBOOTDIR}
|
2011-05-09 14:47:25 +00:00
|
|
|
installkernel images-${kernel.arch} ${kernel.path} ${KERNELDIR}/vmlinuz
|
|
|
|
installinitrd images-${kernel.arch} ${kernel.initrd.path} ${KERNELDIR}/initrd.img
|
|
|
|
|
2011-11-16 19:49:35 +00:00
|
|
|
## install arch-specific bootloader config
|
|
|
|
install ${configdir}/yaboot.conf.in ${KERNELDIR}/yaboot.conf
|
2011-08-09 00:04:05 +00:00
|
|
|
replace @BITS@ ${bits} ${KERNELDIR}/yaboot.conf
|
2012-03-07 10:27:11 +00:00
|
|
|
replace @PRODUCT@ '${product.name}' ${KERNELDIR}/yaboot.conf
|
2011-11-16 19:49:35 +00:00
|
|
|
replace @VERSION@ ${product.version} ${KERNELDIR}/yaboot.conf
|
|
|
|
replace @ROOT@ "${rootarg}" ${KERNELDIR}/yaboot.conf
|
2011-06-27 23:22:33 +00:00
|
|
|
|
2011-07-01 17:05:11 +00:00
|
|
|
## kernel-wrapper magic that makes the netboot combined ppc{32,64}.img
|
2011-07-05 23:37:26 +00:00
|
|
|
runcmd ${inroot}/${WRAPPER} -p of \
|
|
|
|
-D ${inroot}/${WRAPPER_DATA} \
|
|
|
|
-i ${outroot}/${KERNELDIR}/initrd.img \
|
|
|
|
${outroot}/${KERNELDIR}/vmlinuz \
|
|
|
|
-o ${outroot}/${NETIMG}
|
2011-07-01 17:05:11 +00:00
|
|
|
treeinfo images-${kernel.arch} zimage ${NETIMG}
|
2011-08-09 00:04:05 +00:00
|
|
|
## PReP is 32-bit only
|
2011-07-05 23:37:26 +00:00
|
|
|
%if bits == 32:
|
|
|
|
## Yes, this is supposed to be a relative path
|
2011-05-09 14:47:25 +00:00
|
|
|
<% prepboot="-prep-boot " + NETIMG %>
|
|
|
|
%endif
|
|
|
|
%endfor
|
|
|
|
|
2011-11-16 19:49:35 +00:00
|
|
|
## choose correct yaboot.conf
|
2011-08-09 01:11:28 +00:00
|
|
|
mkdir etc
|
2011-05-09 14:47:25 +00:00
|
|
|
%if len(bitsizes) == 2:
|
2011-11-16 19:49:35 +00:00
|
|
|
## both kernels means hybrid - use the magic hybrid config
|
|
|
|
install ${configdir}/yaboot.conf.3264 etc/yaboot.conf
|
|
|
|
replace @PRODUCT@ ${product.name} etc/yaboot.conf
|
|
|
|
replace @VERSION@ ${product.version} etc/yaboot.conf
|
|
|
|
replace @ROOT@ "${rootarg}" etc/yaboot.conf
|
2011-05-09 14:47:25 +00:00
|
|
|
%else:
|
2011-11-16 19:49:35 +00:00
|
|
|
## single arch - use the arch-specific yaboot.conf from above
|
2011-05-09 14:47:25 +00:00
|
|
|
copy ${KERNELDIR}/yaboot.conf etc/yaboot.conf
|
|
|
|
%endif
|
|
|
|
|
2011-10-21 20:12:12 +00:00
|
|
|
## make boot.iso
|
2011-05-09 14:47:25 +00:00
|
|
|
runcmd mkisofs -o ${outroot}/images/boot.iso -chrp-boot -U \
|
|
|
|
${prepboot} -part -hfs -T -r -l -J \
|
2011-10-13 00:08:31 +00:00
|
|
|
-A "${product.name} ${product.version}" -sysid PPC -V '${isolabel}' \
|
2011-05-09 14:47:25 +00:00
|
|
|
-volset "${product.version}" -volset-size 1 -volset-seqno 1 \
|
2011-07-26 00:09:54 +00:00
|
|
|
-hfs-volid ${product.version} -hfs-bless ${outroot}/${MACDIR} \
|
2011-08-09 01:11:28 +00:00
|
|
|
-map ${inroot}/${configdir}/mapping \
|
2011-07-26 00:09:54 +00:00
|
|
|
-no-desktop -allow-multidot -graft-points \
|
|
|
|
etc=${outroot}/etc \
|
|
|
|
${BOOTDIR}=${outroot}/${BOOTDIR} \
|
|
|
|
${NETBOOTDIR}=${outroot}/${NETBOOTDIR} \
|
2011-10-11 18:58:30 +00:00
|
|
|
${LIVEDIR}=${outroot}/${LIVEDIR}
|
2011-07-05 23:37:26 +00:00
|
|
|
|
2011-11-16 19:49:35 +00:00
|
|
|
%for kernel in kernels:
|
2011-05-09 14:47:25 +00:00
|
|
|
treeinfo images-${kernel.arch} boot.iso images/boot.iso
|
2011-11-16 19:49:35 +00:00
|
|
|
%endfor
|