blob: 5b22e7f59f606075f20856b5d044b6376cb37c06 (
plain)
1
2
3
4
5
6
7
|
install_live() {
mount_iso
install -d "$KERNELDIR/void" "$DATADIR/void"
cp "$ISOMNT/LiveOS"/* "$DATADIR/void/"
cp "$ISOMNT/boot/vmlinuz" "$ISOMNT/boot/initrd" "$KERNELDIR/void"
umount_iso
}
|