fix:部件需求整改
修复了脚本扫描出的bundle.json的问题,整改了 不符合规范的路径引用 Signed-off-by: yinjiaming <yinjiaming@huawei.com> Change-Id: I11c321f8707d3e44dd7ee40dac35cf99907fb864
This commit is contained in:
parent
d9e9631286
commit
47a4fe030b
|
@ -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 @@
|
||||||
"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)
|
||||||
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) {
|
||||||
"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() {
|
||||||
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") {
|
||||||
]
|
]
|
||||||
|
|
||||||
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") {
|
||||||
]
|
]
|
||||||
|
|
||||||
public_configs =
|
public_configs =
|
||||||
[ "//kernel/liteos_a/testsuites/kernel:liteos_kernel_test_public" ]
|
[ "$LITEOSTOPDIR/testsuites/kernel:liteos_kernel_test_public" ]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue