Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
a9788845
S
Startup Init Lite
项目概览
OpenHarmony
/
Startup Init Lite
大约 1 年 前同步成功
通知
3
Star
37
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Startup Init Lite
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
a9788845
编写于
5月 14, 2022
作者:
O
openharmony_ci
提交者:
Gitee
5月 14, 2022
浏览文件
操作
浏览文件
下载
差异文件
!610 Add 64bit support for modulemgr
Merge pull request !610 from handy/0514
上级
6b4e30fd
2ced3fab
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
19 addition
and
2 deletion
+19
-2
interfaces/innerkits/BUILD.gn
interfaces/innerkits/BUILD.gn
+4
-0
interfaces/innerkits/modulemgr/modulemgr.c
interfaces/innerkits/modulemgr/modulemgr.c
+7
-2
services/BUILD.gn
services/BUILD.gn
+4
-0
test/unittest/BUILD.gn
test/unittest/BUILD.gn
+4
-0
未找到文件。
interfaces/innerkits/BUILD.gn
浏览文件 @
a9788845
...
...
@@ -170,6 +170,10 @@ if (defined(ohos_lite)) {
"_GNU_SOURCE",
"INIT_FILE",
]
if (target_cpu == "arm64") {
defines += [ "SUPPORT_64BIT" ]
}
include_dirs = [
"./include",
"//third_party/bounds_checking_function/include",
...
...
interfaces/innerkits/modulemgr/modulemgr.c
浏览文件 @
a9788845
...
...
@@ -27,6 +27,11 @@
#include "modulemgr.h"
#define MODULE_SUFFIX_D ".z.so"
#ifdef SUPPORT_64BIT
#define MODULE_LIB_NAME "lib64"
#else
#define MODULE_LIB_NAME "lib"
#endif
struct
tagMODULE_MGR
{
ListNode
modules
;
...
...
@@ -114,7 +119,7 @@ static void *moduleInstall(MODULE_ITEM *module, int argc, const char *argv[])
if
(
module
->
moduleMgr
->
name
[
0
]
==
'/'
)
{
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"%s/%s"
MODULE_SUFFIX_D
,
module
->
moduleMgr
->
name
,
module
->
name
);
}
else
{
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"/system/
lib
/%s/%s"
MODULE_SUFFIX_D
,
module
->
moduleMgr
->
name
,
module
->
name
);
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"/system/
"
MODULE_LIB_NAME
"
/%s/%s"
MODULE_SUFFIX_D
,
module
->
moduleMgr
->
name
,
module
->
name
);
}
currentInstallArgs
=
&
(
module
->
moduleMgr
->
installArgs
);
...
...
@@ -236,7 +241,7 @@ MODULE_MGR *ModuleMgrScan(const char *modulePath)
if
(
modulePath
[
0
]
==
'/'
)
{
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"%s"
,
modulePath
);
}
else
{
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"/system/
lib
/%s"
,
modulePath
);
snprintf_s
(
path
,
sizeof
(
path
),
sizeof
(
path
)
-
1
,
"/system/
"
MODULE_LIB_NAME
"
/%s"
,
modulePath
);
}
scanModules
(
moduleMgr
,
path
);
...
...
services/BUILD.gn
浏览文件 @
a9788845
...
...
@@ -237,6 +237,10 @@ if (defined(ohos_lite)) {
]
}
if (target_cpu == "arm64") {
defines += [ "SUPPORT_64BIT" ]
}
if (!enable_ramdisk) {
defines += [ "DISABLE_INIT_TWO_STAGES" ]
}
...
...
test/unittest/BUILD.gn
浏览文件 @
a9788845
...
...
@@ -212,6 +212,10 @@ ohos_unittest("init_ut") {
]
defines += [ "_GNU_SOURCE" ]
if (target_cpu == "arm64") {
defines += [ "SUPPORT_64BIT" ]
}
external_deps = [
"hiviewdfx_hilog_native:libhilog",
"init:libinit_module_engine",
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录