From c057441e77fa39e7f9d35d4f52d21e0e550764a8 Mon Sep 17 00:00:00 2001 From: wangchen Date: Fri, 13 Jun 2025 10:30:07 +0800 Subject: [PATCH] Add /data/storage/system_optimize sandbox path issue: https://gitee.com/openharmony/startup_appspawn/issues/ICEWN5 Signed-off-by: wangchen --- appdata-sandbox-app.json | 3 +++ appdata-sandbox.json | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/appdata-sandbox-app.json b/appdata-sandbox-app.json index ac12e08b..3fedc18c 100644 --- a/appdata-sandbox-app.json +++ b/appdata-sandbox-app.json @@ -153,6 +153,9 @@ }, { "src-path" : "/data/misc", "sandbox-path" : "/data/storage/el1/bundle/misc" + }, { + "src-path" : "/data/app/el1//system_optimize/", + "sandbox-path" : "/data/storage/system_optimize" }, { "src-path" : "/data/app/el1/public/aot_compiler/ark_cache/", "sandbox-path" : "/data/storage/ark-cache" diff --git a/appdata-sandbox.json b/appdata-sandbox.json index 9c6a1fdc..5c022fe9 100755 --- a/appdata-sandbox.json +++ b/appdata-sandbox.json @@ -133,6 +133,11 @@ "sandbox-path" : "/data/storage/el1/base", "sandbox-flags" : [ "bind", "rec" ], "check-action-status": "true" + }, { + "src-path" : "/data/app/el1//system_optimize/", + "sandbox-path" : "/data/storage/system_optimize", + "sandbox-flags" : [ "bind", "rec" ], + "check-action-status": "false" }, { "src-path" : "/mnt/hmdfs/", "sandbox-path" : "/mnt/hmdfs/", -- Gitee