diff options
author | Laurentiu Palcu <laurentiu.palcu@intel.com> | 2013-04-17 16:52:32 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-18 00:38:01 +0100 |
commit | 897d26a4440a562b909d660f2029b101070dc4d4 (patch) | |
tree | 14abd6dfdd9d92c14b52b7727b496dc4bf3133f6 | |
parent | 43159d787682990b687e3b536edfba1cf8df6cc9 (diff) | |
download | poky-897d26a4440a562b909d660f2029b101070dc4d4.tar.gz |
busybox: fix mount issue
When the mount command is not given the filesystem type to mount, then
it will try all the known filesystems. However, when a filesystem is not
supported by the kernel, the mount function call will return ENODEV.
The following patch, ecd90bc6aa63da2aef2513ac090d4b426b2b719c,
introduced a problem because it bailed out on ENODEV too. Instead it should
have only bailed out on ENOMEDIUM.
[YOCTO #4308]
(From OE-Core rev: 82320d2074572477f26887eddc51dc2a1dfea403)
Signed-off-by: Laurentiu Palcu <laurentiu.palcu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-core/busybox/busybox-1.20.2/fail_on_no_media.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-core/busybox/busybox-1.20.2/fail_on_no_media.patch b/meta/recipes-core/busybox/busybox-1.20.2/fail_on_no_media.patch index aa2cd25266..6745f169fe 100644 --- a/meta/recipes-core/busybox/busybox-1.20.2/fail_on_no_media.patch +++ b/meta/recipes-core/busybox/busybox-1.20.2/fail_on_no_media.patch | |||
@@ -23,7 +23,7 @@ Index: busybox-1.20.2/util-linux/mount.c | |||
23 | + * Break if there is no media, no point retrying for all | 23 | + * Break if there is no media, no point retrying for all |
24 | + * fs types since there is no media available | 24 | + * fs types since there is no media available |
25 | + */ | 25 | + */ |
26 | + if ((rc == -1) && (errno == ENOMEDIUM || errno == ENODEV)) { | 26 | + if (rc == -1 && errno == ENOMEDIUM) { |
27 | + bb_perror_msg_and_die("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); | 27 | + bb_perror_msg_and_die("mounting %s on %s failed", mp->mnt_fsname, mp->mnt_dir); |
28 | + } | 28 | + } |
29 | if (!rc || (vfsflags & MS_RDONLY) || (errno != EACCES && errno != EROFS)) | 29 | if (!rc || (vfsflags & MS_RDONLY) || (errno != EACCES && errno != EROFS)) |