diff --git a/share/templates.d/99-generic/aarch64.tmpl b/share/templates.d/99-generic/aarch64.tmpl index 10b8c8c6..35a1cdd3 100644 --- a/share/templates.d/99-generic/aarch64.tmpl +++ b/share/templates.d/99-generic/aarch64.tmpl @@ -70,6 +70,7 @@ mkdir ${KERNELDIR} runcmd xorrisofs -o ${outroot}/images/boot.iso \ ${efiargs} -R -J -V '${isolabel}' \ -graft-points \ + .discinfo=${outroot}/.discinfo \ ${KERNELDIR}=${outroot}/${KERNELDIR} \ ${STAGE2IMG}=${outroot}/${STAGE2IMG} \ ${efigraft} ${filegraft} diff --git a/share/templates.d/99-generic/arm.tmpl b/share/templates.d/99-generic/arm.tmpl index ac9deaca..a70e874f 100644 --- a/share/templates.d/99-generic/arm.tmpl +++ b/share/templates.d/99-generic/arm.tmpl @@ -87,6 +87,7 @@ treeinfo ${basearch} platforms ${platforms} runcmd xorrisofs -o ${outroot}/images/boot.iso \ ${efiargs} -R -J -V '${isolabel}' \ -graft-points \ + .discinfo=${outroot}/.discinfo \ ${KERNELDIR}=${outroot}/${KERNELDIR} \ ${STAGE2IMG}=${outroot}/${STAGE2IMG} \ ${efigraft} ${filegraft} diff --git a/share/templates.d/99-generic/ppc64le.tmpl b/share/templates.d/99-generic/ppc64le.tmpl index bc155658..676b2f01 100644 --- a/share/templates.d/99-generic/ppc64le.tmpl +++ b/share/templates.d/99-generic/ppc64le.tmpl @@ -88,6 +88,7 @@ runcmd xorrisofs -v -U -J -R \ -hfs-volid ${product.version} \ -chrp-boot -map ${inroot}/${configdir}/mapping \ -no-desktop -allow-multidot -graft-points \ + .discinfo=${outroot}/.discinfo \ ${BOOTDIR}=${outroot}/${BOOTDIR} \ ${GRUBDIR}=${outroot}/${GRUBDIR} \ ${STAGE2IMG}=${outroot}/${STAGE2IMG} ${filegraft} diff --git a/share/templates.d/99-generic/s390.tmpl b/share/templates.d/99-generic/s390.tmpl index 8e745409..1cc80f3f 100644 --- a/share/templates.d/99-generic/s390.tmpl +++ b/share/templates.d/99-generic/s390.tmpl @@ -72,6 +72,7 @@ runcmd xorrisofs -o ${outroot}/images/boot.iso \ -b ${BOOTDIR}/cdboot.img -c ${BOOTDIR}/boot.cat \ -boot-load-size 4 -no-emul-boot \ -R -J -V '${isolabel}' -graft-points \ + .discinfo=${outroot}/.discinfo \ ${BOOTDIR}=${outroot}/${BOOTDIR} \ ${filegraft} treeinfo images-${basearch} boot.iso images/boot.iso diff --git a/share/templates.d/99-generic/x86.tmpl b/share/templates.d/99-generic/x86.tmpl index e3a78bd0..1a14eb84 100644 --- a/share/templates.d/99-generic/x86.tmpl +++ b/share/templates.d/99-generic/x86.tmpl @@ -119,6 +119,7 @@ runcmd xorrisofs -o ${outroot}/images/boot.iso \ -boot-load-size 4 -boot-info-table -no-emul-boot \ ${efiargs} -R -J -V '${isolabel}' \ -graft-points \ + .discinfo=${outroot}/.discinfo \ ${STAGE2IMG}=${outroot}/${STAGE2IMG} \ ${BOOTDIR}=${outroot}/${BOOTDIR} \ ${KERNELDIR}=${outroot}/${KERNELDIR} \