Go to file
openharmony_ci 5b44332cff !642 解决release1.0.1分支内核关闭中断后在写BUFF满了后卡住问题
Merge pull request !642 from wanghao-free/OpenHarmony_1.0.1_release
2021-09-30 01:56:11 +00:00
.gitee add issue and pr template 2021-04-07 14:49:43 +08:00
apps fix: avoid compile warning ignored 2021-06-15 20:06:09 +08:00
arch fix: v1.1.0的reset_vector_up/mp.S bug修复同步自master 2021-06-16 17:23:40 +08:00
bsd update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
compat/posix fix:setitimer are downregulated for multicore scenarios, and are static, resulting in inconsistent behavior. 2021-04-20 09:54:00 +08:00
drivers/char fix:compile bug fix 2021-03-11 20:12:26 +08:00
figures update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
fs !615 shell命令中rm -r指令尝试删除/dev下节点系统出错 2021-09-09 06:40:27 +00:00
kernel fix:解决release1.0.1分支内核关闭中断后在写BUFF满了后卡住问题 2021-09-28 20:10:13 -07:00
lib update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
net fixed 4496e71 from https://gitee.com/life-liu/kernel_liteos_a/pulls/373 2021-06-30 11:31:08 +08:00
platform [Desc]Modify the vendor configuration file path because the product_path 2021-03-23 22:42:12 +08:00
security update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
shell 解决调用system_console_deinit接口进行卸载console调试口,系统挂死 2021-08-18 14:13:56 +08:00
syscall fix: 回退错误合入的解决getgroups的list比设置的list多一个gid问题的修改 2021-09-09 02:30:38 -07:00
tools chore: update lwip_enhanced lwip version to 2.1.2 2021-06-17 15:21:24 +08:00
.gitignore update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
BUILD.gn update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
Kconfig update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
LICENSE update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
Makefile update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
README.md !79 update ReadME.md 2021-03-22 19:12:48 +08:00
README_zh.md !79 update ReadME.md 2021-03-22 19:12:48 +08:00
build.sh fix: avoid compile warning ignored 2021-06-15 20:06:09 +08:00
config.mk update openharmony 1.0.1 2021-03-11 18:43:57 +08:00
kernel_test.sources update openharmony 1.0.1 2021-03-11 18:43:57 +08:00

README.md

LiteOS Cortex-A

Introduction

The OpenHarmony LiteOS Cortex-A is a new-generation kernel developed based on the Huawei LiteOS kernel. Huawei LiteOS is a lightweight operating system OS built for the Internet of Things IoT field. With the rapid development of the IoT industry, OpenHarmony LiteOS Cortex-A brings small-sized, low-power, and high-performance experience and builds a unified and open ecosystem for developers. In addition, it provides rich kernel mechanisms, more comprehensive Portable Operating System Interface POSIX, and a unified driver framework, Hardware Driver Foundation HDF, which offers unified access for device developers and friendly development experience for application developers. Figure 1 shows the architecture of the OpenHarmony LiteOS Cortex-A kernel.

Figure 1 Architecture of the OpenHarmony LiteOS Cortex-A kernel

Directory Structure

/kernel/liteos_a
├── apps                   # User-space init and shell application programs
├── arch                   # System architecture, such as ARM
│   └── arm                # Code for ARM architecture
├── bsd                    # Code of the driver and adaptation layer module related to the FreeBSD, such as the USB module
├── compat                 # Kernel API compatibility
│   └── posix              # POSIX APIs
├── drivers                # Kernel drivers
│   └── char               # Character device
│       ├── mem            # Driver for accessing physical input/output (I/O) devices
│       ├── quickstart     # APIs for quick start of the system
│       ├── random         # Driver for random number generators
│       └── video          # Framework of the framebuffer driver
├── fs                     # File system module, which mainly derives from the NuttX open-source project
│   ├── fat                # FAT file system
│   ├── jffs2              # JFFS2 file system
│   ├── include            # Header files exposed externally
│   ├── nfs                # NFS file system
│   ├── proc               # proc file system
│   ├── ramfs              # RAMFS file system
│   └── vfs                # VFS layer
├── kernel                 # Kernel modules including the process, memory, and IPC modules
│   ├── base               # Basic kernel modules including the scheduling and memory modules
│   ├── common             # Common components used by the kernel
│   ├── extended           # Extended kernel modules including the dynamic loading, vDSO, and LiteIPC modules
│   ├── include            # Header files exposed externally
│   └── user               # Init process loading
├── lib                    # Kernel library
├── net                    # Network module, which mainly derives from the lwIP open-source project
├── platform               # Code for supporting different systems on a chip (SOCs), such as Hi3516D V300
│   ├── hw                 # Logic code related to clocks and interrupts
│   ├── include            # Header files exposed externally
│   └── uart               # Logic code related to the serial port
├── platform               # Code for supporting different systems on a chip (SOCs), such as Hi3516D V300
├── security               # Code related to security features, including process permission management and virtual ID mapping management
├── syscall                # System calling
└── tools                  # Building tools as well as related configuration and code

Constraints

  • Programming languages: C and C++
  • Applicable development boards: Hi3518E V300 and Hi3516D V300
  • Hi3518E V300 uses the JFFS2 file system by default, and Hi3516D V300 uses the FAT file system by default.

Usage

OpenHarmony LiteOS Cortex-A supports the Hi3518E V300 and Hi3516D V300. You can develop and run your applications based on both development boards.

Preparations

You need to set up the compilation environment on Linux.

Source Code Acquisition

Download and decompress a set of source code on a Linux server to acquire the source code. For more acquisition methods, see Source Code Acquisition.

Compilation and Building

For details about how to develop the first application, see:

Repositories Involved

Kernel subsystem

drivers_liteos

kernel_liteos_a