blob: 1e37ee262d5b2139dfc0353fd0fd1247d1ebdfd0 (
plain)
1
2
3
4
5
6
7
8
|
install_live() {
install -d "$KERNELDIR/mint/64"
cp "isofiles/$ISOFILE" "$DATADIR/mint/"
mount_iso
cp "$ISOMNT/casper/vmlinuz" "$ISOMNT/casper/initrd.lz" "$KERNELDIR/mint/64/"
umount_iso
}
|