diff options
author | Iru Cai <mytbk920423@gmail.com> | 2016-08-21 21:24:56 +0800 |
---|---|---|
committer | Iru Cai <mytbk920423@gmail.com> | 2016-08-21 21:24:56 +0800 |
commit | 275b9e40cb33bf543bda1644ced74bf5b775a1a0 (patch) | |
tree | a1944213cb04a8f585e2b10ea5dec3d0f5e0edfa /distro/mint/64/install.sh | |
parent | 40900cfbc2a0ee3530736ef246654a1bf9f61b12 (diff) | |
download | liveusb-builder-275b9e40cb33bf543bda1644ced74bf5b775a1a0.tar.xz |
distro/mint: move mint/64/*/install.sh to mint/64/install.sh
all these install.sh for different desktops are the same, so move to a
common directory.
Diffstat (limited to 'distro/mint/64/install.sh')
-rw-r--r-- | distro/mint/64/install.sh | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/distro/mint/64/install.sh b/distro/mint/64/install.sh new file mode 100644 index 0000000..4960d7b --- /dev/null +++ b/distro/mint/64/install.sh @@ -0,0 +1,8 @@ +install_live() { + install -d "$KERNELDIR/mint/64" "$DATADIR/mint" + cp "isofiles/$ISOFILE" "$DATADIR/mint/" + mount_iso + cp "$ISOMNT/casper/vmlinuz" "$ISOMNT/casper/initrd.lz" "$KERNELDIR/mint/64/" + umount_iso +} + |