You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If all unit tests passed successfully and all modules loaded, then command prompt will appear.
162
162
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
270
270
The system starts to load.
271
271
272
272
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