summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGary Thomas <gary@mlbassoc.com>2012-01-06 06:35:54 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-01-06 14:41:47 +0000
commit2b8bd22c7c98891203505a1d0a02655173d9afa3 (patch)
tree5d7f52fc6a4fbdb83808bebfea66d232febe0d77
parent5599d3ae5c9859b56084754a5c6282f9b09a75a3 (diff)
downloadpoky-2b8bd22c7c98891203505a1d0a02655173d9afa3.tar.gz
base-files: filesystems: fix mount order
This changes the order that file system [types] are tried when using 'mount' in busybox when the file system type is not explictly specified. The pervious ordering is incorrect in that less capable file system types are tried first, e.g. ext2 before ext3, which will cause an ext3 file system to be mounted as ext2, disabling some of the ext3 features such as journaling. The change also moves infrequently used file system types to the end as checking for them is just a waste of effort in most cases. The list now also includes ext4. [RP: Add PR bump, unbreak patch application] (From OE-Core rev: fff18970706913e7fd7f4a119d798dddb44b388a) Signed-off-by: Gary Thomas <gary@mlbassoc.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-core/base-files/base-files/filesystems9
-rw-r--r--meta/recipes-core/base-files/base-files_3.0.14.bb2
2 files changed, 6 insertions, 5 deletions
diff --git a/meta/recipes-core/base-files/base-files/filesystems b/meta/recipes-core/base-files/base-files/filesystems
index 2af6a7e355..7e6c41c38f 100644
--- a/meta/recipes-core/base-files/base-files/filesystems
+++ b/meta/recipes-core/base-files/base-files/filesystems
@@ -1,7 +1,8 @@
1minix 1ext4
2fat
3vfat
4ext2
5ext3 2ext3
3ext2
4vfat
5fat
6btrfs 6btrfs
7minix
7* 8*
diff --git a/meta/recipes-core/base-files/base-files_3.0.14.bb b/meta/recipes-core/base-files/base-files_3.0.14.bb
index eb40917eb5..6bab040e4f 100644
--- a/meta/recipes-core/base-files/base-files_3.0.14.bb
+++ b/meta/recipes-core/base-files/base-files_3.0.14.bb
@@ -1,7 +1,7 @@
1SUMMARY = "Miscellaneous files for the base system." 1SUMMARY = "Miscellaneous files for the base system."
2DESCRIPTION = "The base-files package creates the basic system directory structure and provides a small set of key configuration files for the system." 2DESCRIPTION = "The base-files package creates the basic system directory structure and provides a small set of key configuration files for the system."
3SECTION = "base" 3SECTION = "base"
4PR = "r70" 4PR = "r71"
5LICENSE = "GPLv2" 5LICENSE = "GPLv2"
6LIC_FILES_CHKSUM = "file://licenses/GPL-2;md5=94d55d512a9ba36caa9b7df079bae19f" 6LIC_FILES_CHKSUM = "file://licenses/GPL-2;md5=94d55d512a9ba36caa9b7df079bae19f"
7# Removed all license related tasks in this recipe as license.bbclass 7# Removed all license related tasks in this recipe as license.bbclass