Updated the documentation
Updated all documentation related to the changes made in the previous commit.
This commit is contained in:
parent
364924c383
commit
73409ca26e
|
@ -66,6 +66,8 @@ The host is extendable via 3rd party modules but the host itself have it's own i
|
||||||
|
|
||||||
* [fs_move](intern_commands/fs_move.md) - move/rename a file system object (file,directory,symlink) from one location to another.
|
* [fs_move](intern_commands/fs_move.md) - move/rename a file system object (file,directory,symlink) from one location to another.
|
||||||
|
|
||||||
|
* [fs_tree](intern_commands/fs_tree.md) - list all files and sub-directories of an entire directory tree.
|
||||||
|
|
||||||
* [fs_upload](intern_commands/fs_upload.md) - upload a single file to the host.
|
* [fs_upload](intern_commands/fs_upload.md) - upload a single file to the host.
|
||||||
|
|
||||||
* [host_config](intern_commands/host_config.md) - view/change various host settings.
|
* [host_config](intern_commands/host_config.md) - view/change various host settings.
|
||||||
|
|
|
@ -68,7 +68,7 @@ makeself
|
||||||
Linux_build.sh is a custom script designed to build this project from the source code using qmake, make and makeself. You can pass 2 optional arguments:
|
Linux_build.sh is a custom script designed to build this project from the source code using qmake, make and makeself. You can pass 2 optional arguments:
|
||||||
|
|
||||||
1. The path to the QT bin folder in case you want to compile with a QT install not defined in PATH.
|
1. The path to the QT bin folder in case you want to compile with a QT install not defined in PATH.
|
||||||
2. Path of the output makeself file (usually has a .run extension). If not given, the outfile will be named mrci-1.1.2.run in the source code folder.
|
2. Path of the output makeself file (usually has a .run extension). If not given, the outfile will be named mrci-x.x.x.run in the source code folder.
|
||||||
|
|
||||||
Build:
|
Build:
|
||||||
```
|
```
|
||||||
|
@ -77,8 +77,8 @@ sh ./linux_build.sh
|
||||||
```
|
```
|
||||||
Install:
|
Install:
|
||||||
```
|
```
|
||||||
chmod +x ./mrci-1.1.2.run
|
chmod +x ./mrci-x.x.x.run
|
||||||
./mrci-1.1.2.run
|
./mrci-x.x.x.run
|
||||||
```
|
```
|
||||||
|
|
||||||
The makeself installer not only installs the application but also installs it as a service if the target linux system supports systemd.
|
The makeself installer not only installs the application but also installs it as a service if the target linux system supports systemd.
|
||||||
|
|
|
@ -26,7 +26,7 @@ InternalCommandLoader::InternalCommandLoader(RWSharedObjs *sharedData, QObject *
|
||||||
// This is used as an automated way to update the Internal_Commands doc for the source code documentation
|
// This is used as an automated way to update the Internal_Commands doc for the source code documentation
|
||||||
// keep it commented for release code.
|
// keep it commented for release code.
|
||||||
|
|
||||||
// makeDocHeader("/path/to/source/docs/Internal_Commands.md");
|
//makeDocHeader("/docs/Internal_Commands.md");
|
||||||
|
|
||||||
objNames << CloseHost::cmdName();
|
objNames << CloseHost::cmdName();
|
||||||
objNames << RestartHost::cmdName();
|
objNames << RestartHost::cmdName();
|
||||||
|
@ -307,7 +307,7 @@ InternCommand *InternalCommandLoader::cmdObj(const QString &name)
|
||||||
// This is used as an automated way to update the Internal_Commands doc for the source code documentation
|
// This is used as an automated way to update the Internal_Commands doc for the source code documentation
|
||||||
// keep it commented for release code.
|
// keep it commented for release code.
|
||||||
|
|
||||||
// appendToDoc("/path/to/source/docs/Internal_Commands.md", name, ret);
|
//appendToDoc("/docs/Internal_Commands.md", name, ret);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue
Block a user