Is it possible to bundle file to filesystem and not inside app sandbox? For example,
bundles:
{
file:
{
data.txt /mnt/userrw/ #/mnt/userrw/ should be path outside app sandbox
}
}
I read that it will be added in Legato 18.09. but I couldn’t find anything about this in release notes.
What could be solution to this problem? To bundle it to app sandbox and then copy it from sandbox to filesystem outside?
Yes it will be inside sandbox at /legato/systems/current/appsWriteable/myApp/mnt/userrw/data.txt. But my question was how to have it outside sandbox at /mnt/userrw/ ?
but file is created at /legato/systems/current/appsWriteable/myApp/mnt/userrw/data.txt and not at /mnt/userrw/data.txt
Is it possible to do with .adef file so I can directly write outside or I have to rely on copying file from /legato/systems/current/appsWriteable/myApp/mnt/userrw/data.txt to /mnt/userrw/data.txt ?