Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Kernel Liteos A
提交
9c71de6a
K
Kernel Liteos A
项目概览
OpenHarmony
/
Kernel Liteos A
1 年多 前同步成功
通知
460
Star
414
Fork
55
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
4
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
4
Issue
4
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
9c71de6a
编写于
5月 05, 2023
作者:
O
openharmony_ci
提交者:
Gitee
5月 05, 2023
浏览文件
操作
浏览文件
下载
差异文件
!1158 Fix : 部件化需求整改
Merge pull request !1158 from yinjiaming/bundle
上级
243b1e26
47a4fe03
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
24 addition
and
24 deletion
+24
-24
apps/lms/BUILD.gn
apps/lms/BUILD.gn
+1
-1
bundle.json
bundle.json
+3
-3
fs/vfs/BUILD.gn
fs/vfs/BUILD.gn
+5
-5
testsuites/kernel/BUILD.gn
testsuites/kernel/BUILD.gn
+13
-13
testsuites/kernel/sample/kernel_base/core/BUILD.gn
testsuites/kernel/sample/kernel_base/core/BUILD.gn
+1
-1
testsuites/kernel/sample/kernel_base/ipc/BUILD.gn
testsuites/kernel/sample/kernel_base/ipc/BUILD.gn
+1
-1
未找到文件。
apps/lms/BUILD.gn
浏览文件 @
9c71de6a
...
@@ -73,5 +73,5 @@ executable("sample_usr_lms") {
...
@@ -73,5 +73,5 @@ executable("sample_usr_lms") {
"-Wl,--wrap=strcpy",
"-Wl,--wrap=strcpy",
"-Wl,--wrap=strcat",
"-Wl,--wrap=strcat",
]
]
deps = [ "
//kernel/liteos_a
/kernel/extended/lms/usr:usrlmslib" ]
deps = [ "
$LITEOSTOPDIR
/kernel/extended/lms/usr:usrlmslib" ]
}
}
bundle.json
浏览文件 @
9c71de6a
...
@@ -28,15 +28,15 @@
...
@@ -28,15 +28,15 @@
"name"
:
"liteos_a"
,
"name"
:
"liteos_a"
,
"subsystem"
:
"kernel"
,
"subsystem"
:
"kernel"
,
"syscap"
:
[
"syscap"
:
[
"SystemCapability.Kernel.
liteos-a
"
"SystemCapability.Kernel.
Liteos-A
"
],
],
"features"
:
[],
"features"
:
[],
"adated_system_type"
:
[
"ada
p
ted_system_type"
:
[
"small"
"small"
],
],
"rom"
:
"1.5MB"
,
"rom"
:
"1.5MB"
,
"ram"
:
"2MB"
,
"ram"
:
"2MB"
,
"deps"
:
{
"
external_
deps"
:
{
"components"
:
[
"components"
:
[
],
],
"third_party"
:
[
"third_party"
:
[
...
...
fs/vfs/BUILD.gn
浏览文件 @
9c71de6a
...
@@ -34,11 +34,8 @@ module_switch = defined(LOSCFG_FS_VFS)
...
@@ -34,11 +34,8 @@ module_switch = defined(LOSCFG_FS_VFS)
module_name = get_path_info(rebase_path("."), "name")
module_name = get_path_info(rebase_path("."), "name")
kernel_module(module_name) {
kernel_module(module_name) {
sources = [
sources = [
"$LITEOSTOPDIR/fs/vfs/epoll/fs_epoll.c",
"epoll/fs_epoll.c",
"$LITEOSTOPDIR/fs/vfs/mount.c",
"mount.c",
"$LITEOSTOPDIR/fs/vfs/path_cache.c",
"$LITEOSTOPDIR/fs/vfs/vnode.c",
"$LITEOSTOPDIR/fs/vfs/vnode_hash.c",
"operation/fullpath.c",
"operation/fullpath.c",
"operation/vfs_chattr.c",
"operation/vfs_chattr.c",
"operation/vfs_check.c",
"operation/vfs_check.c",
...
@@ -55,7 +52,10 @@ kernel_module(module_name) {
...
@@ -55,7 +52,10 @@ kernel_module(module_name) {
"operation/vfs_readv.c",
"operation/vfs_readv.c",
"operation/vfs_utime.c",
"operation/vfs_utime.c",
"operation/vfs_writev.c",
"operation/vfs_writev.c",
"path_cache.c",
"vfs_cmd/vfs_shellcmd.c",
"vfs_cmd/vfs_shellcmd.c",
"vnode.c",
"vnode_hash.c",
]
]
sources += NUTTX_FS_DIRENT_SRC_FILES
sources += NUTTX_FS_DIRENT_SRC_FILES
sources += NUTTX_FS_DRIVER_SRC_FILES
sources += NUTTX_FS_DRIVER_SRC_FILES
...
...
testsuites/kernel/BUILD.gn
浏览文件 @
9c71de6a
...
@@ -39,21 +39,21 @@ declare_args() {
...
@@ -39,21 +39,21 @@ declare_args() {
config("liteos_kernel_test_public") {
config("liteos_kernel_test_public") {
cflags = [ "-Wno-error" ]
cflags = [ "-Wno-error" ]
include_dirs = [
include_dirs = [
"
//kernel/liteos_a
/kernel/include",
"
$LITEOSTOPDIR
/kernel/include",
"
//kernel/liteos_a
/kernel/base/include",
"
$LITEOSTOPDIR
/kernel/base/include",
"
//kernel/liteos_a
/kernel/common",
"
$LITEOSTOPDIR
/kernel/common",
"
//kernel/liteos_a
/arch/arm/arm/include",
"
$LITEOSTOPDIR
/arch/arm/arm/include",
"
//kernel/liteos_a
/arch/arm/include",
"
$LITEOSTOPDIR
/arch/arm/include",
"
//kernel/liteos_a
/extended/include",
"
$LITEOSTOPDIR
/extended/include",
"//third_party/musl/porting/liteos_a/kernel/include",
"//third_party/musl/porting/liteos_a/kernel/include",
"//third_party/bounds_checking_function/include/",
"//third_party/bounds_checking_function/include/",
"
//kernel/liteos_a
/lib/libscrew/include",
"
$LITEOSTOPDIR
/lib/libscrew/include",
"
//kernel/liteos_a
/fs/vfs",
"
$LITEOSTOPDIR
/fs/vfs",
"
//kernel/liteos_a
/fs/proc/include",
"
$LITEOSTOPDIR
/fs/proc/include",
"
//kernel/liteos_a
/fs/jffs2/include",
"
$LITEOSTOPDIR
/fs/jffs2/include",
"
//kernel/liteos_a
/fs/nfs/include",
"
$LITEOSTOPDIR
/fs/nfs/include",
"
//kernel/liteos_a
/bsd/compat/linuxkpi/include",
"
$LITEOSTOPDIR
/bsd/compat/linuxkpi/include",
"
//kernel/liteos_a/testsuites/kernel/
include",
"include",
]
]
if (LOSCFG_TEST_KERNEL_BASE) {
if (LOSCFG_TEST_KERNEL_BASE) {
...
...
testsuites/kernel/sample/kernel_base/core/BUILD.gn
浏览文件 @
9c71de6a
...
@@ -260,5 +260,5 @@ kernel_module("test_core") {
...
@@ -260,5 +260,5 @@ kernel_module("test_core") {
]
]
public_configs =
public_configs =
[ "
//kernel/liteos_a
/testsuites/kernel:liteos_kernel_test_public" ]
[ "
$LITEOSTOPDIR
/testsuites/kernel:liteos_kernel_test_public" ]
}
}
testsuites/kernel/sample/kernel_base/ipc/BUILD.gn
浏览文件 @
9c71de6a
...
@@ -107,5 +107,5 @@ kernel_module("test_ipc") {
...
@@ -107,5 +107,5 @@ kernel_module("test_ipc") {
]
]
public_configs =
public_configs =
[ "
//kernel/liteos_a
/testsuites/kernel:liteos_kernel_test_public" ]
[ "
$LITEOSTOPDIR
/testsuites/kernel:liteos_kernel_test_public" ]
}
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录