From 4ca39bcb335512edf35165cb9fd5dfae3930d477 Mon Sep 17 00:00:00 2001 From: linjun9528 Date: Tue, 21 Jun 2022 19:34:51 +0800 Subject: [PATCH] add x64 config & fix mount-paths Signed-off-by: linjun9528 --- appdata-sandbox.json | 2 +- appdata-sandbox64.json | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/appdata-sandbox.json b/appdata-sandbox.json index de810d69..a42c6064 100644 --- a/appdata-sandbox.json +++ b/appdata-sandbox.json @@ -255,7 +255,7 @@ "com.ohos.UserFile.ExternalFileManager" : [{ "sandbox-switch": "ON", "sandbox-root" : "/mnt/sandbox/", - "mount-bind-paths" : [{ + "mount-paths" : [{ "src-path" : "/data/service/el1/public/storage_daemon/share/public", "sandbox-path" : "/data/storage/el1/bundle/storage_daemon", "sandbox-flags" : [ "bind", "rec" ], diff --git a/appdata-sandbox64.json b/appdata-sandbox64.json index ff660390..7378fd7e 100644 --- a/appdata-sandbox64.json +++ b/appdata-sandbox64.json @@ -260,6 +260,24 @@ } ], "symbol-links" : [] + }], + "com.ohos.UserFile.ExternalFileManager" : [{ + "sandbox-switch": "ON", + "sandbox-root" : "/mnt/sandbox/", + "mount-paths" : [{ + "src-path" : "/data/service/el1/public/storage_daemon/share/public", + "sandbox-path" : "/data/storage/el1/bundle/storage_daemon", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "true" + }, + { + "src-path" : "/mnt/external", + "sandbox-path" : "/mnt/external", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "true" + } + ], + "symbol-links" : [] }] }] } -- Gitee