From d2ff08610bfbf965d5b0b2aab31eeb0746053e65 Mon Sep 17 00:00:00 2001 From: Eric Hameleers Date: Sun, 17 Sep 2023 22:02:45 +0200 Subject: Prevent useless re-mounting of squashfs and overlay filesystems This is not necessary, annoying and pollutes the screen during boot-up. --- make_slackware_live.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/make_slackware_live.sh b/make_slackware_live.sh index d25e376..e84e9df 100755 --- a/make_slackware_live.sh +++ b/make_slackware_live.sh @@ -3218,6 +3218,10 @@ touch ${LIVE_ROOTDIR}/etc/fastboot # We will not write to the hardware clock: sed -i -e '/systohc/s/^/# /' ${LIVE_ROOTDIR}/etc/rc.d/rc.6 +# Don't try to re-mount our squashfs and overlay filesystems: +sed -e 's/^ *SKIPFS="no/&squashfs,nooverlay,no/' \ + -i ${LIVE_ROOTDIR}/etc/rc.d/rc.S + # Run some package setup scripts (usually run by the slackware installer), # as well as some of the delaying commands in rc.M and rc.modules: -- cgit v1.2.3