Blame 0024-98usrmount-mount-usr.sh-Don-t-pass-mount-options-to-.patch
|
Harald Hoyer |
3957aa |
From 345f9fa77e8a6e86bb08f66e46fe0396024660ea Mon Sep 17 00:00:00 2001
|
|
Harald Hoyer |
3957aa |
From: Duane Griffin <duaneg@dghda.com>
|
|
Harald Hoyer |
3957aa |
Date: Fri, 13 Jan 2012 10:23:45 +0100
|
|
Harald Hoyer |
3957aa |
Subject: [PATCH] 98usrmount/mount-usr.sh: Don't pass mount options to fsck
|
|
Harald Hoyer |
3957aa |
|
|
Harald Hoyer |
3957aa |
---
|
|
Harald Hoyer |
3957aa |
modules.d/98usrmount/mount-usr.sh | 4 ++--
|
|
Harald Hoyer |
3957aa |
1 files changed, 2 insertions(+), 2 deletions(-)
|
|
Harald Hoyer |
3957aa |
|
|
Harald Hoyer |
3957aa |
diff --git a/modules.d/98usrmount/mount-usr.sh b/modules.d/98usrmount/mount-usr.sh
|
|
Harald Hoyer |
3957aa |
index a61f935..fc205d5 100755
|
|
Harald Hoyer |
3957aa |
--- a/modules.d/98usrmount/mount-usr.sh
|
|
Harald Hoyer |
3957aa |
+++ b/modules.d/98usrmount/mount-usr.sh
|
|
Harald Hoyer |
3957aa |
@@ -19,7 +19,7 @@ mount_usr()
|
|
Harald Hoyer |
3957aa |
|
|
Harald Hoyer |
3957aa |
if [ "x$_usr_found" != "x" ]; then
|
|
Harald Hoyer |
3957aa |
# we have to mount /usr
|
|
Harald Hoyer |
3957aa |
- fsck_single "$_dev" "$_fs" "$_opts"
|
|
Harald Hoyer |
3957aa |
+ fsck_single "$_dev" "$_fs"
|
|
Harald Hoyer |
3957aa |
_ret=$?
|
|
Harald Hoyer |
3957aa |
echo $_ret >/run/initramfs/usr-fsck
|
|
Harald Hoyer |
3957aa |
if [ $_ret -ne 255 ]; then
|
|
Harald Hoyer |
3957aa |
@@ -29,4 +29,4 @@ mount_usr()
|
|
Harald Hoyer |
3957aa |
fi
|
|
Harald Hoyer |
3957aa |
}
|
|
Harald Hoyer |
3957aa |
|
|
Harald Hoyer |
3957aa |
-mount_usr
|
|
Harald Hoyer |
3957aa |
\ No newline at end of file
|
|
Harald Hoyer |
3957aa |
+mount_usr
|