summaryrefslogtreecommitdiff
path: root/lx-trainer-vm/update-home.sh
diff options
context:
space:
mode:
authorJohn Ogness <john.ogness@linutronix.de>2017-09-18 16:31:17 +0200
committerJohn Ogness <john.ogness@linutronix.de>2017-09-18 16:31:17 +0200
commit5c876f80b9a3328b33520eb51e044cbec2ebc208 (patch)
tree56b977f8c83b84c585ee31ac528f16640062a68f /lx-trainer-vm/update-home.sh
parent0151fc2ba3bbe33484599df6ef3c49c2b152ffad (diff)
update scripts and README
- removed extra dd-variation scripts - updated script for general usage (src/dest as arguments) - adjusted script to support modifying new image - moves /home/* from part1 to part2 - adds /home entry to /etc/fstab - moved manut's update-home.sh to "extra" directory (may still be in use? until a general replacement exists) Signed-off-by: John Ogness <john.ogness@linutronix.de>
Diffstat (limited to 'lx-trainer-vm/update-home.sh')
-rwxr-xr-xlx-trainer-vm/update-home.sh23
1 files changed, 0 insertions, 23 deletions
diff --git a/lx-trainer-vm/update-home.sh b/lx-trainer-vm/update-home.sh
deleted file mode 100755
index 2bdbf37..0000000
--- a/lx-trainer-vm/update-home.sh
+++ /dev/null
@@ -1,23 +0,0 @@
-#!/bin/bash
-
-mkfs.ext4 -F -L lxhome /dev/sde2
-mkfs.ext4 -F -L lxhome /dev/sdc2
-mkfs.ext4 -F -L lxhome /dev/sdd2
-
-mount /dev/sde2 /mnt
-mkdir /mnt/devel
-chown 1000:1000 /mnt/devel
-cp -a home-overlay/* /mnt/
-umount /mnt
-
-mount /dev/sdc2 /mnt
-mkdir /mnt/devel
-chown 1000:1000 /mnt/devel
-cp -a home-overlay/* /mnt/
-umount /mnt
-
-mount /dev/sdd2 /mnt
-mkdir /mnt/devel
-chown 1000:1000 /mnt/devel
-cp -a home-overlay/* /mnt/
-umount /mnt