|
|
18971c |
From 23e3c7f95f7747375fdda20e0dfac10bc7a8920f Mon Sep 17 00:00:00 2001
|
|
|
18971c |
From: Harald Hoyer <harald@redhat.com>
|
|
|
18971c |
Date: Tue, 16 Dec 2014 12:53:18 +0100
|
|
|
18971c |
Subject: [PATCH] dmsquash-live: setup the images in /run/initramfs
|
|
|
18971c |
|
|
|
18971c |
We want to cleanup / after switch_root. Placing the loop files in /
|
|
|
18971c |
works, but it is more sane to put them in /run/initramfs
|
|
|
18971c |
|
|
|
18971c |
(cherry picked from commit 1f8abe81a9fca0f44c63bf3bd30a7f7fbec28642)
|
|
|
18971c |
---
|
|
|
18971c |
modules.d/90dmsquash-live/dmsquash-live-root.sh | 12 ++++++------
|
|
|
18971c |
1 file changed, 6 insertions(+), 6 deletions(-)
|
|
|
18971c |
|
|
|
18971c |
diff --git a/modules.d/90dmsquash-live/dmsquash-live-root.sh b/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
|
18971c |
index 0645a0bd..12354f42 100755
|
|
|
18971c |
--- a/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
|
18971c |
+++ b/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
|
18971c |
@@ -189,9 +189,9 @@ fi
|
|
|
18971c |
|
|
|
18971c |
if [ -n "$OSMINSQFS" ]; then
|
|
|
18971c |
# decompress the delta data
|
|
|
18971c |
- dd if=$OSMINSQFS of=/osmin.img 2> /dev/null
|
|
|
18971c |
+ dd if=$OSMINSQFS of=/run/initramfs/osmin.img 2> /dev/null
|
|
|
18971c |
OSMIN_SQUASHED_LOOPDEV=$( losetup -f )
|
|
|
18971c |
- losetup -r $OSMIN_SQUASHED_LOOPDEV /osmin.img
|
|
|
18971c |
+ losetup -r $OSMIN_SQUASHED_LOOPDEV /run/initramfs/osmin.img
|
|
|
18971c |
mkdir -m 0755 -p /run/initramfs/squashfs.osmin
|
|
|
18971c |
mount -n -t squashfs -o ro $OSMIN_SQUASHED_LOOPDEV /run/initramfs/squashfs.osmin
|
|
|
18971c |
OSMIN_LOOPDEV=$( losetup -f )
|
|
|
18971c |
@@ -212,8 +212,8 @@ if [ -n "$FSIMG" ] ; then
|
|
|
18971c |
if [ -n "$writable_fsimg" ] ; then
|
|
|
18971c |
# mount the provided fileysstem read/write
|
|
|
18971c |
echo "Unpacking live filesystem (may take some time)"
|
|
|
18971c |
- unpack_archive $FSIMG /tmp/fsimg/
|
|
|
18971c |
- losetup $BASE_LOOPDEV /tmp/fsimg/rootfs.img
|
|
|
18971c |
+ unpack_archive $FSIMG /run/initramfs/fsimg/
|
|
|
18971c |
+ losetup $BASE_LOOPDEV /run/initramfs/fsimg/rootfs.img
|
|
|
18971c |
echo "0 $( blockdev --getsize $BASE_LOOPDEV ) linear $BASE_LOOPDEV 0" | dmsetup create live-rw
|
|
|
18971c |
else
|
|
|
18971c |
# mount the filesystem read-only and add a dm snapshot for writes
|
|
|
18971c |
@@ -231,10 +231,10 @@ if [ -e "$SQUASHED" ] ; then
|
|
|
18971c |
if [ -n "$live_ram" ] ; then
|
|
|
18971c |
echo "Copying live image to RAM..."
|
|
|
18971c |
echo "(this may take a few minutes)"
|
|
|
18971c |
- dd if=$SQUASHED of=/squashed.img bs=512 2> /dev/null
|
|
|
18971c |
+ dd if=$SQUASHED of=/run/initramfs/squashed.img bs=512 2> /dev/null
|
|
|
18971c |
umount -n /run/initramfs/live
|
|
|
18971c |
echo "Done copying live image to RAM."
|
|
|
18971c |
- SQUASHED="/squashed.img"
|
|
|
18971c |
+ SQUASHED="/run/initramfs/squashed.img"
|
|
|
18971c |
fi
|
|
|
18971c |
|
|
|
18971c |
SQUASHED_LOOPDEV=$( losetup -f )
|