blob: e3b7d15d6476f212c1da6b48a8835eb7ff248a9f [file] [log] [blame]
#!/bin/bash
set -e
cat << EOF > $target/etc/fstab
/dev/disk/by-partlabel/rootfs / ext4 rw,relatime,data=ordered 0 1
EOF
if ifclass INSTALLER; then
# no need to resize rootfs for SD card boot
rm -f $target/lib/systemd/system/resize-helper.service
# needed by GUI installer
cat << EOF >> $target/etc/fstab
/dev/mmcblk1p9 /mnt vfat defaults 0 0
EOF
fi
# In case initrd doesn't exist, create it, else update
if [ -f $target/boot/initrd.img-${KVERS} ]
then
chroot $target /usr/sbin/update-initramfs -u -k ${KVERS}
else
chroot $target /usr/sbin/update-initramfs -c -k ${KVERS}
fi
OUT=$FAI/out
mkdir -p $OUT
cp $target/boot/vmlinuz-${KVERS} $OUT/
cp $target/usr/lib/linux-image-${KVERS}/$fdtfile $OUT/
cp $target/boot/initrd.img-${KVERS} $OUT/
cp $target/boot/config-${KVERS} $OUT/
cp $target/boot/System.map-${KVERS} $OUT/