Skip to content

Commit 9002475

Browse files
authored
Update embox_quick_start_en.md
Fixed some stilistic mistakes and add the translation of the last paragraph of RU-version of this document.
1 parent aeb02e4 commit 9002475

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

en/embox_quick_start_en.md

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ Now you are able to run Embox:
154154
```
155155
Console output example:
156156
```
157-
Embox kernel start
158-
unit: initializing embox.kernel.task.task_resource: done
159-
unit: initializing embox.mem.vmem_alloc: done
157+
Embox kernel start
158+
unit: initializing embox.kernel.task.task_resource: done
159+
unit: initializing embox.mem.vmem_alloc: done
160160
```
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.
@@ -270,3 +270,14 @@ After running that QEMU waits for a connection from a gdb-client. Run gdb in the
270270
The system starts to load.
271271

272272
At any moment in gdb terminal you can type <kbd>ctrl + C</kbd> and see the stack of the current thread (`backtrace`) or set breakpoints (`break <function name>`, `break <file name>:<line number>`).
273+
274+
## Connection of external repository
275+
Embox allows connection of external repo for modules and templates. To connect them to each other, it's enough to specify root directory of repository:
276+
```
277+
make ext_conf EXT_PROJECT_PATH=<your projects path>
278+
```
279+
To make templates visible through "make confload" and "make confload-" calls, connected repo has to have the next folder-structure:
280+
```
281+
<root_folder>/<project_name>/templates
282+
```
283+
Modules can be in random folders. Search is carried out, using *Mybuild* and **.my* files.

0 commit comments

Comments
 (0)