提交 8cd1af82 编写于 作者: 熊磊 提交者: Gitee

Merge branch 'master' of gitee.com:openharmony/startup_init_lite into fixbug0328

Signed-off-by: Nxionglei <xionglei6@huawei.com>
文件模式从 100755 更改为 100644
...@@ -129,7 +129,8 @@ const char *AclGetSerial(void) ...@@ -129,7 +129,8 @@ const char *AclGetSerial(void)
OHOS::device_info::DeviceInfoKits &instance = OHOS::device_info::DeviceInfoKits::GetInstance(); OHOS::device_info::DeviceInfoKits &instance = OHOS::device_info::DeviceInfoKits::GetInstance();
int ret = instance.GetSerialID(result); int ret = instance.GetSerialID(result);
if (ret == 0) { if (ret == 0) {
(void)strcpy_s(serialNumber, sizeof(serialNumber), result.c_str()); ret = strcpy_s(serialNumber, sizeof(serialNumber), result.c_str());
DINFO_CHECK(ret == 0, return nullptr, "Failed to copy");
} }
DINFO_LOGI("GetSerial %s", serialNumber); DINFO_LOGI("GetSerial %s", serialNumber);
return serialNumber; return serialNumber;
......
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -298,7 +298,7 @@ static void InitSandbox(sandbox_t *sandbox, const char *sandboxConfig, const cha ...@@ -298,7 +298,7 @@ static void InitSandbox(sandbox_t *sandbox, const char *sandboxConfig, const cha
return; return;
} }
if (sandbox->isCreated) { if (sandbox->isCreated) {
BEGET_LOGE("Sandbox %s has created."); BEGET_LOGE("Sandbox %s has created.", name);
return; return;
} }
if (UnshareNamespace(CLONE_NEWNS) < 0) { if (UnshareNamespace(CLONE_NEWNS) < 0) {
......
...@@ -24,6 +24,10 @@ ...@@ -24,6 +24,10 @@
"src-path" : "/system/fonts", "src-path" : "/system/fonts",
"sandbox-path" : "/system/fonts", "sandbox-path" : "/system/fonts",
"sandbox-flags" : [ "bind", "rec", "private" ] "sandbox-flags" : [ "bind", "rec", "private" ]
}, {
"src-path" : "/system/usr",
"sandbox-path" : "/system/usr",
"sandbox-flags" : [ "bind", "rec", "private" ]
}, { }, {
"src-path" : "/vendor", "src-path" : "/vendor",
"sandbox-path" : "/vendor", "sandbox-path" : "/vendor",
...@@ -56,6 +60,10 @@ ...@@ -56,6 +60,10 @@
"src-path" : "/storage", "src-path" : "/storage",
"sandbox-path" : "/storage", "sandbox-path" : "/storage",
"sandbox-flags" : [ "bind", "rec", "private" ] "sandbox-flags" : [ "bind", "rec", "private" ]
}, {
"src-path" : "/sys_prod",
"sandbox-path" : "/sys_prod",
"sandbox-flags" : [ "bind", "rec", "private" ]
} }
], ],
"mount-bind-files" : [{ "mount-bind-files" : [{
...@@ -71,4 +79,4 @@ ...@@ -71,4 +79,4 @@
"link-name" : "/etc" "link-name" : "/etc"
} }
] ]
} }
\ No newline at end of file
...@@ -221,7 +221,7 @@ int ServiceSetReady(const char *serviceName) ...@@ -221,7 +221,7 @@ int ServiceSetReady(const char *serviceName)
BEGET_LOGE("Set param for %s failed.", paramName); BEGET_LOGE("Set param for %s failed.", paramName);
return -1; return -1;
} }
BEGET_LOGI("Success set %d read", serviceName); BEGET_LOGI("Success set %s read", serviceName);
return 0; return 0;
} }
......
...@@ -50,6 +50,5 @@ if (defined(ohos_lite)) { ...@@ -50,6 +50,5 @@ if (defined(ohos_lite)) {
"system", "system",
"updater", "updater",
] ]
relative_install_dir = "platform-vndk"
} }
} }
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -65,7 +65,9 @@ int main(int argc, char *argv[]) ...@@ -65,7 +65,9 @@ int main(int argc, char *argv[])
args = argv + 1; args = argv + 1;
} }
if (number >= 1 && strcmp(args[0], "devctl") == 0) { if (number >= 1 && strcmp(args[0], "devctl") == 0) {
(void)memcpy_s(args[0], strlen(args[0]), "reboot", strlen("reboot")); if (memcpy_s(args[0], strlen(args[0]), "reboot", strlen("reboot")) != 0) {
printf("Failed to copy\n");
}
} }
SetInitLogLevel(0); SetInitLogLevel(0);
BShellParamCmdRegister(g_handle, 0); BShellParamCmdRegister(g_handle, 0);
......
...@@ -81,13 +81,13 @@ static void WriteLogoContent(int fd, const std::string &logoPath, uint32_t size) ...@@ -81,13 +81,13 @@ static void WriteLogoContent(int fd, const std::string &logoPath, uint32_t size)
(void)fclose(rgbFile); (void)fclose(rgbFile);
return; return;
} }
uint32_t ret = fread(buffer, 1, size, rgbFile); (void)fread(buffer, 1, size, rgbFile);
if (ret < 0) { if (ferror(rgbFile)) {
(void)fclose(rgbFile); (void)fclose(rgbFile);
free(buffer); free(buffer);
return; return;
} }
ret = write(fd, buffer, size); uint32_t ret = write(fd, buffer, size);
if (ret != size) { if (ret != size) {
(void)fclose(rgbFile); (void)fclose(rgbFile);
free(buffer); free(buffer);
......
...@@ -92,6 +92,7 @@ static char *GetRealParameter(BShellHandle shell, const char *name, char *buffer ...@@ -92,6 +92,7 @@ static char *GetRealParameter(BShellHandle shell, const char *name, char *buffer
} else { } else {
realLen = sprintf_s(buffer, buffSize, "%s", name); realLen = sprintf_s(buffer, buffSize, "%s", name);
} }
BSH_CHECK(realLen > 0, return NULL, "Failed to format buffer");
buffer[realLen] = '\0'; buffer[realLen] = '\0';
BSH_LOGV("GetRealParameter current %s input %s real %s", current, name, buffer); BSH_LOGV("GetRealParameter current %s input %s real %s", current, name, buffer);
return buffer; return buffer;
......
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -4,6 +4,7 @@ system:x:1000: ...@@ -4,6 +4,7 @@ system:x:1000:
radio:x:1001: radio:x:1001:
bluetooth:x:1002: bluetooth:x:1002:
graphics:x:1003: graphics:x:1003:
samgr:x:1005:
file_manager:x:1006: file_manager:x:1006:
log:x:1007: log:x:1007:
user_data_rw:x:1008: user_data_rw:x:1008:
...@@ -16,12 +17,13 @@ keystore:x:1017: ...@@ -16,12 +17,13 @@ keystore:x:1017:
usb:x:1018: usb:x:1018:
drm:x:1019: drm:x:1019:
media_rw:x:1023: media_rw:x:1023:
dsoftbus:x:1024:
nfc:x:1027: nfc:x:1027:
sdcard_r:x:1028: sdcard_r:x:1028:
package_info:x:1032: package_info:x:1032:
logd:x:1036: logd:x:1036:
shared_relro:x:1037: shared_relro:x:1037:
audioserver:x:1041: audio:x:1041:
cameraserver:x:1047: cameraserver:x:1047:
shell:x:2000: shell:x:2000:
cache:x:2001: cache:x:2001:
...@@ -32,5 +34,34 @@ wakelock:x:3010: ...@@ -32,5 +34,34 @@ wakelock:x:3010:
uhid:x:3011: uhid:x:3011:
ddms:x:3012: ddms:x:3012:
access_token:x:3020: access_token:x:3020:
blue_host:x:3021:
sample_host:x:3022:
usb_host:x:3023:
usbfnMaster_host:x:3024:
power_host:x:3025:
wifi_host:x:3026:
audio_hdi_server_host:x:3027:
camera_host:x:3028:
input_user_host:x:3029:
display_gralloc_host:x:3030:
codec_host:x:3031:
riladapter_host:x:3032:
sensor_dal_host:x:3033:
vibrator_dal_host:x:3034:
light_dal_host:x:3035:
wifi_c_host:x:3036:
disp_gralloc_host:x:3037:
dcamera_host:x:3038:
hwc_host:x:3039:
gralloc_host:x:3040:
sensor_host:x:3041:
nfc_host:x:3042:
a2dp_host:x:3043:
hdf_devmgr:x:3044:
connected_tag_host:x:3045:
dslm:x:3046:
dms:x:5522:
sensor:x:6688:
msdp:x:6699:
misc:x:9998: misc:x:9998:
app:x:10000: app:x:10000:
...@@ -245,9 +245,9 @@ ...@@ -245,9 +245,9 @@
"mkdir /data/misc/vpn 0770 system vpn", "mkdir /data/misc/vpn 0770 system vpn",
"mkdir /data/misc/shared_relro 0771 shared_relro shared_relro", "mkdir /data/misc/shared_relro 0771 shared_relro shared_relro",
"mkdir /data/misc/systemkeys 0700 system system", "mkdir /data/misc/systemkeys 0700 system system",
"mkdir /data/misc/wifi 0770 wifi wifi", "mkdir /data/misc/wifi 0770 system system",
"mkdir /data/misc/wifi/sockets 0770 wifi wifi", "mkdir /data/misc/wifi/sockets 0770 system system",
"mkdir /data/misc/wifi/wpa_supplicant 0770 wifi wifi", "mkdir /data/misc/wifi/wpa_supplicant 0660 system system",
"mkdir /data/misc/ethernet 0770 system system", "mkdir /data/misc/ethernet 0770 system system",
"mkdir /data/misc/dhcp 0770 dhcp dhcp", "mkdir /data/misc/dhcp 0770 dhcp dhcp",
"mkdir /data/misc/user 0771 root root", "mkdir /data/misc/user 0771 root root",
...@@ -255,7 +255,7 @@ ...@@ -255,7 +255,7 @@
"chmod 0660 /data/misc/wifi/wpa_supplicant.conf", "chmod 0660 /data/misc/wifi/wpa_supplicant.conf",
"mkdir /data/local 0751 root root", "mkdir /data/local 0751 root root",
"mkdir /data/misc/media 0700 media media", "mkdir /data/misc/media 0700 media media",
"mkdir /data/misc/audioserver 0700 audioserver audioserver", "mkdir /data/misc/audio 0700 audio audio",
"mkdir /data/misc/cameraserver 0700 cameraserver cameraserver", "mkdir /data/misc/cameraserver 0700 cameraserver cameraserver",
"mkdir /data/misc/vold 0700 root root", "mkdir /data/misc/vold 0700 root root",
"mkdir /data/misc/boottrace 0771 system shell", "mkdir /data/misc/boottrace 0771 system shell",
...@@ -313,7 +313,8 @@ ...@@ -313,7 +313,8 @@
"mkdir /data/init_agent 0770 shell system", "mkdir /data/init_agent 0770 shell system",
"setparam sys.use_memfd false", "setparam sys.use_memfd false",
"chown root system /dev/fscklogs/log", "chown root system /dev/fscklogs/log",
"chmod 0770 /dev/fscklogs/log" "chmod 0770 /dev/fscklogs/log",
"chmod 0660 /dev/fuse"
] ]
}, { }, {
"name" : "boot", "name" : "boot",
......
...@@ -245,7 +245,7 @@ ...@@ -245,7 +245,7 @@
"chmod 0660 /data/misc/wifi/wpa_supplicant.conf", "chmod 0660 /data/misc/wifi/wpa_supplicant.conf",
"mkdir /data/local 0751 root root", "mkdir /data/local 0751 root root",
"mkdir /data/misc/media 0700 media media", "mkdir /data/misc/media 0700 media media",
"mkdir /data/misc/audioserver 0700 audioserver audioserver", "mkdir /data/misc/audio 0700 audio audio",
"mkdir /data/misc/cameraserver 0700 cameraserver cameraserver", "mkdir /data/misc/cameraserver 0700 cameraserver cameraserver",
"mkdir /data/misc/vold 0700 root root", "mkdir /data/misc/vold 0700 root root",
"mkdir /data/misc/boottrace 0771 system shell", "mkdir /data/misc/boottrace 0771 system shell",
...@@ -303,7 +303,8 @@ ...@@ -303,7 +303,8 @@
"mkdir /data/init_agent 0770 shell system", "mkdir /data/init_agent 0770 shell system",
"setparam sys.use_memfd false", "setparam sys.use_memfd false",
"chown root system /dev/fscklogs/log", "chown root system /dev/fscklogs/log",
"chmod 0770 /dev/fscklogs/log" "chmod 0770 /dev/fscklogs/log",
"chmod 0660 /dev/fuse"
] ]
}, { }, {
"name" : "boot", "name" : "boot",
......
...@@ -26,7 +26,7 @@ const.debuggable root:root:0777 ...@@ -26,7 +26,7 @@ const.debuggable root:root:0777
persist.sys.usb.config root:root:0777 persist.sys.usb.config root:root:0777
# default forbit other user to start service # default forbit other user to start service
ohos.servicectrl. system:root:0770 ohos.servicectrl. system:root:0777
test.permission. root:root:0770 test.permission. root:root:0770
test.permission.read. root:root:0774 test.permission.read. root:root:0774
test.permission.write. root:root:0772 test.permission.write. root:root:0772
......
...@@ -17,12 +17,13 @@ keystore:x:1017:1017:::/bin/false ...@@ -17,12 +17,13 @@ keystore:x:1017:1017:::/bin/false
usb:x:1018:1018:::/bin/false usb:x:1018:1018:::/bin/false
drm:x:1019:1019:::/bin/false drm:x:1019:1019:::/bin/false
media_rw:x:1023:1023:::/bin/false media_rw:x:1023:1023:::/bin/false
dsoftbus:x:1024:1024:::/bin/false
nfc:x:1027:1027:::/bin/false nfc:x:1027:1027:::/bin/false
sdcard_r:x:1028:1028:::/bin/false sdcard_r:x:1028:1028:::/bin/false
package_info:x:1032:1032:::/bin/false package_info:x:1032:1032:::/bin/false
logd:x:1036:1036:::/bin/false logd:x:1036:1036:::/bin/false
shared_relro:x:1037:1037:::/bin/false shared_relro:x:1037:1037:::/bin/false
audioserver:x:1041:1041:::/bin/false audio:x:1041:1041:::/bin/false
cameraserver:x:1047:1047:::/bin/false cameraserver:x:1047:1047:::/bin/false
shell:x:2000:2000:::/bin/false shell:x:2000:2000:::/bin/false
cache:x:2001:2001:::/bin/false cache:x:2001:2001:::/bin/false
...@@ -33,6 +34,34 @@ wakelock:x:3010:3010:::/bin/false ...@@ -33,6 +34,34 @@ wakelock:x:3010:3010:::/bin/false
uhid:x:3011:3011:::/bin/false uhid:x:3011:3011:::/bin/false
ddms:x:3012:3012:::/bin/false ddms:x:3012:3012:::/bin/false
access_token:x:3020:3020:::/bin/false access_token:x:3020:3020:::/bin/false
blue_host:x:3021:3021:::/bin/false
sample_host:x:3022:3022:::/bin/false
usb_host:x:3023:3023:::/bin/false
usbfnMaster_host:x:3024:3024:::/bin/false
power_host:x:3025:3025:::/bin/false
wifi_host:x:3026:3026:::/bin/false
audio_hdi_server_host:x:3027:3027:::/bin/false
camera_host:x:3028:3028:::/bin/false
input_user_host:x:3029:3029:::/bin/false
display_gralloc_host:x:3030:3030:::/bin/false
codec_host:x:3031:3031:::/bin/false
riladapter_host:x:3032:3032:::/bin/false
sensor_dal_host:x:3033:3033:::/bin/false
vibrator_dal_host:x:3034:3034:::/bin/false
light_dal_host:x:3035:3035:::/bin/false
wifi_c_host:x:3036:3036:::/bin/false
disp_gralloc_host:x:3037:3037:::/bin/false
dcamera_host:x:3038:3038:::/bin/false
hwc_host:x:3039:3039:::/bin/false
gralloc_host:x:3040:3040:::/bin/false
sensor_host:x:3041:3041:::/bin/false
nfc_host:x:3042:3042:::/bin/false
a2dp_host:x:3043:3043:::/bin/false
hdf_devmgr:x:3044:3044:::/bin/false
connected_tag_host:x:3045:3045:::/bin/false
dslm:x:3046:3046:::/bin/false
dms:x:5522:5522:::/bin/false dms:x:5522:5522:::/bin/false
sensor:x:6688:6688:::/bin/false
msdp:x:6699:6699:::/bin/false
misc:x:9998:9998:::/bin/false misc:x:9998:9998:::/bin/false
app:x:10000:10000:::/bin/false app:x:10000:10000:::/bin/false
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -229,7 +229,10 @@ static void PublishHoldFds(Service *service) ...@@ -229,7 +229,10 @@ static void PublishHoldFds(Service *service)
fdBuffer[pos - 1] = '\0'; // Remove last ' ' fdBuffer[pos - 1] = '\0'; // Remove last ' '
INIT_LOGI("fd buffer: [%s]", fdBuffer); INIT_LOGI("fd buffer: [%s]", fdBuffer);
char envName[MAX_BUFFER_LEN] = {}; char envName[MAX_BUFFER_LEN] = {};
(void)snprintf_s(envName, MAX_BUFFER_LEN, MAX_BUFFER_LEN - 1, ENV_FD_HOLD_PREFIX"%s", service->name); if (snprintf_s(envName, MAX_BUFFER_LEN, MAX_BUFFER_LEN - 1, ENV_FD_HOLD_PREFIX"%s", service->name) < 0) {
INIT_LOGE("snprintf_s failed err=%d", errno);
return;
}
if (setenv(envName, fdBuffer, 1) < 0) { if (setenv(envName, fdBuffer, 1) < 0) {
INIT_LOGE("Failed to set env %s", envName); INIT_LOGE("Failed to set env %s", envName);
} }
...@@ -570,7 +573,7 @@ static void ServiceTimerStartProcess(const TimerHandle handler, void *context) ...@@ -570,7 +573,7 @@ static void ServiceTimerStartProcess(const TimerHandle handler, void *context)
ServiceStopTimer(service); ServiceStopTimer(service);
int ret = ServiceStart(service); int ret = ServiceStart(service);
if (ret != SERVICE_SUCCESS) { if (ret != SERVICE_SUCCESS) {
INIT_LOGE("Start service \' %s \' in timer failed"); INIT_LOGE("Start service \' %s \' in timer failed", service->name);
} }
} }
......
文件模式从 100755 更改为 100644
...@@ -24,7 +24,8 @@ static InitWorkspace g_initWorkspace = {0, 0, {0}, {0}, {0}}; ...@@ -24,7 +24,8 @@ static InitWorkspace g_initWorkspace = {0, 0, {0}, {0}, {0}};
int GenerateHashCode(const char *key) int GenerateHashCode(const char *key)
{ {
int code = 0; int code = 0;
for (size_t i = 0; i < strlen(key); i++) { size_t keyLen = strlen(key);
for (size_t i = 0; i < keyLen; i++) {
code += key[i] - 'A'; code += key[i] - 'A';
} }
return code; return code;
......
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -62,12 +62,17 @@ static int HandlerHoldFds(Service *service, int *fds, size_t fdCount, const char ...@@ -62,12 +62,17 @@ static int HandlerHoldFds(Service *service, int *fds, size_t fdCount, const char
static void SendErrorInfo(int sock, const char *errInfo, const char *serviceName) static void SendErrorInfo(int sock, const char *errInfo, const char *serviceName)
{ {
int ret = 0;
char errBuffer[MAX_FD_HOLDER_BUFFER] = {}; char errBuffer[MAX_FD_HOLDER_BUFFER] = {};
if (UNLIKELY(errInfo == NULL)) { // Should not happen. if (UNLIKELY(errInfo == NULL)) { // Should not happen.
char *defaultError = "Unknonw error"; char *defaultError = "Unknonw error";
(void)strncpy_s(errBuffer, MAX_FD_HOLDER_BUFFER, defaultError, strlen(defaultError)); ret = strncpy_s(errBuffer, MAX_FD_HOLDER_BUFFER, defaultError, strlen(defaultError));
} else { } else {
(void)strncpy_s(errBuffer, MAX_FD_HOLDER_BUFFER, errInfo, strlen(errInfo)); ret = strncpy_s(errBuffer, MAX_FD_HOLDER_BUFFER, errInfo, strlen(errInfo));
}
if (ret != 0) {
INIT_LOGE("Failed to copy, err = %d", errno);
return;
} }
struct iovec iovec = { struct iovec iovec = {
...@@ -96,7 +101,10 @@ static void SendFdsInfo(int sock, Service *service) ...@@ -96,7 +101,10 @@ static void SendFdsInfo(int sock, Service *service)
return; return;
} }
char sendBuffer[MAX_FD_HOLDER_BUFFER] = {}; char sendBuffer[MAX_FD_HOLDER_BUFFER] = {};
(void)strncpy_s(sendBuffer, MAX_FD_HOLDER_BUFFER, "send done", strlen("send done")); if (strncpy_s(sendBuffer, MAX_FD_HOLDER_BUFFER, "send done", strlen("send done")) != 0) {
INIT_LOGE("Failed to copy, err = %d", errno);
return;
}
struct iovec iovec = { struct iovec iovec = {
.iov_base = sendBuffer, .iov_base = sendBuffer,
.iov_len = strlen(sendBuffer), .iov_len = strlen(sendBuffer),
...@@ -134,7 +142,7 @@ static void HandlerGetFds(int sock, Service *service) ...@@ -134,7 +142,7 @@ static void HandlerGetFds(int sock, Service *service)
} }
if (service->fds == NULL || service->fdCount == 0) { if (service->fds == NULL || service->fdCount == 0) {
INIT_LOGE("Service \' %s \' does not have any held fds"); INIT_LOGE("Service \' %s \' does not have any held fds", service->name);
errorInfo = "Service without any fds"; errorInfo = "Service without any fds";
} }
......
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
...@@ -40,7 +40,6 @@ if (defined(ohos_lite)) { ...@@ -40,7 +40,6 @@ if (defined(ohos_lite)) {
"system", "system",
"updater", "updater",
] ]
relative_install_dir = "platform-vndk"
install_enable = true install_enable = true
part_name = "init" part_name = "init"
subsystem_name = "startup" subsystem_name = "startup"
......
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
此差异已折叠。
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
文件模式从 100755 更改为 100644
此差异已折叠。
文件模式从 100755 更改为 100644
此差异已折叠。
此差异已折叠。
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册