dc707d41cc
as current revert breaks NFS. Also re-add overlayfs module. https://github.com/dracutdevs/dracut/pull/2233 rhbz#2172269
27 lines
934 B
Diff
27 lines
934 B
Diff
From 0e780720efe6488c4e07af39926575ee12f40339 Mon Sep 17 00:00:00 2001
|
|
From: Laszlo Gombos <laszlo.gombos@gmail.com>
|
|
Date: Fri, 24 Feb 2023 01:57:19 +0000
|
|
Subject: [PATCH] fix(dmsquash-live): restore compatibility with earlier
|
|
releases
|
|
|
|
Follow-up to 40dd5c90e0efcb9ebaa9abb42a38c7316e9706bd .
|
|
---
|
|
modules.d/90dmsquash-live/dmsquash-live-root.sh | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/modules.d/90dmsquash-live/dmsquash-live-root.sh b/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
index 62d1b5e7c..a98e258c2 100755
|
|
--- a/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
+++ b/modules.d/90dmsquash-live/dmsquash-live-root.sh
|
|
@@ -403,6 +403,10 @@ fi
|
|
|
|
ROOTFLAGS="$(getarg rootflags)"
|
|
|
|
+if [ "$overlayfs" = required ]; then
|
|
+ echo "rd.live.overlay.overlayfs=1" > /etc/cmdline.d/dmsquash-need-overlay.conf
|
|
+fi
|
|
+
|
|
if [ -n "$overlayfs" ]; then
|
|
if [ -n "$FSIMG" ]; then
|
|
mkdir -m 0755 -p /run/rootfsbase
|