Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Startup Init Lite
提交
84a840d9
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看板
提交
84a840d9
编写于
6月 09, 2023
作者:
M
mgceshuang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[bootDetector] uninstall the plugin after boot complete
Signed-off-by:
N
mgceshuang
<
mashuang13@huawei.com
>
上级
c94657fd
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
17 addition
and
2 deletion
+17
-2
interfaces/innerkits/fs_manager/fstab_mount.c
interfaces/innerkits/fs_manager/fstab_mount.c
+5
-0
interfaces/innerkits/init_module_engine/include/bootstage.h
interfaces/innerkits/init_module_engine/include/bootstage.h
+1
-1
interfaces/innerkits/init_module_engine/include/init_modulemgr.h
...ces/innerkits/init_module_engine/include/init_modulemgr.h
+2
-0
interfaces/innerkits/init_module_engine/init_modulemgr.c
interfaces/innerkits/init_module_engine/init_modulemgr.c
+5
-0
interfaces/innerkits/init_module_engine/stub/libinit.stub.json
...faces/innerkits/init_module_engine/stub/libinit.stub.json
+2
-0
services/init/standard/init.c
services/init/standard/init.c
+1
-1
services/modules/bootevent/bootevent.c
services/modules/bootevent/bootevent.c
+1
-0
未找到文件。
interfaces/innerkits/fs_manager/fstab_mount.c
浏览文件 @
84a840d9
...
...
@@ -54,6 +54,10 @@ __attribute__((weak)) void RetriggerUeventByPath(int sockFd, char *path)
}
#endif
__attribute__
((
weak
))
void
InitPostMount
(
const
char
*
mountPoint
,
int
rc
)
{
}
bool
IsSupportedFilesystem
(
const
char
*
fsType
)
{
bool
supported
=
false
;
...
...
@@ -406,6 +410,7 @@ int MountOneItem(FstabItem *item)
}
int
rc
=
Mount
(
item
->
deviceName
,
item
->
mountPoint
,
item
->
fsType
,
mountFlags
,
fsSpecificData
);
InitPostMount
(
item
->
mountPoint
,
rc
);
if
(
rc
!=
0
)
{
if
(
FM_MANAGER_NOFAIL_ENABLED
(
item
->
fsManagerFlags
))
{
BEGET_LOGE
(
"Mount no fail device %s to %s failed, err = %d"
,
item
->
deviceName
,
item
->
mountPoint
,
errno
);
...
...
interfaces/innerkits/init_module_engine/include/bootstage.h
浏览文件 @
84a840d9
...
...
@@ -27,7 +27,7 @@ extern "C" {
enum
INIT_BOOTSTAGE
{
INIT_GLOBAL_INIT
=
0
,
INIT_
POST_MOUNT
=
3
,
INIT_
FIRST_STAGE
=
1
,
INIT_POST_DATA_UNENCRYPT
=
5
,
INIT_PRE_PARAM_SERVICE
=
10
,
INIT_PRE_PARAM_LOAD
=
20
,
...
...
interfaces/innerkits/init_module_engine/include/init_modulemgr.h
浏览文件 @
84a840d9
...
...
@@ -28,6 +28,8 @@ int InitModuleMgrInstall(const char *moduleName);
void
InitModuleMgrUnInstall
(
const
char
*
moduleName
);
void
AutorunModuleMgrUnInstall
(
const
char
*
moduleName
);
void
InitModuleMgrDump
(
void
);
#ifdef __cplusplus
...
...
interfaces/innerkits/init_module_engine/init_modulemgr.c
浏览文件 @
84a840d9
...
...
@@ -40,6 +40,11 @@ void InitModuleMgrUnInstall(const char *moduleName)
ModuleMgrUninstall
(
defaultModuleMgr
,
moduleName
);
}
void
AutorunModuleMgrUnInstall
(
const
char
*
moduleName
)
{
ModuleMgrUninstall
(
autorunModuleMgr
,
moduleName
);
}
static
void
InitModuleDump
(
const
MODULE_INFO
*
moduleInfo
)
{
printf
(
"%s
\n
"
,
moduleInfo
->
name
);
...
...
interfaces/innerkits/init_module_engine/stub/libinit.stub.json
浏览文件 @
84a840d9
...
...
@@ -6,6 +6,7 @@
{
"name"
:
"AddCmdExecutor"
},
{
"name"
:
"RemoveCmdExecutor"
},
{
"name"
:
"HookMgrAdd"
},
{
"name"
:
"HookMgrDel"
},
{
"name"
:
"GetBootStageHookMgr"
},
{
"name"
:
"InitAddGlobalInitHook"
},
{
"name"
:
"InitAddPreParamServiceHook"
},
...
...
@@ -14,6 +15,7 @@
{
"name"
:
"InitAddPostCfgLoadHook"
},
{
"name"
:
"InitModuleMgrInstall"
},
{
"name"
:
"InitModuleMgrUnInstall"
},
{
"name"
:
"AutorunModuleMgrUnInstall"
},
{
"name"
:
"StartupLog"
},
{
"name"
:
"DoJobNow"
},
{
"name"
:
"GetServiceExtData"
},
...
...
services/init/standard/init.c
浏览文件 @
84a840d9
...
...
@@ -230,7 +230,7 @@ void SystemPrepare(void)
// Make sure init log always output to /dev/kmsg.
EnableDevKmsg
();
INIT_LOGI
(
"Start init first stage."
);
HookMgrExecute
(
GetBootStageHookMgr
(),
INIT_
PRE_PARAM_SERVIC
E
,
NULL
,
NULL
);
HookMgrExecute
(
GetBootStageHookMgr
(),
INIT_
FIRST_STAG
E
,
NULL
,
NULL
);
// Only ohos normal system support
// two stages of init.
// If we are in updater mode, only one stage of init.
...
...
services/modules/bootevent/bootevent.c
浏览文件 @
84a840d9
...
...
@@ -260,6 +260,7 @@ static void BootEventParaFireByName(const char *paramName)
#ifndef STARTUP_INIT_TEST
HookMgrExecute
(
GetBootStageHookMgr
(),
INIT_BOOT_COMPLETE
,
NULL
,
NULL
);
#endif
AutorunModuleMgrUnInstall
(
"init_bootDetector"
);
return
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录