diff options
author | Hyunbin Lee <hyunbin.lee@samsung.com> | 2013-09-23 19:33:39 +0900 |
---|---|---|
committer | Hyunbin Lee <hyunbin.lee@samsung.com> | 2013-09-23 19:33:39 +0900 |
commit | 3383f17798f59e6cba2a628f9e41db1d9ce16de6 (patch) | |
tree | d203076e06d260aacaef6442cfb056dc28dbfb12 | |
parent | 55b0b5eed7f2fdc3539af0e1a465f7d01ea2fd15 (diff) | |
download | installer-3383f17798f59e6cba2a628f9e41db1d9ce16de6.tar.gz installer-3383f17798f59e6cba2a628f9e41db1d9ce16de6.tar.bz2 installer-3383f17798f59e6cba2a628f9e41db1d9ce16de6.zip |
Adjust unmount order
Change-Id: I7c4619ddfac54c3bbc20697a031c345b5c2fd055
Signed-off-by: Hyunbin Lee <hyunbin.lee@samsung.com>
-rwxr-xr-x | inc/InstallerDefs.h | 2 | ||||
-rwxr-xr-x | src/Manager/CompatibilityManager.cpp | 10 |
2 files changed, 6 insertions, 6 deletions
diff --git a/inc/InstallerDefs.h b/inc/InstallerDefs.h index d04bd4b..88cb2ad 100755 --- a/inc/InstallerDefs.h +++ b/inc/InstallerDefs.h @@ -23,7 +23,7 @@ #include "InstallerUtil.h" -#define OSP_INSTALLER_VERSION "version=[20130921.1]" +#define OSP_INSTALLER_VERSION "version=[20130923.1]" #define DIR_BIN L"/bin" #define DIR_INFO L"/info" diff --git a/src/Manager/CompatibilityManager.cpp b/src/Manager/CompatibilityManager.cpp index acc4700..fd4f20c 100755 --- a/src/Manager/CompatibilityManager.cpp +++ b/src/Manager/CompatibilityManager.cpp @@ -136,10 +136,7 @@ CompatibilityManager::FinalizeDataCaging(const String& rootPath) { "./etc" }, { "./lib" }, { "./mnt" }, - { "./opt/usr" }, { "./opt/var/kdb/db" }, - { "./opt/storage/sdcard" }, - { "./opt" }, { "./proc" }, { "./sbin" }, { "./smack" }, @@ -155,12 +152,15 @@ CompatibilityManager::FinalizeDataCaging(const String& rootPath) { "./Share" }, { "./Share2" }, { "./Media" }, - { "./Storagecard/Media" }, { "./ShareExt" }, { "./Share2Ext" }, { "./HomeExt/Share" }, { "./HomeExt/Share2" }, - { "./HomeExt" } + { "./HomeExt" }, + { "./Storagecard/Media" }, + { "./opt/storage/sdcard" }, + { "./opt/usr" }, + { "./opt" }, }; std::unique_ptr<char[]> pAppRootPath(_StringConverter::CopyToCharArrayN(rootPath)); |