• Home
Name Date Size #Lines LOC

..--

liteos_m/12-May-2024-3,9692,313

BUILD.gnD12-May-20241.6 KiB3230

README.mdD12-May-20243.5 KiB14294

README_zh.mdD12-May-20243.2 KiB13990

ohos.buildD12-May-2024182 1010

README.md

1### Qemu Arm Cortex-m4 mps2-an386 HOWTO
2
3#### 1. Brief introduction
4`arm_mps2_an386/` subdirectory contains part of the OpenHarmony LiteOS demonstration support for Qemu Arm Cortex-m4 mps2-an386 Platform,
5here called *arm_mps2_an386*.
6cortex-m4 Virtual platform is a `qemu-system-arm` machine target that provides emulation
7for a generic, arm-based board.
8
9Introduced functionality adds support for Cortex-m4 (1 CPU with security extensions), 16MB memory virtual platform.
10
11Note: System memory size is hard-coded to 16MB.
12
13#### 2. Setting up environment
14
15[Setting up a development environment](https://gitee.com/openharmony/docs/blob/master/en/device-dev/quick-start/Readme-EN.md)
16
17Compiler install
18
191.Command to install
20
21Note: Command to install toolchain without arm-none-eabi-gdb, gdb cannot be debugged.
22
23```
24sudo apt install gcc-arm-none-eabi
25```
26
272.The installation package to install
28
29Note: If you have already passed the command to install gcc-arm-none-eabi, can through the command: `sudo apt remove
30gcc-arm-none-eabi` after unloading, install again.
31
32Download toolchain: [package](https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2)33
34```
35chmod 777 gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2
36tar -xvf gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 install_path
37```
38
39Add the installation path to the environment variable:
40
41```
42vim ~/.bashrc
43```
44
45Add the following command line to the last line of ~/.bashrc:
46
47```
48export PATH=$PATH:install_path/gcc-arm-none-eabi-6-2017-q2-update/bin
49```
50
51#### 3. Code acquisition
52
53[Code acquisition](https://gitee.com/openharmony/docs/blob/HEAD/en/device-dev/get-code/sourcecode-acquire.md)
54
55Note: One can use `repo` to fetch code in a straightforward manner.
56
57#### 4. Building from sources
58
59In the root directory of the obtained source code, run the following command:
60
61```
62hb set
63```
64
65Select `qemu_mini_system_demo` under **ohemu**.
66
67Run the following build command:
68```
69hb build -f
70```
71
72This will build `OHOS_Image` for Qemu Cortex-m4 mps2-an386 machine.
73
74
75After build is finished, the resulting image can be found in:
76```
77out/arm_mps2_an386/qemu_mini_system_demo/
78```
79#### 5. Running image in Qemu
80
81a) If not installed, please install `qemu-system-arm`
82For details, please refer to the HOWTO: [Qemu installation](https://gitee.com/openharmony/device_qemu/blob/HEAD/README.md)
83
84b) Run
85
86Run the `./qemu-run --help` command. The following information is displayed:
87
88```
89Usage: qemu-run [OPTION]...
90Run a OHOS image in qemu according to the options.
91
92    Options:
93
94    -e, --exec file_name     kernel exec file name
95    -n, --net-enable         enable net
96    -g, --gdb                enable gdb for kernel
97    -t, --test               test mode, exclusive with -g
98    -h, --help               print help info
99
100    By default, the kernel exec file is: out/arm_mps2_an386/qemu_mini_system_demo/OHOS_Image.
101```
102
103#### 6. gdb debug
104
105```
106cd device/qemu/arm_mps2_an386
107vim liteos_m/config.gni
108```
109
110In the modified `board_opt_flags` compiler options:
111
112```
113board_opt_flags = []
114```
115to:
116
117```
118board_opt_flags = [ "-g" ]
119```
120
121Save and exit, recompile under OHOS root directory:
122
123```
124hb build -f
125```
126
127In a window to enter the command:
128
129```
130./qemu-run -g
131```
132
133In another window to enter the command:
134
135```
136arm-none-eabi-gdb out/arm_mps2_an386/qemu_mini_system_demo/OHOS_Image
137(gdb) target remote localhost:1234
138(gdb) b main
139```
140
141More GDB related debugging can refer to [GDB instruction manual](https://sourceware.org/gdb/current/onlinedocs/gdb).
142

README_zh.md

1# Qemu Arm Cortex-m4 mps2-an386 教程
2
3## 1. 简介
4`arm_mps2_an386/` 子目录包含部分Qemu arn cortex-m4虚拟化平台验证的OpenHarmony kernel\_liteos\_m的代码,目录名为*arm_mps2_an386*。
5Arm Cortex-m4 虚拟化平台是一个 `qemu-system-arm` 的目标设备,通过它来模拟一个通用的、基于arm cortex-m4架构的单板。
6
7这次模拟的配置是:arm cortex-m4架构,1个CPU,16M内存。
8
9提示: 系统内存硬编码为16MB。
10
11## 2. 环境搭建
12
13[环境搭建](https://gitee.com/openharmony/docs/blob/master/zh-cn/device-dev/porting/Readme-CN.md)
14
15编译器安装
16
171.命令安装
18
19提示:命令安装的工具链无 arm-none-eabi-gdb,无法进行gdb调试
20
21```
22sudo apt install gcc-arm-none-eabi
23```
24
252.安装包安装
26
27提示:如果已经通过命令安装了gcc-arm-none-eabi, 可以通过命令:`sudo apt remove gcc-arm-none-eabi` 卸载之后,再进行安装。
28
29下载工具链[安装包](https://armkeil.blob.core.windows.net/developer/Files/downloads/gnu-rm/6-2017q2/gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2)30
31```
32chmod 777 gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2
33tar -xvf gcc-arm-none-eabi-6-2017-q2-update-linux.tar.bz2 install_path
34```
35
36将安装路径添加到环境变量中:
37
38```
39vim ~/.bashrc
40```
41
42在~/.bashrc最末尾加入:
43
44```
45export PATH=$PATH:install_path/gcc-arm-none-eabi-6-2017-q2-update/bin
46```
47
48## 3. 获取源码
49
50[代码获取](https://gitee.com/openharmony/docs/blob/HEAD/zh-cn/device-dev/get-code/sourcecode-acquire.md)
51
52提示: 可以使用 `repo` 命令来获取源码。
53
54## 4. 源码构建
55
56在已经获取的源码根目录,请输入:
57
58```
59hb set
60```
61
62选择ohemu下的`qemu_mini_system_demo`选项。
63
64
65然后执行构建命令如下:
66```
67hb build -f
68```
69
70这个命令构建会产生 `OHOS_Image` 的镜像文件。
71
72在构建完成之后,对应的镜像文件在如下目录:
73```
74out/arm_mps2_an386/qemu_mini_system_demo/
75```
76## 5. 在Qemu中运行镜像
77
78a) 如果没有安装 `qemu-system-arm` ,安装请参考链接:[Qemu安装指导](https://gitee.com/openharmony/device_qemu/blob/HEAD/README_zh.md)
79
80b) 运行
81
82执行`./qemu-run --help`提示如下:
83
84```
85Usage: qemu-run [OPTION]...
86Run a OHOS image in qemu according to the options.
87
88    Options:
89
90    -e, --exec file_name     kernel exec file name
91    -n, --net-enable         enable net
92    -g, --gdb                enable gdb for kernel
93    -t, --test               test mode, exclusive with -g
94    -h, --help               print help info
95
96    By default, the kernel exec file is: out/arm_mps2_an386/qemu_mini_system_demo/OHOS_Image.
97```
98
99## 6. gdb调试
100
101```
102cd device/qemu/arm_mps2_an386
103vim liteos_m/config.gni
104```
105
106将 `board_opt_flags` 中的
107
108```
109board_opt_flags = []
110```
111
112编译选项修改为:
113
114```
115board_opt_flags = [ "-g" ]
116```
117
118保存并退出,在OHOS根目录重新编译:
119
120```
121hb build -f
122```
123
124在一个窗口中输入命令:
125
126```
127./qemu-run -g
128```
129
130在另一个窗口中输入命令:
131
132```
133arm-none-eabi-gdb out/arm_mps2_an386/qemu_mini_system_demo/OHOS_Image
134(gdb) target remote localhost:1234
135(gdb) b main
136```
137
138更多gdb相关的调试可以查阅:[gdb指导手册](https://sourceware.org/gdb/current/onlinedocs/gdb)139