• ...
  • SDK
  • Yocto
  • ...
  • ...
  • tools
  • debug
  • package
  • deploy
  • debug

SimpleSwitch™ manifest#

The SimpleSwitch™ manifest acts as the entry point of the SimpleSwitch™ configuration. This is a YAML document describing the different packages. It will be automatically generated by Yocto or the SDK on application package creation.

Here is an example manifest

simpleswitch-hello-world:
  description: A minimal container image.
  license: MIT
  dependencies: []
  system_requirements: []
  package_prefix: simpleswitch-hello-world
  debug: '0'
  maxsize: -1
  autostart: true
simpleswitch-python-hello-world:
  description: A minimal python container image.
  license: MIT
  dependencies: [simpleswitch-hello-world]
  system_requirements: [wayland]
  package_prefix: simpleswitch-python-hello-world
  debug: '1'
  maxsize: 10000000
  autostart: true
  bindmounts: /apps/foo:/apps/bar

Options explained#