diff mbox series

[scarthgap,3/5] util-linux: fix 'mount' options in mountall initscript

Message ID 20260602142132.976138-3-rl@karo-electronics.de
State New
Headers show
Series [scarthgap,1/5] sign_ipk.bbclass: add missing 'd' parameter to raise_sanity_error() | expand

Commit Message

Robin Lintermann June 2, 2026, 2:21 p.m. UTC
mount -t allows for a 'no'-prefix to exclude a set of fs types from
the call. But the 'no'-prefix applies to the whole list of fs types
given and should not be repeated for each individual type specified.

Signed-off-by: Robin Lintermann <rl@karo-electronics.de>
---
 meta/recipes-core/util-linux/util-linux_2.39.3.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/recipes-core/util-linux/util-linux_2.39.3.bb b/meta/recipes-core/util-linux/util-linux_2.39.3.bb
index 12c504e0a2..6f22f13676 100644
--- a/meta/recipes-core/util-linux/util-linux_2.39.3.bb
+++ b/meta/recipes-core/util-linux/util-linux_2.39.3.bb
@@ -194,7 +194,7 @@  do_install () {
         fi
 
 	install -d ${D}${sysconfdir}/default/
-	echo 'MOUNTALL="-t nonfs,nosmbfs,noncpfs"' > ${D}${sysconfdir}/default/mountall
+	echo 'MOUNTALL="-t nonfs,smbfs,ncpfs"' > ${D}${sysconfdir}/default/mountall
 
 	rm -f ${D}${bindir}/chkdupexe