Blame SOURCES/0275-Add-rd.live.overlay.size-option.patch

18971c
From ccebb4c045a7cc6c22977c9b23b95108030901ea Mon Sep 17 00:00:00 2001
18971c
From: Radek Vykydal <rvykydal@redhat.com>
18971c
Date: Tue, 13 Jan 2015 15:14:10 +0100
18971c
Subject: [PATCH] Add rd.live.overlay.size option
18971c
18971c
(cherry picked from commit 18423f7951de7b9cb4007438b58b6067aa6f2e93)
18971c
---
18971c
 modules.d/90dmsquash-live/dmsquash-live-root.sh | 4 +++-
18971c
 1 file changed, 3 insertions(+), 1 deletion(-)
18971c
18971c
diff --git a/modules.d/90dmsquash-live/dmsquash-live-root.sh b/modules.d/90dmsquash-live/dmsquash-live-root.sh
18971c
index 8d5476cd..6631d9a8 100755
18971c
--- a/modules.d/90dmsquash-live/dmsquash-live-root.sh
18971c
+++ b/modules.d/90dmsquash-live/dmsquash-live-root.sh
18971c
@@ -29,6 +29,8 @@ getargbool 0 rd.live.overlay.reset -d -y reset_overlay && reset_overlay="yes"
18971c
 getargbool 0 rd.live.overlay.readonly -d -y readonly_overlay && readonly_overlay="--readonly" || readonly_overlay=""
18971c
 overlay=$(getarg rd.live.overlay -d overlay)
18971c
 getargbool 0 rd.writable.fsimg -d -y writable_fsimg && writable_fsimg="yes"
18971c
+overlay_size=$(getarg rd.live.overlay.size=)
18971c
+[ -z "$overlay_size" ] && overlay_size=512
18971c
 
18971c
 getargbool 0 rd.live.overlay.thin && thin_snapshot="yes"
18971c
 
18971c
@@ -129,7 +131,7 @@ do_live_overlay() {
18971c
             sleep 5
18971c
         fi
18971c
 
18971c
-        dd if=/dev/null of=/overlay bs=1024 count=1 seek=$((512*1024)) 2> /dev/null
18971c
+        dd if=/dev/null of=/overlay bs=1024 count=1 seek=$((overlay_size*1024)) 2> /dev/null
18971c
         if [ -n "$setup" -a -n "$readonly_overlay" ]; then
18971c
             RO_OVERLAY_LOOPDEV=$( losetup -f )
18971c
             losetup $RO_OVERLAY_LOOPDEV /overlay