update face auth component name

Signed-off-by: Tianshi Liu <tianshi.liu@huawei.com>
Change-Id: I29e8386baa0e735e4b90b674f0ddf8ec4a8f4d0b
This commit is contained in:
Tianshi Liu 2022-03-14 22:38:19 +08:00
parent 830a951626
commit 9a91bf29df
6 changed files with 22 additions and 22 deletions

View File

@ -13,7 +13,7 @@
"dirs": {},
"scripts": {},
"component": {
"name": "faceauth",
"name": "face_auth",
"subsystem": "useriam",
"adapted_system_type": [ "standard" ],
"syscap": ["SystemCapability.UserIAM.UserAuth.FaceAuth"],
@ -36,9 +36,9 @@
},
"build": {
"sub_component": [
"//base/user_iam/face_auth/services:face_auth_service",
"//base/user_iam/face_auth/sa_profile:face_auth_service.init",
"//base/user_iam/face_auth/sa_profile:face_auth_sa_profile"
"//base/user_iam/face_auth/services:faceauthservice",
"//base/user_iam/face_auth/sa_profile:faceauth_sa_profile.init",
"//base/user_iam/face_auth/sa_profile:faceauth_sa_profile"
],
"inner_kits": [
],

View File

@ -13,10 +13,10 @@
limitations under the License.
-->
<info>
<process>face_service</process>
<process>faceauth</process>
<systemability>
<name>942</name>
<libpath>libface_auth_service.z.so</libpath>
<libpath>libfaceauthservice.z.so</libpath>
<run-on-create>true</run-on-create>
<distributed>false</distributed>
<dump-level>1</dump-level>

View File

@ -14,18 +14,18 @@
import("//build/ohos.gni")
import("//build/ohos/sa_profile/sa_profile.gni")
ohos_sa_profile("face_auth_sa_profile") {
ohos_sa_profile("faceauth_sa_profile") {
sources = [ "942.xml" ]
part_name = "faceauth"
part_name = "face_auth"
}
ohos_prebuilt_etc("face_auth_service.init") {
ohos_prebuilt_etc("faceauth_sa_profile.init") {
if (use_musl) {
source = "face_auth_service.cfg"
source = "faceauth_sa_profile.cfg"
} else {
source = "face_auth_service.rc"
source = "faceauth_sa_profile.rc"
}
relative_install_dir = "init"
subsystem_name = "useriam"
part_name = "faceauth"
part_name = "face_auth"
}

View File

@ -3,16 +3,16 @@
"name" : "param:bootevent.useriam.fwkready=true",
"condition" : "bootevent.useriam.fwkready=true",
"cmds" : [
"start face_service"
"start faceauth"
]
}
],
"services" : [{
"name" : "face_service",
"path" : ["/system/bin/sa_main", "/system/profile/face_service.xml"],
"name" : "faceauth",
"path" : ["/system/bin/sa_main", "/system/profile/faceauth.xml"],
"uid" : "system",
"gid" : ["system", "shell"],
"secon" : "u:r:face_service:s0",
"secon" : "u:r:faceauth:s0",
"start-mode" : "condition"
}
]

View File

@ -12,11 +12,11 @@
# limitations under the License.
on late-fs
start face_service
start faceauth
service face_service /system/bin/sa_main /system/profile/face_service.xml
class face_service
service faceauth /system/bin/sa_main /system/profile/faceauth.xml
class faceauth
priority -20
user system
group system
seclabel u:r:face_service:s0
seclabel u:r:faceauth:s0

View File

@ -14,7 +14,7 @@
import("//base/user_iam/face_auth/useriam.gni")
import("//build/ohos.gni")
ohos_shared_library("face_auth_service") {
ohos_shared_library("faceauthservice") {
include_dirs = [
"//foundation/multimedia/camera_standard/interfaces/inner_api/native/camera/include",
"//base/user_iam/face_auth/services/faceauth/include",
@ -71,5 +71,5 @@ ohos_shared_library("face_auth_service") {
"utils_base:utils",
]
subsystem_name = "useriam"
part_name = "faceauth"
part_name = "face_auth"
}