Mountsets

AuterionOS contains a number of pre-defined file lists, called 'mountsets', which can be mounted to the app. A typical use case would be exposing the host device's libraries to the application via a simple flag, instead of having to manually list all the filepaths. Mountsets are supported as of API v7.

List of supported mountsets

Mountset
Description
Supported Targets
Minimum AuterionOS

ml-package

NPU, GPU libraries

Skynode S, Skynode X

4.3.0

Adding mountsets to an app

Mountsets can be defined by adding them by name under mountsets: in auterion-app.yml configuration file.

For example:

auterion-api-version: 7

...

services:
 my-app-service:
   ...
   mountsets:
     - ml-package

Adding non-existent mountsets will not prevent an app from starting.

Last updated