bootimg: copy rootfs to ISO image

We are only copying the initrd right now.
This commit is contained in:
Samuel Ortiz 2008-10-27 13:43:38 +01:00
parent dae95a72e0
commit f19e4350c0
1 changed files with 4 additions and 0 deletions

View File

@ -83,6 +83,10 @@ build_boot_bin() {
install -m 0644 ${INITRD} ${ISODIR}/initrd
if [ -n "${ROOTFS}" ] && [ -s "${ROOTFS}" ]; then
install -m 0644 ${ROOTFS} ${ISODIR}/rootfs.img
fi
# And install the syslinux stuff
cp ${STAGING_DATADIR}/syslinux/isolinux.bin \
${ISODIR}