Skip to content
首页
学习广场
开源秀
项目
组织
正在加载...
登录
切换导航
打开侧边栏
晶通物控
Kernel Liteos A
提交
6df931fc
K
Kernel Liteos A
项目概览
晶通物控
/
Kernel Liteos A
与 Fork 源项目一致
Fork自
OpenHarmony / Kernel Liteos A
通知
1
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel Liteos A
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
6df931fc
编写于
9月 08, 2020
作者:
W
wenjun
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add OpenHarmony 1.0 baseline
上级
94f5f466
变更
736
展开全部
隐藏空白更改
内联
并排
Showing
736 changed file
with
111817 addition
and
0 deletion
+111817
-0
.gitee/ISSUE_TEMPLATE.zh-CN.md
.gitee/ISSUE_TEMPLATE.zh-CN.md
+13
-0
.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
+15
-0
.gitignore
.gitignore
+25
-0
BUILD.gn
BUILD.gn
+68
-0
Kconfig
Kconfig
+381
-0
Makefile
Makefile
+202
-0
apps/Makefile
apps/Makefile
+49
-0
apps/config.mk
apps/config.mk
+60
-0
apps/init/Makefile
apps/init/Makefile
+63
-0
apps/init/src/init.c
apps/init/src/init.c
+57
-0
apps/module.mk
apps/module.mk
+40
-0
apps/shell/Makefile
apps/shell/Makefile
+78
-0
apps/shell/builtin/cd.c
apps/shell/builtin/cd.c
+69
-0
apps/shell/include/shcmd.h
apps/shell/include/shcmd.h
+73
-0
apps/shell/include/shcmdparse.h
apps/shell/include/shcmdparse.h
+65
-0
apps/shell/include/shell.h
apps/shell/include/shell.h
+110
-0
apps/shell/include/shell_list.h
apps/shell/include/shell_list.h
+595
-0
apps/shell/include/shell_pri.h
apps/shell/include/shell_pri.h
+54
-0
apps/shell/include/sherr.h
apps/shell/include/sherr.h
+62
-0
apps/shell/include/shmsg.h
apps/shell/include/shmsg.h
+69
-0
apps/shell/include/show.h
apps/shell/include/show.h
+56
-0
apps/shell/src/main.c
apps/shell/src/main.c
+144
-0
apps/shell/src/shcmd.c
apps/shell/src/shcmd.c
+611
-0
apps/shell/src/shcmdparse.c
apps/shell/src/shcmdparse.c
+164
-0
apps/shell/src/shmsg.c
apps/shell/src/shmsg.c
+640
-0
arch/Kconfig
arch/Kconfig
+33
-0
arch/arm/Kconfig
arch/arm/Kconfig
+77
-0
arch/arm/arm.mk
arch/arm/arm.mk
+99
-0
arch/arm/arm/Makefile
arch/arm/arm/Makefile
+55
-0
arch/arm/arm/include/arch_config.h
arch/arm/arm/include/arch_config.h
+103
-0
arch/arm/arm/include/arm.h
arch/arm/arm/include/arm.h
+1135
-0
arch/arm/arm/include/arm_user_copy.h
arch/arm/arm/include/arm_user_copy.h
+36
-0
arch/arm/arm/include/arm_user_get.h
arch/arm/arm/include/arm_user_get.h
+52
-0
arch/arm/arm/include/arm_user_put.h
arch/arm/arm/include/arm_user_put.h
+52
-0
arch/arm/arm/include/los_arch_mmu.h
arch/arm/arm/include/los_arch_mmu.h
+75
-0
arch/arm/arm/include/los_asid.h
arch/arm/arm/include/los_asid.h
+61
-0
arch/arm/arm/include/los_atomic.h
arch/arm/arm/include/los_atomic.h
+892
-0
arch/arm/arm/include/los_hw_cpu.h
arch/arm/arm/include/los_hw_cpu.h
+256
-0
arch/arm/arm/include/los_mmu_descriptor_v6.h
arch/arm/arm/include/los_mmu_descriptor_v6.h
+224
-0
arch/arm/arm/include/los_pte_ops.h
arch/arm/arm/include/los_pte_ops.h
+176
-0
arch/arm/arm/include/los_tlb_v6.h
arch/arm/arm/include/los_tlb_v6.h
+93
-0
arch/arm/arm/src/armv7a/cache.S
arch/arm/arm/src/armv7a/cache.S
+80
-0
arch/arm/arm/src/hw_user_get.S
arch/arm/arm/src/hw_user_get.S
+77
-0
arch/arm/arm/src/hw_user_put.S
arch/arm/arm/src/hw_user_put.S
+77
-0
arch/arm/arm/src/include/asm.h
arch/arm/arm/src/include/asm.h
+66
-0
arch/arm/arm/src/include/los_exc_pri.h
arch/arm/arm/src/include/los_exc_pri.h
+62
-0
arch/arm/arm/src/include/los_hw_pri.h
arch/arm/arm/src/include/los_hw_pri.h
+96
-0
arch/arm/arm/src/include/los_hwi_pri.h
arch/arm/arm/src/include/los_hwi_pri.h
+69
-0
arch/arm/arm/src/jmp.S
arch/arm/arm/src/jmp.S
+52
-0
arch/arm/arm/src/los_arch_mmu.c
arch/arm/arm/src/los_arch_mmu.c
+882
-0
arch/arm/arm/src/los_asid.c
arch/arm/arm/src/los_asid.c
+80
-0
arch/arm/arm/src/los_dispatch.S
arch/arm/arm/src/los_dispatch.S
+313
-0
arch/arm/arm/src/los_exc.c
arch/arm/arm/src/los_exc.c
+1065
-0
arch/arm/arm/src/los_hw.c
arch/arm/arm/src/los_hw.c
+199
-0
arch/arm/arm/src/los_hw_exc.S
arch/arm/arm/src/los_hw_exc.S
+412
-0
arch/arm/arm/src/los_hw_runstop.S
arch/arm/arm/src/los_hw_runstop.S
+132
-0
arch/arm/arm/src/los_hw_tick.c
arch/arm/arm/src/los_hw_tick.c
+88
-0
arch/arm/arm/src/los_hwi.c
arch/arm/arm/src/los_hwi.c
+351
-0
arch/arm/arm/src/startup/reset_vector_mp.S
arch/arm/arm/src/startup/reset_vector_mp.S
+505
-0
arch/arm/arm/src/startup/reset_vector_up.S
arch/arm/arm/src/startup/reset_vector_up.S
+473
-0
arch/arm/arm/src/strncpy_from_user.c
arch/arm/arm/src/strncpy_from_user.c
+74
-0
arch/arm/arm/src/strnlen_user.c
arch/arm/arm/src/strnlen_user.c
+73
-0
arch/arm/arm/src/user_copy.c
arch/arm/arm/src/user_copy.c
+122
-0
arch/arm/include/in_cksum.h
arch/arm/include/in_cksum.h
+52
-0
arch/arm/include/los_exc.h
arch/arm/include/los_exc.h
+233
-0
arch/arm/include/los_hw.h
arch/arm/include/los_hw.h
+318
-0
arch/arm/include/los_hw_arch.h
arch/arm/include/los_hw_arch.h
+50
-0
arch/arm/include/los_hw_tick_pri.h
arch/arm/include/los_hw_tick_pri.h
+52
-0
arch/arm/include/los_hwi.h
arch/arm/include/los_hwi.h
+422
-0
arch/arm/include/los_strncpy_from_user.h
arch/arm/include/los_strncpy_from_user.h
+64
-0
arch/arm/include/los_strnlen_user.h
arch/arm/include/los_strnlen_user.h
+63
-0
arch/arm/include/los_sys_stack_pri.h
arch/arm/include/los_sys_stack_pri.h
+67
-0
arch/arm/include/los_user_get.h
arch/arm/include/los_user_get.h
+65
-0
arch/arm/include/los_user_put.h
arch/arm/include/los_user_put.h
+65
-0
arch/arm/include/user_copy.h
arch/arm/include/user_copy.h
+103
-0
arch/cpu.mk
arch/cpu.mk
+32
-0
bsd/Kconfig
bsd/Kconfig
+6
-0
bsd/Makefile
bsd/Makefile
+54
-0
bsd/arm/autoconf.c
bsd/arm/autoconf.c
+1
-0
bsd/arm/hw_user_copy.S
bsd/arm/hw_user_copy.S
+1
-0
bsd/arm/in_cksum.c
bsd/arm/in_cksum.c
+1
-0
bsd/arm/in_cksum_arm.S
bsd/arm/in_cksum_arm.S
+1
-0
bsd/arm/include/_bus.h
bsd/arm/include/_bus.h
+1
-0
bsd/arm/nexus.c
bsd/arm/nexus.c
+1
-0
bsd/compat/linuxkpi/Makefile
bsd/compat/linuxkpi/Makefile
+42
-0
bsd/compat/linuxkpi/include/asm/atomic.h
bsd/compat/linuxkpi/include/asm/atomic.h
+1
-0
bsd/compat/linuxkpi/include/asm/barrier.h
bsd/compat/linuxkpi/include/asm/barrier.h
+1
-0
bsd/compat/linuxkpi/include/asm/io.h
bsd/compat/linuxkpi/include/asm/io.h
+1
-0
bsd/compat/linuxkpi/include/asm/page.h
bsd/compat/linuxkpi/include/asm/page.h
+1
-0
bsd/compat/linuxkpi/include/linux/atomic.h
bsd/compat/linuxkpi/include/linux/atomic.h
+1
-0
bsd/compat/linuxkpi/include/linux/compat.h
bsd/compat/linuxkpi/include/linux/compat.h
+1
-0
bsd/compat/linuxkpi/include/linux/compiler.h
bsd/compat/linuxkpi/include/linux/compiler.h
+1
-0
bsd/compat/linuxkpi/include/linux/completion.h
bsd/compat/linuxkpi/include/linux/completion.h
+1
-0
bsd/compat/linuxkpi/include/linux/ctype.h
bsd/compat/linuxkpi/include/linux/ctype.h
+1
-0
bsd/compat/linuxkpi/include/linux/delay.h
bsd/compat/linuxkpi/include/linux/delay.h
+1
-0
bsd/compat/linuxkpi/include/linux/dma-mapping.h
bsd/compat/linuxkpi/include/linux/dma-mapping.h
+1
-0
bsd/compat/linuxkpi/include/linux/errno.h
bsd/compat/linuxkpi/include/linux/errno.h
+1
-0
bsd/compat/linuxkpi/include/linux/fcntl.h
bsd/compat/linuxkpi/include/linux/fcntl.h
+1
-0
bsd/compat/linuxkpi/include/linux/fs.h
bsd/compat/linuxkpi/include/linux/fs.h
+1
-0
bsd/compat/linuxkpi/include/linux/hrtimer.h
bsd/compat/linuxkpi/include/linux/hrtimer.h
+1
-0
bsd/compat/linuxkpi/include/linux/icmp.h
bsd/compat/linuxkpi/include/linux/icmp.h
+1
-0
bsd/compat/linuxkpi/include/linux/interrupt.h
bsd/compat/linuxkpi/include/linux/interrupt.h
+1
-0
bsd/compat/linuxkpi/include/linux/io.h
bsd/compat/linuxkpi/include/linux/io.h
+1
-0
bsd/compat/linuxkpi/include/linux/ioctl.h
bsd/compat/linuxkpi/include/linux/ioctl.h
+1
-0
bsd/compat/linuxkpi/include/linux/jiffies.h
bsd/compat/linuxkpi/include/linux/jiffies.h
+1
-0
bsd/compat/linuxkpi/include/linux/kernel.h
bsd/compat/linuxkpi/include/linux/kernel.h
+1
-0
bsd/compat/linuxkpi/include/linux/list.h
bsd/compat/linuxkpi/include/linux/list.h
+1
-0
bsd/compat/linuxkpi/include/linux/module.h
bsd/compat/linuxkpi/include/linux/module.h
+1
-0
bsd/compat/linuxkpi/include/linux/moduleparam.h
bsd/compat/linuxkpi/include/linux/moduleparam.h
+1
-0
bsd/compat/linuxkpi/include/linux/mtd/mtd.h
bsd/compat/linuxkpi/include/linux/mtd/mtd.h
+1
-0
bsd/compat/linuxkpi/include/linux/mtd/mtd_list.h
bsd/compat/linuxkpi/include/linux/mtd/mtd_list.h
+1
-0
bsd/compat/linuxkpi/include/linux/pagemap.h
bsd/compat/linuxkpi/include/linux/pagemap.h
+1
-0
bsd/compat/linuxkpi/include/linux/rbtree.h
bsd/compat/linuxkpi/include/linux/rbtree.h
+1
-0
bsd/compat/linuxkpi/include/linux/rtc.h
bsd/compat/linuxkpi/include/linux/rtc.h
+1
-0
bsd/compat/linuxkpi/include/linux/rwsem.h
bsd/compat/linuxkpi/include/linux/rwsem.h
+1
-0
bsd/compat/linuxkpi/include/linux/scatterlist.h
bsd/compat/linuxkpi/include/linux/scatterlist.h
+1
-0
bsd/compat/linuxkpi/include/linux/sched.h
bsd/compat/linuxkpi/include/linux/sched.h
+1
-0
bsd/compat/linuxkpi/include/linux/semaphore.h
bsd/compat/linuxkpi/include/linux/semaphore.h
+1
-0
bsd/compat/linuxkpi/include/linux/slab.h
bsd/compat/linuxkpi/include/linux/slab.h
+1
-0
bsd/compat/linuxkpi/include/linux/spinlock.h
bsd/compat/linuxkpi/include/linux/spinlock.h
+1
-0
bsd/compat/linuxkpi/include/linux/stat.h
bsd/compat/linuxkpi/include/linux/stat.h
+1
-0
bsd/compat/linuxkpi/include/linux/string.h
bsd/compat/linuxkpi/include/linux/string.h
+1
-0
bsd/compat/linuxkpi/include/linux/timer.h
bsd/compat/linuxkpi/include/linux/timer.h
+1
-0
bsd/compat/linuxkpi/include/linux/tree.h
bsd/compat/linuxkpi/include/linux/tree.h
+1
-0
bsd/compat/linuxkpi/include/linux/types.h
bsd/compat/linuxkpi/include/linux/types.h
+1
-0
bsd/compat/linuxkpi/include/linux/wait.h
bsd/compat/linuxkpi/include/linux/wait.h
+1
-0
bsd/compat/linuxkpi/include/linux/wakelock.h
bsd/compat/linuxkpi/include/linux/wakelock.h
+1
-0
bsd/compat/linuxkpi/include/linux/workqueue.h
bsd/compat/linuxkpi/include/linux/workqueue.h
+1
-0
bsd/compat/linuxkpi/include/linux/zutil.h
bsd/compat/linuxkpi/include/linux/zutil.h
+1
-0
bsd/compat/linuxkpi/include/tzdst.h
bsd/compat/linuxkpi/include/tzdst.h
+1
-0
bsd/compat/linuxkpi/include/tzdst_pri.h
bsd/compat/linuxkpi/include/tzdst_pri.h
+1
-0
bsd/compat/linuxkpi/src/adp.c
bsd/compat/linuxkpi/src/adp.c
+1
-0
bsd/compat/linuxkpi/src/linux_completion.c
bsd/compat/linuxkpi/src/linux_completion.c
+1
-0
bsd/compat/linuxkpi/src/linux_hrtimer.c
bsd/compat/linuxkpi/src/linux_hrtimer.c
+1
-0
bsd/compat/linuxkpi/src/linux_interrupt.c
bsd/compat/linuxkpi/src/linux_interrupt.c
+1
-0
bsd/compat/linuxkpi/src/linux_sched.c
bsd/compat/linuxkpi/src/linux_sched.c
+1
-0
bsd/compat/linuxkpi/src/linux_semaphore.c
bsd/compat/linuxkpi/src/linux_semaphore.c
+1
-0
bsd/compat/linuxkpi/src/linux_timer.c
bsd/compat/linuxkpi/src/linux_timer.c
+1
-0
bsd/compat/linuxkpi/src/linux_wakelock.c
bsd/compat/linuxkpi/src/linux_wakelock.c
+1
-0
bsd/compat/linuxkpi/src/linux_workqueue.c
bsd/compat/linuxkpi/src/linux_workqueue.c
+1
-0
bsd/compat/linuxkpi/src/prctl.c
bsd/compat/linuxkpi/src/prctl.c
+1
-0
bsd/compat/linuxkpi/src/tzdst.c
bsd/compat/linuxkpi/src/tzdst.c
+1
-0
bsd/crypto/rijndael/rijndael-alg-fst.c
bsd/crypto/rijndael/rijndael-alg-fst.c
+1
-0
bsd/crypto/rijndael/rijndael-api-fst.c
bsd/crypto/rijndael/rijndael-api-fst.c
+1
-0
bsd/crypto/rijndael/rijndael-api-fst.h
bsd/crypto/rijndael/rijndael-api-fst.h
+1
-0
bsd/crypto/rijndael/rijndael.h
bsd/crypto/rijndael/rijndael.h
+1
-0
bsd/crypto/rijndael/rijndael_local.h
bsd/crypto/rijndael/rijndael_local.h
+1
-0
bsd/crypto/sha2/sha256.h
bsd/crypto/sha2/sha256.h
+1
-0
bsd/crypto/sha2/sha256c.c
bsd/crypto/sha2/sha256c.c
+1
-0
bsd/dev/random/hash.c
bsd/dev/random/hash.c
+1
-0
bsd/dev/random/hash.h
bsd/dev/random/hash.h
+1
-0
bsd/dev/random/randomdev.h
bsd/dev/random/randomdev.h
+1
-0
bsd/dev/random/uint128.h
bsd/dev/random/uint128.h
+1
-0
bsd/dev/random/unit_test.h
bsd/dev/random/unit_test.h
+1
-0
bsd/dev/random/yarrow.c
bsd/dev/random/yarrow.c
+1
-0
bsd/dev/random/yarrow.h
bsd/dev/random/yarrow.h
+1
-0
bsd/dev/usb/Kconfig
bsd/dev/usb/Kconfig
+102
-0
bsd/dev/usb/Makefile
bsd/dev/usb/Makefile
+131
-0
bsd/dev/usb/controller/ehci.c
bsd/dev/usb/controller/ehci.c
+1
-0
bsd/dev/usb/controller/ehci.h
bsd/dev/usb/controller/ehci.h
+1
-0
bsd/dev/usb/controller/ehci_pci.c
bsd/dev/usb/controller/ehci_pci.c
+1
-0
bsd/dev/usb/controller/ehcireg.h
bsd/dev/usb/controller/ehcireg.h
+1
-0
bsd/dev/usb/controller/usb_controller.c
bsd/dev/usb/controller/usb_controller.c
+1
-0
bsd/dev/usb/controller/xhci.c
bsd/dev/usb/controller/xhci.c
+1
-0
bsd/dev/usb/controller/xhci.h
bsd/dev/usb/controller/xhci.h
+1
-0
bsd/dev/usb/controller/xhci_pci.c
bsd/dev/usb/controller/xhci_pci.c
+1
-0
bsd/dev/usb/controller/xhcireg.h
bsd/dev/usb/controller/xhcireg.h
+1
-0
bsd/dev/usb/implementation/_macro_ref.h
bsd/dev/usb/implementation/_macro_ref.h
+1
-0
bsd/dev/usb/implementation/_thread_ref.h
bsd/dev/usb/implementation/_thread_ref.h
+1
-0
bsd/dev/usb/implementation/_types_ref.h
bsd/dev/usb/implementation/_types_ref.h
+1
-0
bsd/dev/usb/implementation/bsd_busspace.c
bsd/dev/usb/implementation/bsd_busspace.c
+1
-0
bsd/dev/usb/implementation/bsd_kernel.c
bsd/dev/usb/implementation/bsd_kernel.c
+1
-0
bsd/dev/usb/implementation/bsd_kernel.h
bsd/dev/usb/implementation/bsd_kernel.h
+1
-0
bsd/dev/usb/implementation/freebsd_sys.h
bsd/dev/usb/implementation/freebsd_sys.h
+1
-0
bsd/dev/usb/implementation/freebsd_usb.h
bsd/dev/usb/implementation/freebsd_usb.h
+1
-0
bsd/dev/usb/implementation/global_implementation.h
bsd/dev/usb/implementation/global_implementation.h
+1
-0
bsd/dev/usb/implementation/usb_api_pri.h
bsd/dev/usb/implementation/usb_api_pri.h
+1
-0
bsd/dev/usb/implementation/usb_btree.c
bsd/dev/usb/implementation/usb_btree.c
+1
-0
bsd/dev/usb/implementation/usb_btree.h
bsd/dev/usb/implementation/usb_btree.h
+1
-0
bsd/dev/usb/implementation/usb_busdma_loader.c
bsd/dev/usb/implementation/usb_busdma_loader.c
+1
-0
bsd/dev/usb/implementation/usb_init.c
bsd/dev/usb/implementation/usb_init.c
+1
-0
bsd/dev/usb/implementation/usb_init.h
bsd/dev/usb/implementation/usb_init.h
+1
-0
bsd/dev/usb/implementation/usb_version.c
bsd/dev/usb/implementation/usb_version.c
+1
-0
bsd/dev/usb/implementation/usbdevs.h
bsd/dev/usb/implementation/usbdevs.h
+1
-0
bsd/dev/usb/input/uhid.c
bsd/dev/usb/input/uhid.c
+1
-0
bsd/dev/usb/input/usb_rdesc.h
bsd/dev/usb/input/usb_rdesc.h
+1
-0
bsd/dev/usb/linux_usb.c
bsd/dev/usb/linux_usb.c
+1
-0
bsd/dev/usb/linux_usb.h
bsd/dev/usb/linux_usb.h
+1
-0
bsd/dev/usb/net/if_axe.c
bsd/dev/usb/net/if_axe.c
+1
-0
bsd/dev/usb/net/if_axereg.h
bsd/dev/usb/net/if_axereg.h
+1
-0
bsd/dev/usb/net/if_axge.c
bsd/dev/usb/net/if_axge.c
+1
-0
bsd/dev/usb/net/if_axgereg.h
bsd/dev/usb/net/if_axgereg.h
+1
-0
bsd/dev/usb/net/if_cdce.c
bsd/dev/usb/net/if_cdce.c
+1
-0
bsd/dev/usb/net/if_cdcereg.h
bsd/dev/usb/net/if_cdcereg.h
+1
-0
bsd/dev/usb/net/if_urndis.c
bsd/dev/usb/net/if_urndis.c
+1
-0
bsd/dev/usb/net/if_urndisreg.h
bsd/dev/usb/net/if_urndisreg.h
+1
-0
bsd/dev/usb/net/mii.h
bsd/dev/usb/net/mii.h
+1
-0
bsd/dev/usb/net/usb_eth_drv.c
bsd/dev/usb/net/usb_eth_drv.c
+1
-0
bsd/dev/usb/net/usb_eth_drv.h
bsd/dev/usb/net/usb_eth_drv.h
+1
-0
bsd/dev/usb/net/usb_ethernet.c
bsd/dev/usb/net/usb_ethernet.c
+1
-0
bsd/dev/usb/net/usb_ethernet.h
bsd/dev/usb/net/usb_ethernet.h
+1
-0
bsd/dev/usb/quirk/usb_quirk.c
bsd/dev/usb/quirk/usb_quirk.c
+1
-0
bsd/dev/usb/quirk/usb_quirk.h
bsd/dev/usb/quirk/usb_quirk.h
+1
-0
bsd/dev/usb/serial.h
bsd/dev/usb/serial.h
+1
-0
bsd/dev/usb/serial/u3g.c
bsd/dev/usb/serial/u3g.c
+1
-0
bsd/dev/usb/serial/usb_serial.c
bsd/dev/usb/serial/usb_serial.c
+1
-0
bsd/dev/usb/serial/usb_serial.h
bsd/dev/usb/serial/usb_serial.h
+1
-0
bsd/dev/usb/storage/scsi.h
bsd/dev/usb/storage/scsi.h
+1
-0
bsd/dev/usb/storage/scsi_all.h
bsd/dev/usb/storage/scsi_all.h
+1
-0
bsd/dev/usb/storage/umass.c
bsd/dev/usb/storage/umass.c
+1
-0
bsd/dev/usb/storage/umass_fs.h
bsd/dev/usb/storage/umass_fs.h
+1
-0
bsd/dev/usb/usb.h
bsd/dev/usb/usb.h
+1
-0
bsd/dev/usb/usb_bus.h
bsd/dev/usb/usb_bus.h
+1
-0
bsd/dev/usb/usb_busdma.h
bsd/dev/usb/usb_busdma.h
+1
-0
bsd/dev/usb/usb_cdc.h
bsd/dev/usb/usb_cdc.h
+1
-0
bsd/dev/usb/usb_controller.h
bsd/dev/usb/usb_controller.h
+1
-0
bsd/dev/usb/usb_core.c
bsd/dev/usb/usb_core.c
+1
-0
bsd/dev/usb/usb_core.h
bsd/dev/usb/usb_core.h
+1
-0
bsd/dev/usb/usb_debug.c
bsd/dev/usb/usb_debug.c
+1
-0
bsd/dev/usb/usb_debug.h
bsd/dev/usb/usb_debug.h
+1
-0
bsd/dev/usb/usb_dev.c
bsd/dev/usb/usb_dev.c
+1
-0
bsd/dev/usb/usb_dev.h
bsd/dev/usb/usb_dev.h
+1
-0
bsd/dev/usb/usb_device.c
bsd/dev/usb/usb_device.c
+1
-0
bsd/dev/usb/usb_device.h
bsd/dev/usb/usb_device.h
+1
-0
bsd/dev/usb/usb_dynamic.c
bsd/dev/usb/usb_dynamic.c
+1
-0
bsd/dev/usb/usb_dynamic.h
bsd/dev/usb/usb_dynamic.h
+1
-0
bsd/dev/usb/usb_endian.h
bsd/dev/usb/usb_endian.h
+1
-0
bsd/dev/usb/usb_error.c
bsd/dev/usb/usb_error.c
+1
-0
bsd/dev/usb/usb_freebsd_loader.h
bsd/dev/usb/usb_freebsd_loader.h
+1
-0
bsd/dev/usb/usb_generic.c
bsd/dev/usb/usb_generic.c
+1
-0
bsd/dev/usb/usb_generic.h
bsd/dev/usb/usb_generic.h
+1
-0
bsd/dev/usb/usb_handle_request.c
bsd/dev/usb/usb_handle_request.c
+1
-0
bsd/dev/usb/usb_hid.c
bsd/dev/usb/usb_hid.c
+1
-0
bsd/dev/usb/usb_hub.c
bsd/dev/usb/usb_hub.c
+1
-0
bsd/dev/usb/usb_hub.h
bsd/dev/usb/usb_hub.h
+1
-0
bsd/dev/usb/usb_if.c
bsd/dev/usb/usb_if.c
+1
-0
bsd/dev/usb/usb_if.h
bsd/dev/usb/usb_if.h
+1
-0
bsd/dev/usb/usb_ioctl.h
bsd/dev/usb/usb_ioctl.h
+1
-0
bsd/dev/usb/usb_lookup.c
bsd/dev/usb/usb_lookup.c
+1
-0
bsd/dev/usb/usb_mbuf.c
bsd/dev/usb/usb_mbuf.c
+1
-0
bsd/dev/usb/usb_mbuf.h
bsd/dev/usb/usb_mbuf.h
+1
-0
bsd/dev/usb/usb_parse.c
bsd/dev/usb/usb_parse.c
+1
-0
bsd/dev/usb/usb_process.c
bsd/dev/usb/usb_process.c
+1
-0
bsd/dev/usb/usb_process.h
bsd/dev/usb/usb_process.h
+1
-0
bsd/dev/usb/usb_request.c
bsd/dev/usb/usb_request.c
+1
-0
bsd/dev/usb/usb_request.h
bsd/dev/usb/usb_request.h
+1
-0
bsd/dev/usb/usb_transfer.c
bsd/dev/usb/usb_transfer.c
+1
-0
bsd/dev/usb/usb_transfer.h
bsd/dev/usb/usb_transfer.h
+1
-0
bsd/dev/usb/usb_util.c
bsd/dev/usb/usb_util.c
+1
-0
bsd/dev/usb/usb_util.h
bsd/dev/usb/usb_util.h
+1
-0
bsd/dev/usb/usbdi.h
bsd/dev/usb/usbdi.h
+1
-0
bsd/dev/usb/usbdi_util.h
bsd/dev/usb/usbdi_util.h
+1
-0
bsd/dev/usb/usbhid.h
bsd/dev/usb/usbhid.h
+1
-0
bsd/kern/bus_if.c
bsd/kern/bus_if.c
+1
-0
bsd/kern/bus_if.h
bsd/kern/bus_if.h
+1
-0
bsd/kern/device_if.c
bsd/kern/device_if.c
+1
-0
bsd/kern/device_if.h
bsd/kern/device_if.h
+1
-0
bsd/kern/kern_condvar.c
bsd/kern/kern_condvar.c
+1
-0
bsd/kern/kern_timeout.c
bsd/kern/kern_timeout.c
+1
-0
bsd/kern/subr_bus.c
bsd/kern/subr_bus.c
+1
-0
bsd/kern/subr_kobj.c
bsd/kern/subr_kobj.c
+1
-0
bsd/libkern/explicit_bzero.c
bsd/libkern/explicit_bzero.c
+1
-0
bsd/net/ppp_defs.h
bsd/net/ppp_defs.h
+1
-0
bsd/sys/_callout.h
bsd/sys/_callout.h
+1
-0
bsd/sys/bus.h
bsd/sys/bus.h
+1
-0
bsd/sys/callout.h
bsd/sys/callout.h
+1
-0
bsd/sys/cdefs.h
bsd/sys/cdefs.h
+1
-0
bsd/sys/condvar.h
bsd/sys/condvar.h
+1
-0
bsd/sys/kernel.h
bsd/sys/kernel.h
+1
-0
bsd/sys/kobj.h
bsd/sys/kobj.h
+1
-0
bsd/sys/linker_set.h
bsd/sys/linker_set.h
+1
-0
bsd/sys/malloc.h
bsd/sys/malloc.h
+1
-0
bsd/sys/module.h
bsd/sys/module.h
+1
-0
bsd/sys/mutex.h
bsd/sys/mutex.h
+1
-0
bsd/sys/priv.h
bsd/sys/priv.h
+1
-0
bsd/sys/queue.h
bsd/sys/queue.h
+1
-0
bsd/sys/sema.h
bsd/sys/sema.h
+1
-0
bsd/sys/sx.h
bsd/sys/sx.h
+1
-0
bsd/sys/systm.h
bsd/sys/systm.h
+1
-0
build.sh
build.sh
+55
-0
compat/posix/Kconfig
compat/posix/Kconfig
+6
-0
compat/posix/Makefile
compat/posix/Makefile
+42
-0
compat/posix/include/mqueue.h
compat/posix/include/mqueue.h
+409
-0
compat/posix/include/time_posix.h
compat/posix/include/time_posix.h
+86
-0
compat/posix/src/map_error.c
compat/posix/src/map_error.c
+122
-0
compat/posix/src/map_error.h
compat/posix/src/map_error.h
+49
-0
compat/posix/src/misc.c
compat/posix/src/misc.c
+152
-0
compat/posix/src/mqueue.c
compat/posix/src/mqueue.c
+610
-0
compat/posix/src/posix_memalign.c
compat/posix/src/posix_memalign.c
+59
-0
compat/posix/src/pprivate.h
compat/posix/src/pprivate.h
+87
-0
compat/posix/src/pthread.c
compat/posix/src/pthread.c
+817
-0
compat/posix/src/pthread_attr.c
compat/posix/src/pthread_attr.c
+287
-0
compat/posix/src/pthread_cond.c
compat/posix/src/pthread_cond.c
+358
-0
compat/posix/src/pthread_mutex.c
compat/posix/src/pthread_mutex.c
+146
-0
compat/posix/src/sched.c
compat/posix/src/sched.c
+150
-0
compat/posix/src/semaphore.c
compat/posix/src/semaphore.c
+204
-0
compat/posix/src/socket.c
compat/posix/src/socket.c
+188
-0
compat/posix/src/time.c
compat/posix/src/time.c
+984
-0
config.mk
config.mk
+61
-0
fs/fat/Kconfig
fs/fat/Kconfig
+43
-0
fs/fat/Makefile
fs/fat/Makefile
+44
-0
fs/fat/os_adapt/fat_shellcmd.c
fs/fat/os_adapt/fat_shellcmd.c
+121
-0
fs/fat/os_adapt/fatfs.c
fs/fat/os_adapt/fatfs.c
+2419
-0
fs/fat/virpart/Makefile
fs/fat/virpart/Makefile
+41
-0
fs/fat/virpart/include/virpart.h
fs/fat/virpart/include/virpart.h
+46
-0
fs/fat/virpart/include/virpartff.h
fs/fat/virpart/include/virpartff.h
+54
-0
fs/fat/virpart/src/virpart.c
fs/fat/virpart/src/virpart.c
+503
-0
fs/fat/virpart/src/virpartff.c
fs/fat/virpart/src/virpartff.c
+872
-0
fs/include/compiler.h
fs/include/compiler.h
+1
-0
fs/include/debug.h
fs/include/debug.h
+1
-0
fs/include/disk.h
fs/include/disk.h
+708
-0
fs/include/fs/automount.h
fs/include/fs/automount.h
+1
-0
fs/include/fs/dirent_fs.h
fs/include/fs/dirent_fs.h
+1
-0
fs/include/fs/fd_table.h
fs/include/fs/fd_table.h
+80
-0
fs/include/fs/file.h
fs/include/fs/file.h
+1
-0
fs/include/fs/fs.h
fs/include/fs/fs.h
+1
-0
fs/include/fs/fs_operation.h
fs/include/fs/fs_operation.h
+548
-0
fs/include/inode/inode.h
fs/include/inode/inode.h
+1
-0
fs/include/net/net.h
fs/include/net/net.h
+1
-0
fs/include/syslog.h
fs/include/syslog.h
+1
-0
fs/include/vfs_config.h
fs/include/vfs_config.h
+121
-0
fs/jffs2/Kconfig
fs/jffs2/Kconfig
+6
-0
fs/jffs2/Makefile
fs/jffs2/Makefile
+48
-0
fs/nfs/Kconfig
fs/nfs/Kconfig
+7
-0
fs/nfs/Makefile
fs/nfs/Makefile
+38
-0
fs/ramfs/Kconfig
fs/ramfs/Kconfig
+6
-0
fs/ramfs/Makefile
fs/ramfs/Makefile
+38
-0
fs/vfs/Kconfig
fs/vfs/Kconfig
+20
-0
fs/vfs/Makefile
fs/vfs/Makefile
+116
-0
fs/vfs/bcache/Makefile
fs/vfs/bcache/Makefile
+42
-0
fs/vfs/bcache/src/bcache.c
fs/vfs/bcache/src/bcache.c
+1177
-0
fs/vfs/bch/Makefile
fs/vfs/bch/Makefile
+42
-0
fs/vfs/disk/Makefile
fs/vfs/disk/Makefile
+40
-0
fs/vfs/disk/disk.c
fs/vfs/disk/disk.c
+1638
-0
fs/vfs/disk/disk_shellcmd.c
fs/vfs/disk/disk_shellcmd.c
+77
-0
fs/vfs/include/bcache/bcache.h
fs/vfs/include/bcache/bcache.h
+277
-0
fs/vfs/include/disk/disk_pri.h
fs/vfs/include/disk/disk_pri.h
+69
-0
fs/vfs/include/driver/blockproxy.h
fs/vfs/include/driver/blockproxy.h
+53
-0
fs/vfs/include/driver/driver.h
fs/vfs/include/driver/driver.h
+106
-0
fs/vfs/include/driver/mtd_dev.h
fs/vfs/include/driver/mtd_dev.h
+59
-0
fs/vfs/include/driver/mtd_list.h
fs/vfs/include/driver/mtd_list.h
+62
-0
fs/vfs/include/multi_partition/mtd_partition.h
fs/vfs/include/multi_partition/mtd_partition.h
+158
-0
fs/vfs/include/operation/fs_file.h
fs/vfs/include/operation/fs_file.h
+57
-0
fs/vfs/include/operation/fs_other.h
fs/vfs/include/operation/fs_other.h
+68
-0
fs/vfs/include/operation/fs_poll_pri.h
fs/vfs/include/operation/fs_poll_pri.h
+49
-0
fs/vfs/multi_partition/Makefile
fs/vfs/multi_partition/Makefile
+42
-0
fs/vfs/multi_partition/src/mtd_partition.c
fs/vfs/multi_partition/src/mtd_partition.c
+478
-0
fs/vfs/multi_partition/src/mtd_shellcmd.c
fs/vfs/multi_partition/src/mtd_shellcmd.c
+88
-0
fs/vfs/operation/fs_chattr.c
fs/vfs/operation/fs_chattr.c
+201
-0
fs/vfs/operation/fs_check.c
fs/vfs/operation/fs_check.c
+134
-0
fs/vfs/operation/fs_fallocate.c
fs/vfs/operation/fs_fallocate.c
+149
-0
fs/vfs/operation/fs_fallocate64.c
fs/vfs/operation/fs_fallocate64.c
+152
-0
fs/vfs/operation/fs_file.c
fs/vfs/operation/fs_file.c
+300
-0
fs/vfs/operation/fs_file_mapping.c
fs/vfs/operation/fs_file_mapping.c
+314
-0
fs/vfs/operation/fs_getlabel.c
fs/vfs/operation/fs_getlabel.c
+160
-0
fs/vfs/operation/fs_init.c
fs/vfs/operation/fs_init.c
+75
-0
fs/vfs/operation/fs_other.c
fs/vfs/operation/fs_other.c
+691
-0
fs/vfs/operation/fs_preadv.c
fs/vfs/operation/fs_preadv.c
+50
-0
fs/vfs/operation/fs_pwritev.c
fs/vfs/operation/fs_pwritev.c
+50
-0
fs/vfs/operation/fs_readv.c
fs/vfs/operation/fs_readv.c
+134
-0
fs/vfs/operation/fs_utime.c
fs/vfs/operation/fs_utime.c
+173
-0
fs/vfs/operation/fs_virstatfs.c
fs/vfs/operation/fs_virstatfs.c
+153
-0
fs/vfs/operation/fs_writev.c
fs/vfs/operation/fs_writev.c
+127
-0
fs/vfs/operation/fullpath.c
fs/vfs/operation/fullpath.c
+343
-0
fs/vfs/vfs_cmd/vfs_shellcmd.c
fs/vfs/vfs_cmd/vfs_shellcmd.c
+1570
-0
kernel/BUILD.gn
kernel/BUILD.gn
+59
-0
kernel/Kconfig
kernel/Kconfig
+120
-0
kernel/base/BUILD.gn
kernel/base/BUILD.gn
+82
-0
kernel/base/Makefile
kernel/base/Makefile
+54
-0
kernel/base/core/los_bitmap.c
kernel/base/core/los_bitmap.c
+148
-0
kernel/base/core/los_process.c
kernel/base/core/los_process.c
+2004
-0
kernel/base/core/los_sortlink.c
kernel/base/core/los_sortlink.c
+244
-0
kernel/base/core/los_swtmr.c
kernel/base/core/los_swtmr.c
+543
-0
kernel/base/core/los_sys.c
kernel/base/core/los_sys.c
+82
-0
kernel/base/core/los_task.c
kernel/base/core/los_task.c
+2015
-0
kernel/base/core/los_tick.c
kernel/base/core/los_tick.c
+93
-0
kernel/base/core/los_timeslice.c
kernel/base/core/los_timeslice.c
+75
-0
kernel/base/include/los_base_pri.h
kernel/base/include/los_base_pri.h
+53
-0
kernel/base/include/los_binarytree_pri.h
kernel/base/include/los_binarytree_pri.h
+110
-0
kernel/base/include/los_err_pri.h
kernel/base/include/los_err_pri.h
+127
-0
kernel/base/include/los_event_pri.h
kernel/base/include/los_event_pri.h
+64
-0
kernel/base/include/los_futex_pri.h
kernel/base/include/los_futex_pri.h
+63
-0
kernel/base/include/los_heap_pri.h
kernel/base/include/los_heap_pri.h
+253
-0
kernel/base/include/los_ipcdebug_pri.h
kernel/base/include/los_ipcdebug_pri.h
+67
-0
kernel/base/include/los_membox_pri.h
kernel/base/include/los_membox_pri.h
+49
-0
kernel/base/include/los_memory_pri.h
kernel/base/include/los_memory_pri.h
+72
-0
kernel/base/include/los_memrecord_pri.h
kernel/base/include/los_memrecord_pri.h
+84
-0
kernel/base/include/los_memstat_pri.h
kernel/base/include/los_memstat_pri.h
+88
-0
kernel/base/include/los_multipledlinkhead_pri.h
kernel/base/include/los_multipledlinkhead_pri.h
+70
-0
kernel/base/include/los_mux_pri.h
kernel/base/include/los_mux_pri.h
+57
-0
kernel/base/include/los_oom.h
kernel/base/include/los_oom.h
+70
-0
kernel/base/include/los_percpu_pri.h
kernel/base/include/los_percpu_pri.h
+87
-0
kernel/base/include/los_pmm.h
kernel/base/include/los_pmm.h
+56
-0
kernel/base/include/los_printf_pri.h
kernel/base/include/los_printf_pri.h
+58
-0
kernel/base/include/los_priqueue_pri.h
kernel/base/include/los_priqueue_pri.h
+245
-0
kernel/base/include/los_process_pri.h
kernel/base/include/los_process_pri.h
+498
-0
kernel/base/include/los_queue_debug_pri.h
kernel/base/include/los_queue_debug_pri.h
+86
-0
kernel/base/include/los_queue_pri.h
kernel/base/include/los_queue_pri.h
+207
-0
kernel/base/include/los_sched_pri.h
kernel/base/include/los_sched_pri.h
+144
-0
kernel/base/include/los_sem_debug_pri.h
kernel/base/include/los_sem_debug_pri.h
+87
-0
kernel/base/include/los_sem_pri.h
kernel/base/include/los_sem_pri.h
+120
-0
kernel/base/include/los_signal.h
kernel/base/include/los_signal.h
+198
-0
kernel/base/include/los_sortlink_pri.h
kernel/base/include/los_sortlink_pri.h
+108
-0
kernel/base/include/los_stackinfo_pri.h
kernel/base/include/los_stackinfo_pri.h
+84
-0
kernel/base/include/los_stat_pri.h
kernel/base/include/los_stat_pri.h
+59
-0
kernel/base/include/los_swtmr_pri.h
kernel/base/include/los_swtmr_pri.h
+114
-0
kernel/base/include/los_sys_pri.h
kernel/base/include/los_sys_pri.h
+104
-0
kernel/base/include/los_task_pri.h
kernel/base/include/los_task_pri.h
+587
-0
kernel/base/include/los_tick_pri.h
kernel/base/include/los_tick_pri.h
+101
-0
kernel/base/include/los_timeslice_pri.h
kernel/base/include/los_timeslice_pri.h
+77
-0
kernel/base/include/los_typedef_pri.h
kernel/base/include/los_typedef_pri.h
+37
-0
kernel/base/include/los_vm_boot.h
kernel/base/include/los_vm_boot.h
+74
-0
kernel/base/include/los_vm_common.h
kernel/base/include/los_vm_common.h
+140
-0
kernel/base/include/los_vm_dump.h
kernel/base/include/los_vm_dump.h
+82
-0
kernel/base/include/los_vm_fault.h
kernel/base/include/los_vm_fault.h
+67
-0
kernel/base/include/los_vm_filemap.h
kernel/base/include/los_vm_filemap.h
+214
-0
kernel/base/include/los_vm_iomap.h
kernel/base/include/los_vm_iomap.h
+63
-0
kernel/base/include/los_vm_lock.h
kernel/base/include/los_vm_lock.h
+64
-0
kernel/base/include/los_vm_map.h
kernel/base/include/los_vm_map.h
+314
-0
kernel/base/include/los_vm_page.h
kernel/base/include/los_vm_page.h
+69
-0
kernel/base/include/los_vm_phys.h
kernel/base/include/los_vm_phys.h
+120
-0
kernel/base/include/los_vm_shm_pri.h
kernel/base/include/los_vm_shm_pri.h
+54
-0
kernel/base/include/los_vm_syscall.h
kernel/base/include/los_vm_syscall.h
+78
-0
kernel/base/include/los_vm_zone.h
kernel/base/include/los_vm_zone.h
+89
-0
kernel/base/ipc/los_event.c
kernel/base/ipc/los_event.c
+349
-0
kernel/base/ipc/los_futex.c
kernel/base/ipc/los_futex.c
+944
-0
kernel/base/ipc/los_ipcdebug.c
kernel/base/ipc/los_ipcdebug.c
+90
-0
kernel/base/ipc/los_mux.c
kernel/base/ipc/los_mux.c
+612
-0
kernel/base/ipc/los_queue.c
kernel/base/ipc/los_queue.c
+504
-0
kernel/base/ipc/los_queue_debug.c
kernel/base/ipc/los_queue_debug.c
+208
-0
kernel/base/ipc/los_sem.c
kernel/base/ipc/los_sem.c
+298
-0
kernel/base/ipc/los_sem_debug.c
kernel/base/ipc/los_sem_debug.c
+311
-0
kernel/base/ipc/los_signal.c
kernel/base/ipc/los_signal.c
+691
-0
kernel/base/mem/bestfit/los_memory.c
kernel/base/mem/bestfit/los_memory.c
+2971
-0
kernel/base/mem/bestfit/los_multipledlinkhead.c
kernel/base/mem/bestfit/los_multipledlinkhead.c
+74
-0
kernel/base/mem/bestfit_little/los_heap.c
kernel/base/mem/bestfit_little/los_heap.c
+424
-0
kernel/base/mem/common/los_memstat.c
kernel/base/mem/common/los_memstat.c
+126
-0
kernel/base/mem/common/memrecord/los_binarytree.c
kernel/base/mem/common/memrecord/los_binarytree.c
+260
-0
kernel/base/mem/common/memrecord/los_interto64radix.c
kernel/base/mem/common/memrecord/los_interto64radix.c
+87
-0
kernel/base/mem/common/memrecord/los_memrecord.c
kernel/base/mem/common/memrecord/los_memrecord.c
+356
-0
kernel/base/mem/membox/los_membox.c
kernel/base/mem/membox/los_membox.c
+237
-0
kernel/base/misc/kill_shellcmd.c
kernel/base/misc/kill_shellcmd.c
+93
-0
kernel/base/misc/los_misc.c
kernel/base/misc/los_misc.c
+69
-0
kernel/base/misc/los_stackinfo.c
kernel/base/misc/los_stackinfo.c
+125
-0
kernel/base/misc/mempt_shellcmd.c
kernel/base/misc/mempt_shellcmd.c
+342
-0
kernel/base/misc/swtmr_shellcmd.c
kernel/base/misc/swtmr_shellcmd.c
+147
-0
kernel/base/misc/sysinfo_shellcmd.c
kernel/base/misc/sysinfo_shellcmd.c
+170
-0
kernel/base/misc/task_shellcmd.c
kernel/base/misc/task_shellcmd.c
+501
-0
kernel/base/misc/vm_shellcmd.c
kernel/base/misc/vm_shellcmd.c
+265
-0
kernel/base/mp/los_lockdep.c
kernel/base/mp/los_lockdep.c
+323
-0
kernel/base/mp/los_mp.c
kernel/base/mp/los_mp.c
+119
-0
kernel/base/mp/los_percpu.c
kernel/base/mp/los_percpu.c
+46
-0
kernel/base/mp/los_stat.c
kernel/base/mp/los_stat.c
+333
-0
kernel/base/om/los_err.c
kernel/base/om/los_err.c
+61
-0
kernel/base/sched/sched_sq/los_priqueue.c
kernel/base/sched/sched_sq/los_priqueue.c
+235
-0
kernel/base/sched/sched_sq/los_sched.c
kernel/base/sched/sched_sq/los_sched.c
+176
-0
kernel/base/vm/los_vm_boot.c
kernel/base/vm/los_vm_boot.c
+102
-0
kernel/base/vm/los_vm_dump.c
kernel/base/vm/los_vm_dump.c
+545
-0
kernel/base/vm/los_vm_fault.c
kernel/base/vm/los_vm_fault.c
+468
-0
kernel/base/vm/los_vm_filemap.c
kernel/base/vm/los_vm_filemap.c
+775
-0
kernel/base/vm/los_vm_iomap.c
kernel/base/vm/los_vm_iomap.c
+218
-0
kernel/base/vm/los_vm_map.c
kernel/base/vm/los_vm_map.c
+1209
-0
kernel/base/vm/los_vm_page.c
kernel/base/vm/los_vm_page.c
+111
-0
kernel/base/vm/los_vm_phys.c
kernel/base/vm/los_vm_phys.c
+585
-0
kernel/base/vm/los_vm_scan.c
kernel/base/vm/los_vm_scan.c
+346
-0
kernel/base/vm/los_vm_syscall.c
kernel/base/vm/los_vm_syscall.c
+439
-0
kernel/base/vm/oom.c
kernel/base/vm/oom.c
+253
-0
kernel/base/vm/shm.c
kernel/base/vm/shm.c
+741
-0
kernel/common/Kconfig
kernel/common/Kconfig
+6
-0
kernel/common/Makefile
kernel/common/Makefile
+42
-0
kernel/common/console.c
kernel/common/console.c
+1669
-0
kernel/common/console.h
kernel/common/console.h
+146
-0
kernel/common/hwi_shell.c
kernel/common/hwi_shell.c
+134
-0
kernel/common/los_builddef.h
kernel/common/los_builddef.h
+105
-0
kernel/common/los_cir_buf.c
kernel/common/los_cir_buf.c
+225
-0
kernel/common/los_cir_buf_pri.h
kernel/common/los_cir_buf_pri.h
+87
-0
kernel/common/los_config.c
kernel/common/los_config.c
+449
-0
kernel/common/los_config.h
kernel/common/los_config.h
+484
-0
kernel/common/los_exc_interaction.c
kernel/common/los_exc_interaction.c
+133
-0
kernel/common/los_exc_interaction_pri.h
kernel/common/los_exc_interaction_pri.h
+53
-0
kernel/common/los_excinfo.c
kernel/common/los_excinfo.c
+178
-0
kernel/common/los_excinfo_pri.h
kernel/common/los_excinfo_pri.h
+65
-0
kernel/common/los_hilog.c
kernel/common/los_hilog.c
+330
-0
kernel/common/los_hilog.h
kernel/common/los_hilog.h
+53
-0
kernel/common/los_magickey.c
kernel/common/los_magickey.c
+155
-0
kernel/common/los_magickey.h
kernel/common/los_magickey.h
+57
-0
kernel/common/los_printf.c
kernel/common/los_printf.c
+270
-0
kernel/common/los_rootfs.c
kernel/common/los_rootfs.c
+504
-0
kernel/common/los_rootfs.h
kernel/common/los_rootfs.h
+69
-0
kernel/common/los_seq_buf.c
kernel/common/los_seq_buf.c
+156
-0
kernel/common/los_seq_buf.h
kernel/common/los_seq_buf.h
+65
-0
kernel/common/los_timer_pri.h
kernel/common/los_timer_pri.h
+50
-0
kernel/common/sys_config.h
kernel/common/sys_config.h
+70
-0
kernel/common/virtual_serial.c
kernel/common/virtual_serial.c
+316
-0
kernel/common/virtual_serial.h
kernel/common/virtual_serial.h
+75
-0
kernel/extended/cppsupport/Makefile
kernel/extended/cppsupport/Makefile
+43
-0
kernel/extended/cppsupport/los_cppsupport.c
kernel/extended/cppsupport/los_cppsupport.c
+60
-0
kernel/extended/cpup/Makefile
kernel/extended/cpup/Makefile
+41
-0
kernel/extended/cpup/cpup_shellcmd.c
kernel/extended/cpup/cpup_shellcmd.c
+149
-0
kernel/extended/cpup/los_cpup.c
kernel/extended/cpup/los_cpup.c
+557
-0
kernel/extended/dynload/Makefile
kernel/extended/dynload/Makefile
+41
-0
kernel/extended/dynload/include/los_elf_auxvec_pri.h
kernel/extended/dynload/include/los_elf_auxvec_pri.h
+70
-0
kernel/extended/dynload/include/los_exec_elf.h
kernel/extended/dynload/include/los_exec_elf.h
+51
-0
kernel/extended/dynload/include/los_ld_elf_pri.h
kernel/extended/dynload/include/los_ld_elf_pri.h
+422
-0
kernel/extended/dynload/include/los_load_elf.h
kernel/extended/dynload/include/los_load_elf.h
+133
-0
kernel/extended/dynload/src/los_exec_elf.c
kernel/extended/dynload/src/los_exec_elf.c
+194
-0
kernel/extended/dynload/src/los_load_elf.c
kernel/extended/dynload/src/los_load_elf.c
+1060
-0
kernel/extended/include/los_cpup_pri.h
kernel/extended/include/los_cpup_pri.h
+84
-0
kernel/extended/include/los_tickless_pri.h
kernel/extended/include/los_tickless_pri.h
+59
-0
kernel/extended/include/los_trace_pri.h
kernel/extended/include/los_trace_pri.h
+57
-0
kernel/extended/liteipc/Makefile
kernel/extended/liteipc/Makefile
+37
-0
kernel/extended/liteipc/hm_liteipc.c
kernel/extended/liteipc/hm_liteipc.c
+1321
-0
kernel/extended/liteipc/hm_liteipc.h
kernel/extended/liteipc/hm_liteipc.h
+233
-0
kernel/extended/pipe
kernel/extended/pipe
+1
-0
kernel/extended/tickless/Makefile
kernel/extended/tickless/Makefile
+43
-0
kernel/extended/tickless/los_tickless.c
kernel/extended/tickless/los_tickless.c
+201
-0
kernel/extended/trace/Makefile
kernel/extended/trace/Makefile
+42
-0
kernel/extended/trace/los_trace.c
kernel/extended/trace/los_trace.c
+250
-0
kernel/extended/vdso/include/los_vdso.h
kernel/extended/vdso/include/los_vdso.h
+56
-0
kernel/extended/vdso/include/los_vdso_datapage.h
kernel/extended/vdso/include/los_vdso_datapage.h
+63
-0
kernel/extended/vdso/include/los_vdso_pri.h
kernel/extended/vdso/include/los_vdso_pri.h
+57
-0
kernel/extended/vdso/src/Makefile
kernel/extended/vdso/src/Makefile
+40
-0
kernel/extended/vdso/src/los_vdso.c
kernel/extended/vdso/src/los_vdso.c
+127
-0
kernel/extended/vdso/src/los_vdso_text.S
kernel/extended/vdso/src/los_vdso_text.S
+34
-0
kernel/extended/vdso/usr/Makefile
kernel/extended/vdso/usr/Makefile
+53
-0
kernel/extended/vdso/usr/los_vdso.ld
kernel/extended/vdso/usr/los_vdso.ld
+37
-0
kernel/extended/vdso/usr/los_vdso_sys.c
kernel/extended/vdso/usr/los_vdso_sys.c
+113
-0
kernel/include/los_base.h
kernel/include/los_base.h
+245
-0
kernel/include/los_bitmap.h
kernel/include/los_bitmap.h
+221
-0
kernel/include/los_cppsupport.h
kernel/include/los_cppsupport.h
+86
-0
kernel/include/los_cpup.h
kernel/include/los_cpup.h
+264
-0
kernel/include/los_err.h
kernel/include/los_err.h
+156
-0
kernel/include/los_errno.h
kernel/include/los_errno.h
+112
-0
kernel/include/los_event.h
kernel/include/los_event.h
+342
-0
kernel/include/los_ld_elflib.h
kernel/include/los_ld_elflib.h
+244
-0
kernel/include/los_list.h
kernel/include/los_list.h
+629
-0
kernel/include/los_lockdep.h
kernel/include/los_lockdep.h
+147
-0
kernel/include/los_membox.h
kernel/include/los_membox.h
+250
-0
kernel/include/los_memory.h
kernel/include/los_memory.h
+837
-0
kernel/include/los_mp.h
kernel/include/los_mp.h
+72
-0
kernel/include/los_mux.h
kernel/include/los_mux.h
+242
-0
kernel/include/los_printf.h
kernel/include/los_printf.h
+119
-0
kernel/include/los_process.h
kernel/include/los_process.h
+77
-0
kernel/include/los_queue.h
kernel/include/los_queue.h
+735
-0
kernel/include/los_sem.h
kernel/include/los_sem.h
+312
-0
kernel/include/los_spinlock.h
kernel/include/los_spinlock.h
+321
-0
kernel/include/los_swtmr.h
kernel/include/los_swtmr.h
+425
-0
kernel/include/los_sys.h
kernel/include/los_sys.h
+202
-0
kernel/include/los_tables.h
kernel/include/los_tables.h
+93
-0
kernel/include/los_task.h
kernel/include/los_task.h
+1038
-0
kernel/include/los_tick.h
kernel/include/los_tick.h
+180
-0
kernel/include/los_tickless.h
kernel/include/los_tickless.h
+94
-0
kernel/include/los_toolchain.h
kernel/include/los_toolchain.h
+148
-0
kernel/include/los_trace.h
kernel/include/los_trace.h
+285
-0
kernel/include/los_typedef.h
kernel/include/los_typedef.h
+245
-0
kernel/user/Makefile
kernel/user/Makefile
+75
-0
kernel/user/include/los_user_init.h
kernel/user/include/los_user_init.h
+70
-0
kernel/user/src/los_user_init.c
kernel/user/src/los_user_init.c
+66
-0
lib/Kconfig
lib/Kconfig
+15
-0
lib/libc/Makefile
lib/libc/Makefile
+50
-0
lib/libmbedtls/Makefile
lib/libmbedtls/Makefile
+8
-0
lib/libscrew/Makefile
lib/libscrew/Makefile
+15
-0
lib/libscrew/include/los_crc32.h
lib/libscrew/include/los_crc32.h
+55
-0
lib/libscrew/include/los_rbtree.h
lib/libscrew/include/los_rbtree.h
+142
-0
lib/libscrew/src/los_crc32.c
lib/libscrew/src/los_crc32.c
+82
-0
lib/libscrew/src/los_rbtree.c
lib/libscrew/src/los_rbtree.c
+775
-0
lib/libsec/Makefile
lib/libsec/Makefile
+6
-0
lib/zlib/Makefile
lib/zlib/Makefile
+7
-0
net/Kconfig
net/Kconfig
+32
-0
net/lwip-2.1/Makefile
net/lwip-2.1/Makefile
+51
-0
net/lwip-2.1/enhancement/include/api_shell.h
net/lwip-2.1/enhancement/include/api_shell.h
+63
-0
net/lwip-2.1/enhancement/include/api_shell_fix.h
net/lwip-2.1/enhancement/include/api_shell_fix.h
+161
-0
net/lwip-2.1/enhancement/include/dhcps.h
net/lwip-2.1/enhancement/include/dhcps.h
+81
-0
net/lwip-2.1/enhancement/include/dhcps_fix.h
net/lwip-2.1/enhancement/include/dhcps_fix.h
+102
-0
net/lwip-2.1/enhancement/src/api_shell.c
net/lwip-2.1/enhancement/src/api_shell.c
+4002
-0
net/lwip-2.1/enhancement/src/api_shell_fix.c
net/lwip-2.1/enhancement/src/api_shell_fix.c
+410
-0
net/lwip-2.1/porting/include/arch/cc.h
net/lwip-2.1/porting/include/arch/cc.h
+74
-0
net/lwip-2.1/porting/include/arch/perf.h
net/lwip-2.1/porting/include/arch/perf.h
+42
-0
net/lwip-2.1/porting/include/arch/sys_arch.h
net/lwip-2.1/porting/include/arch/sys_arch.h
+77
-0
net/lwip-2.1/porting/include/lwip/dhcp.h
net/lwip-2.1/porting/include/lwip/dhcp.h
+48
-0
net/lwip-2.1/porting/include/lwip/inet.h
net/lwip-2.1/porting/include/lwip/inet.h
+61
-0
net/lwip-2.1/porting/include/lwip/lwipopts.h
net/lwip-2.1/porting/include/lwip/lwipopts.h
+221
-0
net/lwip-2.1/porting/include/lwip/netif.h
net/lwip-2.1/porting/include/lwip/netif.h
+79
-0
net/lwip-2.1/porting/include/lwip/netifapi.h
net/lwip-2.1/porting/include/lwip/netifapi.h
+57
-0
net/lwip-2.1/porting/include/lwip/pbuf.h
net/lwip-2.1/porting/include/lwip/pbuf.h
+57
-0
net/lwip-2.1/porting/include/lwip/priv/api_msg.h
net/lwip-2.1/porting/include/lwip/priv/api_msg.h
+47
-0
net/lwip-2.1/porting/include/lwip/priv/sockets_priv.h
net/lwip-2.1/porting/include/lwip/priv/sockets_priv.h
+41
-0
net/lwip-2.1/porting/include/lwip/sockets.h
net/lwip-2.1/porting/include/lwip/sockets.h
+89
-0
net/lwip-2.1/porting/include/lwipopts.h
net/lwip-2.1/porting/include/lwipopts.h
+38
-0
net/lwip-2.1/porting/src/driverif.c
net/lwip-2.1/porting/src/driverif.c
+342
-0
net/lwip-2.1/porting/src/fixme.c
net/lwip-2.1/porting/src/fixme.c
+46
-0
net/lwip-2.1/porting/src/sockets.c
net/lwip-2.1/porting/src/sockets.c
+1583
-0
net/lwip-2.1/porting/src/sys_arch.c
net/lwip-2.1/porting/src/sys_arch.c
+325
-0
net/mac/los_mac.h
net/mac/los_mac.h
+60
-0
net/telnet/Kconfig
net/telnet/Kconfig
+6
-0
net/telnet/Makefile
net/telnet/Makefile
+36
-0
net/telnet/include/telnet_dev.h
net/telnet/include/telnet_dev.h
+87
-0
net/telnet/include/telnet_loop.h
net/telnet/include/telnet_loop.h
+59
-0
net/telnet/include/telnet_pri.h
net/telnet/include/telnet_pri.h
+56
-0
net/telnet/src/telnet_dev.c
net/telnet/src/telnet_dev.c
+417
-0
net/telnet/src/telnet_loop.c
net/telnet/src/telnet_loop.c
+594
-0
platform/Kconfig
platform/Kconfig
+49
-0
platform/Makefile
platform/Makefile
+81
-0
platform/board.ld.S
platform/board.ld.S
+56
-0
platform/bsp.mk
platform/bsp.mk
+90
-0
platform/hw/arm/interrupt/gic/gic_v2.c
platform/hw/arm/interrupt/gic/gic_v2.c
+193
-0
platform/hw/arm/interrupt/gic/gic_v3.c
platform/hw/arm/interrupt/gic/gic_v3.c
+446
-0
platform/hw/arm/timer/arm_generic/arm_generic_timer.c
platform/hw/arm/timer/arm_generic/arm_generic_timer.c
+199
-0
platform/hw/arm/timer/arm_private/arm_private_timer.c
platform/hw/arm/timer/arm_private/arm_private_timer.c
+135
-0
platform/hw/hisoc/hrtimer/hrtimer.c
platform/hw/hisoc/hrtimer/hrtimer.c
+112
-0
platform/hw/hisoc/timer/timer.c
platform/hw/hisoc/timer/timer.c
+408
-0
platform/hw/include/gic_common.h
platform/hw/include/gic_common.h
+123
-0
platform/hw/include/gic_v3.h
platform/hw/include/gic_v3.h
+203
-0
platform/include/hal_hwi.h
platform/include/hal_hwi.h
+63
-0
platform/include/hal_timer.h
platform/include/hal_timer.h
+65
-0
platform/main.c
platform/main.c
+186
-0
platform/uart/amba-pl011-lagacy/uart.c
platform/uart/amba-pl011-lagacy/uart.c
+304
-0
platform/uart/amba_pl011/amba_pl011.c
platform/uart/amba_pl011/amba_pl011.c
+203
-0
platform/uart/amba_pl011/amba_pl011.h
platform/uart/amba_pl011/amba_pl011.h
+68
-0
platform/uart/dw-3.0.8a/uart.c
platform/uart/dw-3.0.8a/uart.c
+215
-0
platform/usb/usb3.0_hi3516dv300/usb_board.c
platform/usb/usb3.0_hi3516dv300/usb_board.c
+325
-0
platform/usb/usb3.0_hi3518ev300/usb_board.c
platform/usb/usb3.0_hi3518ev300/usb_board.c
+391
-0
readme.md
readme.md
+1
-0
security/Kconfig
security/Kconfig
+30
-0
security/Makefile
security/Makefile
+48
-0
security/cap/Makefile
security/cap/Makefile
+41
-0
security/cap/capability.c
security/cap/capability.c
+95
-0
security/cap/capability_api.h
security/cap/capability_api.h
+41
-0
security/cap/capability_type.h
security/cap/capability_type.h
+69
-0
security/vid/vid.c
security/vid/vid.c
+237
-0
security/vid/vid_api.h
security/vid/vid_api.h
+48
-0
security/vid/vid_type.h
security/vid/vid_type.h
+48
-0
shell/BUILD.gn
shell/BUILD.gn
+43
-0
shell/Kconfig
shell/Kconfig
+32
-0
shell/Makefile
shell/Makefile
+47
-0
shell/full/include/dmesg.h
shell/full/include/dmesg.h
+172
-0
shell/full/include/dmesg_pri.h
shell/full/include/dmesg_pri.h
+69
-0
shell/full/include/shcmd.h
shell/full/include/shcmd.h
+108
-0
shell/full/include/shcmdparse.h
shell/full/include/shcmdparse.h
+73
-0
shell/full/include/shell.h
shell/full/include/shell.h
+136
-0
shell/full/include/shell_lk.h
shell/full/include/shell_lk.h
+119
-0
shell/full/include/shell_pri.h
shell/full/include/shell_pri.h
+60
-0
shell/full/include/shmsg.h
shell/full/include/shmsg.h
+58
-0
shell/full/include/show.h
shell/full/include/show.h
+53
-0
shell/full/src/base/shcmd.c
shell/full/src/base/shcmd.c
+877
-0
shell/full/src/base/shcmdparse.c
shell/full/src/base/shcmdparse.c
+165
-0
shell/full/src/base/shell_lk.c
shell/full/src/base/shell_lk.c
+236
-0
shell/full/src/base/shmsg.c
shell/full/src/base/shmsg.c
+473
-0
shell/full/src/base/show.c
shell/full/src/base/show.c
+181
-0
shell/full/src/cmds/date_shell.c
shell/full/src/cmds/date_shell.c
+302
-0
shell/full/src/cmds/dmesg.c
shell/full/src/cmds/dmesg.c
+782
-0
shell/full/src/cmds/excinfo_shell.c
shell/full/src/cmds/excinfo_shell.c
+71
-0
shell/full/src/cmds/shell_shellcmd.c
shell/full/src/cmds/shell_shellcmd.c
+60
-0
shell/full/src/cmds/watch_shell.c
shell/full/src/cmds/watch_shell.c
+275
-0
syscall/Makefile
syscall/Makefile
+42
-0
syscall/fs_syscall.c
syscall/fs_syscall.c
+1933
-0
syscall/ipc_syscall.c
syscall/ipc_syscall.c
+295
-0
syscall/los_syscall.c
syscall/los_syscall.c
+148
-0
syscall/los_syscall.h
syscall/los_syscall.h
+262
-0
syscall/misc_syscall.c
syscall/misc_syscall.c
+118
-0
syscall/net_syscall.c
syscall/net_syscall.c
+632
-0
syscall/process_syscall.c
syscall/process_syscall.c
+1003
-0
syscall/syscall_lookup.h
syscall/syscall_lookup.h
+239
-0
syscall/time_syscall.c
syscall/time_syscall.c
+586
-0
syscall/vm_syscall.c
syscall/vm_syscall.c
+125
-0
tools/.gitignore
tools/.gitignore
+2
-0
tools/build/config.mk
tools/build/config.mk
+60
-0
tools/build/config/debug/hi3516dv300.config
tools/build/config/debug/hi3516dv300.config
+190
-0
tools/build/config/debug/hi3516dv300_clang.config
tools/build/config/debug/hi3516dv300_clang.config
+190
-0
tools/build/config/debug/hi3518ev300.config
tools/build/config/debug/hi3518ev300.config
+183
-0
tools/build/config/debug/hi3518ev300_clang.config
tools/build/config/debug/hi3518ev300_clang.config
+183
-0
tools/build/config/hi3516dv300_clang_release.config
tools/build/config/hi3516dv300_clang_release.config
+173
-0
tools/build/config/hi3516dv300_debug_shell.config
tools/build/config/hi3516dv300_debug_shell.config
+190
-0
tools/build/config/hi3516dv300_release.config
tools/build/config/hi3516dv300_release.config
+173
-0
tools/build/config/hi3518ev300_clang_release.config
tools/build/config/hi3518ev300_clang_release.config
+166
-0
tools/build/config/hi3518ev300_debug_shell.config
tools/build/config/hi3518ev300_debug_shell.config
+183
-0
tools/build/config/hi3518ev300_release.config
tools/build/config/hi3518ev300_release.config
+166
-0
tools/build/liteos.ld
tools/build/liteos.ld
+150
-0
tools/build/liteos_llvm.ld
tools/build/liteos_llvm.ld
+156
-0
tools/build/mk/bepbuildtime.conf
tools/build/mk/bepbuildtime.conf
+4
-0
tools/build/mk/dynload.mk
tools/build/mk/dynload.mk
+34
-0
tools/build/mk/get_llvm_compiler_path.sh
tools/build/mk/get_llvm_compiler_path.sh
+54
-0
tools/build/mk/liteos_tables_ldflags.mk
tools/build/mk/liteos_tables_ldflags.mk
+162
-0
tools/build/mk/los_config.mk
tools/build/mk/los_config.mk
+718
-0
tools/build/mk/module.mk
tools/build/mk/module.mk
+149
-0
tools/fsimage/MakeVersion.sh
tools/fsimage/MakeVersion.sh
+32
-0
tools/fsimage/mkfs.jffs2
tools/fsimage/mkfs.jffs2
+0
-0
tools/fsimage/win-x86/cygz.dll
tools/fsimage/win-x86/cygz.dll
+0
-0
tools/fsimage/win-x86/doc_loadbios.exe
tools/fsimage/win-x86/doc_loadbios.exe
+0
-0
tools/fsimage/win-x86/docfdisk.exe
tools/fsimage/win-x86/docfdisk.exe
+0
-0
tools/fsimage/win-x86/flash_erase.exe
tools/fsimage/win-x86/flash_erase.exe
+0
-0
tools/fsimage/win-x86/flash_eraseall
tools/fsimage/win-x86/flash_eraseall
+4
-0
tools/fsimage/win-x86/flash_lock.exe
tools/fsimage/win-x86/flash_lock.exe
+0
-0
tools/fsimage/win-x86/flash_otp_dump.exe
tools/fsimage/win-x86/flash_otp_dump.exe
+0
-0
tools/fsimage/win-x86/flash_otp_info.exe
tools/fsimage/win-x86/flash_otp_info.exe
+0
-0
tools/fsimage/win-x86/flash_otp_lock.exe
tools/fsimage/win-x86/flash_otp_lock.exe
+0
-0
tools/fsimage/win-x86/flash_otp_write.exe
tools/fsimage/win-x86/flash_otp_write.exe
+0
-0
tools/fsimage/win-x86/flash_unlock.exe
tools/fsimage/win-x86/flash_unlock.exe
+0
-0
tools/fsimage/win-x86/flashcp.exe
tools/fsimage/win-x86/flashcp.exe
+0
-0
tools/fsimage/win-x86/ftl_check.exe
tools/fsimage/win-x86/ftl_check.exe
+0
-0
tools/fsimage/win-x86/ftl_format.exe
tools/fsimage/win-x86/ftl_format.exe
+0
-0
tools/fsimage/win-x86/jffs2dump.exe
tools/fsimage/win-x86/jffs2dump.exe
+0
-0
tools/fsimage/win-x86/jffs2reader.exe
tools/fsimage/win-x86/jffs2reader.exe
+0
-0
tools/fsimage/win-x86/lsmtd.exe
tools/fsimage/win-x86/lsmtd.exe
+0
-0
tools/fsimage/win-x86/mkfs.jffs2.exe
tools/fsimage/win-x86/mkfs.jffs2.exe
+0
-0
tools/fsimage/win-x86/mtd_debug.exe
tools/fsimage/win-x86/mtd_debug.exe
+0
-0
tools/fsimage/win-x86/mtdinfo.exe
tools/fsimage/win-x86/mtdinfo.exe
+0
-0
tools/fsimage/win-x86/mtdpart.exe
tools/fsimage/win-x86/mtdpart.exe
+0
-0
tools/fsimage/win-x86/nanddump.exe
tools/fsimage/win-x86/nanddump.exe
+0
-0
tools/fsimage/win-x86/nandtest.exe
tools/fsimage/win-x86/nandtest.exe
+0
-0
tools/fsimage/win-x86/nandwrite.exe
tools/fsimage/win-x86/nandwrite.exe
+0
-0
tools/fsimage/win-x86/nftl_format.exe
tools/fsimage/win-x86/nftl_format.exe
+0
-0
tools/fsimage/win-x86/nftldump.exe
tools/fsimage/win-x86/nftldump.exe
+0
-0
tools/fsimage/win-x86/recv_image.exe
tools/fsimage/win-x86/recv_image.exe
+0
-0
tools/fsimage/win-x86/rfddump.exe
tools/fsimage/win-x86/rfddump.exe
+0
-0
tools/fsimage/win-x86/rfdformat.exe
tools/fsimage/win-x86/rfdformat.exe
+0
-0
tools/fsimage/win-x86/serve_image.exe
tools/fsimage/win-x86/serve_image.exe
+0
-0
tools/fsimage/win-x86/sumtool.exe
tools/fsimage/win-x86/sumtool.exe
+0
-0
tools/fsimage/win-x86/ubiattach.exe
tools/fsimage/win-x86/ubiattach.exe
+0
-0
tools/fsimage/win-x86/ubiblock.exe
tools/fsimage/win-x86/ubiblock.exe
+0
-0
tools/fsimage/win-x86/ubicrc32.exe
tools/fsimage/win-x86/ubicrc32.exe
+0
-0
tools/fsimage/win-x86/ubidetach.exe
tools/fsimage/win-x86/ubidetach.exe
+0
-0
tools/fsimage/win-x86/ubiformat.exe
tools/fsimage/win-x86/ubiformat.exe
+0
-0
tools/fsimage/win-x86/ubimkvol.exe
tools/fsimage/win-x86/ubimkvol.exe
+0
-0
tools/fsimage/win-x86/ubinfo.exe
tools/fsimage/win-x86/ubinfo.exe
+0
-0
tools/fsimage/win-x86/ubinize.exe
tools/fsimage/win-x86/ubinize.exe
+0
-0
tools/fsimage/win-x86/ubirename.exe
tools/fsimage/win-x86/ubirename.exe
+0
-0
tools/fsimage/win-x86/ubirmvol.exe
tools/fsimage/win-x86/ubirmvol.exe
+0
-0
tools/fsimage/win-x86/ubirsvol.exe
tools/fsimage/win-x86/ubirsvol.exe
+0
-0
tools/fsimage/win-x86/ubiupdatevol.exe
tools/fsimage/win-x86/ubiupdatevol.exe
+0
-0
tools/menuconfig/conf
tools/menuconfig/conf
+0
-0
tools/menuconfig/mconf
tools/menuconfig/mconf
+0
-0
tools/scripts/make_rootfs/releaseinfo.sh
tools/scripts/make_rootfs/releaseinfo.sh
+42
-0
tools/scripts/make_rootfs/rootfs.sh
tools/scripts/make_rootfs/rootfs.sh
+39
-0
tools/scripts/make_rootfs/rootfsdir.sh
tools/scripts/make_rootfs/rootfsdir.sh
+42
-0
tools/scripts/make_rootfs/rootfsimg.sh
tools/scripts/make_rootfs/rootfsimg.sh
+81
-0
未找到文件。
.gitee/ISSUE_TEMPLATE.zh-CN.md
0 → 100755
浏览文件 @
6df931fc
### 该问题是怎么引起的?
### 重现步骤
### 报错信息
.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md
0 → 100755
浏览文件 @
6df931fc
### 相关的Issue
### 原因(目的、解决的问题等)
### 描述(做了什么,变更了什么)
### 测试用例(新增、改动、可能影响的功能)
.gitignore
0 → 100755
浏览文件 @
6df931fc
/out
/fs/proc
/test
/include
.config*
cscope*
tags
.vscode
*.o
.idea
*.img
*.swp
*.rej
*.orig
*.a
*.so
.config.cmd
.settings
.cproject
.project
platform/include/menuconfig.h
platform/board.ld
apps/init/init
apps/shell/shell
lib/libc/musl
BUILD.gn
0 → 100755
浏览文件 @
6df931fc
# Copyright (c) 2013-2019, Huawei Technologies Co., Ltd. All rights reserved.
# Copyright (c) 2020, Huawei Device Co., Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
import("//build/lite/config/subsystem/lite_subsystem.gni")
declare_args() {
enable_ohos_kernel_liteos_a_ext_build = true
LOSCFG_TEST_APPS = false
}
lite_subsystem("kernel") {
subsystem_components = []
if (enable_ohos_kernel_liteos_a_ext_build == false) {
subsystem_components += [
"//kernel/liteos_a/kernel",
"//kernel/liteos_a/net",
"//kernel/liteos_a/lib",
"//kernel/liteos_a/compat",
"//kernel/liteos_a/fs",
"//kernel/liteos_a/arch:platform_cpu",
]
if (LOSCFG_SHELL) {
subsystem_components += [ "//kernel/liteos_a/shell" ]
}
} else {
deps = [":make"]
}
}
action("make") {
script = "//build/lite/build_ext_components.py"
outputs = [ "$target_gen_dir/liteos_a_build_log.txt" ]
exec_path = rebase_path(rebase_path(".", root_build_dir))
outdir = rebase_path(get_path_info(".", "out_dir"))
command = "make clean OUTDIR=$outdir && make rootfs VERSION=\"${ohos_version}\" -j 16 OUTDIR=$outdir"
args = [
"--path=$exec_path",
"--prebuilts=sh build.sh ${board_name} ${ohos_build_compiler} ${ohos_build_type}",
"--command=${command}"
]
}
Kconfig
0 → 100755
浏览文件 @
6df931fc
# Copyright (c) 2013-2019, Huawei Technologies Co., Ltd. All rights reserved.
# Copyright (c) 2020, Huawei Device Co., Ltd. All rights reserved.
#
# Redistribution and use in source and binary forms, with or without modification,
# are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice, this list of
# conditions and the following disclaimer.
#
# 2. Redistributions in binary form must reproduce the above copyright notice, this list
# of conditions and the following disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# 3. Neither the name of the copyright holder nor the names of its contributors may be used
# to endorse or promote products derived from this software without specific prior written
# permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
# THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
# OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
# WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
# ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#
#
# For a description of the syntax of this configuration file,
# see extra/config/Kconfig-language.txt
#
mainmenu "Huawei LiteOS Configuration"
menu "Compiler"
choice
prompt "LiteOS_Compiler_Type"
default COMPILER_CLANG_LLVM
help
Enable arm-himix100 or aarch64-himix100 or compiler.
config COMPILER_HIMIX_32
bool "arm-linux-ohoseabi"
depends on PLATFORM_HI3518EV300 || PLATFORM_HI3516DV300
config COMPILER_CLANG_LLVM
bool "clang-llvm"
depends on PLATFORM_HI3518EV300 || PLATFORM_HI3516DV300
endchoice
endmenu
menu "Platform"
######################### config options of bsp #####################
source "../../kernel/liteos_a/platform/Kconfig"
######################### config options of cpu arch ################
source "../../kernel/liteos_a/arch/Kconfig"
######################### config options of rootfs #####################
source "../../kernel/liteos_a/kernel/common/Kconfig"
endmenu
######################### config options of kernel #####################
source "../../kernel/liteos_a/kernel/Kconfig"
######################### config options of lib ########################
source "../../kernel/liteos_a/lib/Kconfig"
######################### config options of compatibility ##############
menu "Compat"
source "../../kernel/liteos_a/compat/posix/Kconfig"
source "../../kernel/liteos_a/bsd/Kconfig"
endmenu
######################### config options of framework ##################
#source "../../frameworks/m2mcomm/Kconfig"
######################## config options of filesystem ##################
menu "FileSystem"
source "../../kernel/liteos_a/fs/vfs/Kconfig"
source "../../kernel/liteos_a/fs/fat/Kconfig"
source "../../kernel/liteos_a/fs/ramfs/Kconfig"
source "../../kernel/liteos_a/fs/nfs/Kconfig"
source "../../kernel/liteos_a/fs/proc/Kconfig"
source "../../kernel/liteos_a/fs/jffs2/Kconfig"
endmenu
######################## config options of net ############################
source "../../kernel/liteos_a/net/Kconfig"
######################## config options of debug ########################
menu "Debug"
config COMPILE_DEBUG
bool "Enable GCC -g Option"
default n
help
Answer Y to add -g option in gcc command. But the LiteOS size will be much larger.
config PLATFORM_ADAPT
bool "Enable Os_adapt"
default y
help
Answer Y to add os_adapt.c to LiteOS.
config ENABLE_OOM_LOOP_TASK
bool "Enable Oom loop task"
default n
help
Answer Y to enable oom loop kthread to check system out of memory.
config DO_ALIGN
bool "Enable do align for hi3518e"
default y
depends on PLATFORM_HI3518EV200
help
Answer Y to enable do align for hi3518e.
config ENABLE_MAGICKEY
bool "Enable MAGIC KEY"
default y
help
Answer Y to enable LiteOS Magic key.
ctrl + r : Magic key check switch;
ctrl + z : Show all magic op key;
ctrl + t : Show task information;
ctrl + p : System panic;
ctrl + e : Check system memory pool.
config THUMB
bool "Enable Thumb"
default n
help
Answer Y to build thumb version. This will make LiteOS smaller.
config PLATFORM_DVFS
bool "Enable Dvfs"
default n
depends on COMPAT_LINUXKPI
help
Answer Y to enable LiteOS support dynamic voltage and frequency scaling feature for
low power consumption.
config DEBUG_VERSION
bool "Enable a Debug Version"
default n
help
If you do not select this option that means you enable a release version for LiteOS.
It also means you do not want to use debug modules, like shell,telnet,tftp,
,nfs,ramfs proc and memory check.
If you select this option that means you enable a debug version for LiteOS.
That means you want a opposite behaviour compared to release version.
config DEBUG_KERNEL
bool "Enable Debug LiteOS Kernel Resource"
default n
depends on DEBUG_VERSION
help
If you select this option that means you enable debugging kernel resource.
It also means you want to get queue, mutex, semaphore, memory debug information.
That means you want a opposite behaviour compared to release version.
config DEBUG_QUEUE
bool "Enable Queue Debugging"
default n
depends on DEBUG_KERNEL
help
Answer Y to enable debug queue.
config DEBUG_DEADLOCK
bool "Enable Mutex Deadlock Debugging"
default n
depends on DEBUG_KERNEL
help
Answer Y to enable debug mutex deadlock.
config DEBUG_SEMAPHORE
bool "Enable Semaphore Debugging"
default n
depends on DEBUG_KERNEL
help
Answer Y to enable debug semaphore.
source "../../kernel/liteos_a/shell/Kconfig"
config NET_LWIP_SACK_TFTP
bool "Enable Tftp"
default y
depends on SHELL && NET_LWIP_SACK && DEBUG_VERSION
help
Answer Y to enable LiteOS support tftp cmd and tftp tool.
source "../../kernel/liteos_a/net/telnet/Kconfig"
config EXC_INTERACTION
bool "Enable exc interaction"
default n
depends on SHELL
help
Answer Y to enable exception interaction for LiteOS, when the system enter exception, user can also interact with system by shell
command like readreg, writereg,task,hwi.
config USER_INIT_DEBUG
bool "Enable user init Debug"
default n
depends on DEBUG_VERSION
config SHELL_CMD_DEBUG
bool "Enable shell cmd Debug"
default n
depends on DEBUG_VERSION && SHELL
config USB_DEBUG
bool "Enable USB Debug"
default n
depends on SHELL && DRIVERS_USB && DEBUG_VERSION
help
Answer Y to enable LiteOS support usb debug.
use shell command to open the specified debug level print.
config MEM_DEBUG
bool "Enable MEM Debug"
default n
depends on DEBUG_VERSION
help
Answer Y to enable LiteOS support mem debug.
config MEM_MUL_MODULE
bool "Enable Memory module statistics"