未验证 提交 9c71de6a 编写于 作者: O openharmony_ci 提交者: Gitee

!1158 Fix : 部件化需求整改

Merge pull request !1158 from yinjiaming/bundle
...@@ -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" ]
} }
...@@ -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": [ "adapted_system_type": [
"small" "small"
], ],
"rom": "1.5MB", "rom": "1.5MB",
"ram": "2MB", "ram": "2MB",
"deps": { "external_deps": {
"components": [ "components": [
], ],
"third_party": [ "third_party": [
......
...@@ -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
......
...@@ -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) {
......
...@@ -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" ]
} }
...@@ -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.
先完成此消息的编辑!
想要评论请 注册