Hello,
I have legato app and I would like to package as .app and it should not have binary within it.
The binary will be placed in another partition. How can I achieve this ? Below is adef content.
sandboxed: false
executables:
{
example = ( exampleComponent )
}
processes:
{
envVars:
{
LE_LOG_LEVEL = DEBUG
}
run:
{
(/mnt/app/bin/example)
}
faultAction: stopApp
}
start: auto
bindings:
{
example.exampleComponent.appCtrl → .le_appCtrl
example.exampleComponent.ecallSrv → .le_mcc
example.exampleComponent.audioSrv → .le_audio
}