Skip to content

Commit c1d0c43

Browse files
authored
Update embox_quick_start_en.md
1 parent f24cad6 commit c1d0c43

File tree

1 file changed

+19
-17
lines changed

1 file changed

+19
-17
lines changed

en/embox_quick_start_en.md

Lines changed: 19 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -112,15 +112,15 @@ Or you can build cross-compiler with the script in the project's root folder:
112112
As the result ***ARCH-elf-toolchain.tar.bz2*** archive will be created. Than you need to extract files from the archive and set up `PATH` enviroment variable.
113113

114114
## QEMU installation
115-
Supported CPU architectures: x86, ARM, MIPS, Sparc, PPC, Microblaze.
115+
Supported CPU architectures: `x86`, `ARM`, `MIPS`, `Sparc`, `PPC`, `Microblaze`.
116116

117-
***QEMU*** can be installed in the following way:
117+
QEMU can be installed in the following way:
118118
```
119119
$ sudo apt-get install qemu-system-<ARCH>
120120
```
121-
Where <ARCH>: i386, arm, sparc, mips, ppc or misc (for microblaze).
121+
Where `<ARCH>`: i386, arm, sparc, mips, ppc or misc (for microblaze).
122122

123-
Notice: QEMU packages for all supported architectures can be installed with a single command:
123+
QEMU packages for all supported architectures can be installed with a single command:
124124
```
125125
$ sudo apt-get install qemu-system
126126
```
@@ -130,13 +130,13 @@ Set up default configuration for the desired platform:
130130
```
131131
$ make confload-<ARCH>/qemu
132132
```
133-
where <ARCH>: x86, arm, mips, ppc, sparc, microblaze.
133+
Where `<ARCH>`: x86, arm, mips, ppc, sparc, microblaze.
134134

135-
***Example for x86:***
135+
Example for x86:
136136
```
137137
make confload-x86/qemu
138138
```
139-
***Build Embox:***
139+
Build Embox:
140140
```
141141
$ make
142142
```
@@ -148,7 +148,7 @@ Example of how to build with 4 parallel jobs:
148148
```
149149
$ make -j4
150150
```
151-
***Now you are able to run Embox:***
151+
Now you are able to run Embox:
152152
```
153153
$ ./scripts/qemu/auto_qemu
154154
```
@@ -161,23 +161,25 @@ Console output example:
161161
If all unit tests passed successfully and all modules loaded, then command prompt will appear.
162162
Now you can execute commands included in the configuration (`mods.conf`). You can start with ***help*** command which prints list of available commands.
163163

164-
Press ***ctrl+’A’*** and then `***x***` to exit from QEMU.
164+
Press `ctrl + A` and then `x` to exit from QEMU.
165165

166166
## Preliminaries to Mybuild build system
167-
***Embox*** is modular and configurable. Declarative program language ***Mybuild*** has been developed for these features.
167+
***Embox*** is modular and configurable. Declarative program language Mybuild has been developed for these features.
168168
Mybuild allows to describe both single modules and whole target system.
169169

170170
***A module*** is a base concept for build system.
171-
**A module description** contains:
172-
* source files list
173-
* options, which can be set for the module during configuration
174-
* dependences list
171+
A module description contains:
172+
173+
* source files list
174+
* options, which can be set for the module during configuration
175+
* dependences list
175176

176177
***The configuration*** is a particular description of the whole system.
177178
It contains:
178-
* list of required modules
179-
* modules options
180-
* build rules (e. g. cross-compiler, additional compiler flags, memory map etc.)
179+
180+
* list of required modules
181+
* modules options
182+
* build rules (e. g. cross-compiler, additional compiler flags, memory map etc.)
181183

182184
Graph of the system will be based on the configuration and modules descriptions.
183185

0 commit comments

Comments
 (0)