From f51db27a39eb1c1dbc98578de7c34457d6072869 Mon Sep 17 00:00:00 2001 From: Fabio Erculiani Date: Wed, 28 Aug 2013 12:45:55 +0200 Subject: [PATCH] initrd.scripts: trivial, wrap comments --- defaults/initrd.scripts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts index 08d414f..7db094d 100755 --- a/defaults/initrd.scripts +++ b/defaults/initrd.scripts @@ -1442,11 +1442,11 @@ get_mount_device() { ' ${NEW_ROOT}/etc/fstab } -# If the kernel is handed a mount option is does not recognize, it WILL fail to -# mount. util-linux handles auto/noauto, but busybox passes it straight to the kernel -# which then rejects the mount. -# To make like a little easier, busybox mount does not care about leading, -# trailing or duplicate commas. +# If the kernel is handed a mount option is does not recognize, it +# WILL fail to mount. util-linux handles auto/noauto, but busybox +# passes it straight to the kernel which then rejects the mount. To +# make like a little easier, busybox mount does not care about +# leading, trailing or duplicate commas. strip_mount_options() { sed -r 's/(,|^)(no)?auto(,|$)/,/g' }