From 2160e93c6adcfa38e28c78c565c846026fdae4b1 Mon Sep 17 00:00:00 2001 From: Tobias Powalowski Date: Fri, 26 Jul 2013 11:52:59 +0200 Subject: [PATCH] remove rw removing on boot commandline, new systemd will need rw --- usr/share/archboot/installer/setup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/usr/share/archboot/installer/setup b/usr/share/archboot/installer/setup index 77cfd919b..52a66ecf3 100755 --- a/usr/share/archboot/installer/setup +++ b/usr/share/archboot/installer/setup @@ -3040,9 +3040,9 @@ getrootfstype() { } getrootflags() { - # remove rw for all filesystems and gcpid for nilfs2 + # remove gcpid for nilfs2 ROOTFLAGS="" - ROOTFLAGS="$(findmnt -m -n -o options -T ${DESTDIR} | sed -e 's/^rw//g' -e 's/,gcpid=.*[0-9]//g')" + ROOTFLAGS="$(findmnt -m -n -o options -T ${DESTDIR} | sed -e 's/,gcpid=.*[0-9]//g')" [[ -n "${ROOTFLAGS}" ]] && ROOTFLAGS="rootflags=${ROOTFLAGS}" }