summaryrefslogtreecommitdiffstats
path: root/recipes-qt
AgeCommit message (Expand)AuthorFilesLines
2016-06-14Fix qml-radio-plugin compilation with security flagsManuel Bachmann1-0/+10
2016-05-29Refactoring code for installation qml libsPhong Tran1-3/+3
2015-12-21Disable AM/FM QML Radio PluginManuel Bachmann1-1/+0
2015-12-21Add qml-execscript-plugin to packagegroup-agl-appfw-native-qt5Nobuhiko Tanibata1-0/+1
2015-12-17Workaround for QDbus caching introspects.Risto Avila2-0/+34
2015-12-15qml-execscript-pluginuser1-0/+25
2015-12-08Update AM/FM radio QML plugin to version 0.2Manuel Bachmann1-6/+12
2015-12-02Provide AM/FM radio QML plugin 0.1Manuel Bachmann2-0/+32
2015-11-12Enable gstreamer backend for qtmultimediaDamian Hobson-Garcia1-0/+1
2015-11-12Removed QtWebkit (To reduce build time for development CES2016-demo)Tadao Tnikawa1-2/+3
2015-11-11Update Qt5 to latest stable release (5.5.1)Tadao Tanikawa6-9/+777
2015-09-24Qt5 now avairable in agl-demo-platfrom.Jan-Simon Möller17-0/+3207
2015-08-22The starting point of layers for AGL Demo PlatformTadao Tanikawa1-0/+0
ing.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
# Jailhouse support layer

Yocto layer that enables use of the Jailhouse partitioning hypervisor - <https://github.com/siemens/jailhouse>.

## How to use

The AGL feature `agl-jailhouse` has to be enabled. That needs to be done when including aglsetup.sh, for example:

    source meta-agl/scripts/aglsetup.sh -m raspberrypi4 agl-demo agl-netboot agl-appfw-smack agl-jailhouse

That will enable this layer and include the `jailhouse` package in the image.

Then, in the target system, the cell configurations (*.cell) are placed in `/usr/share/jailhouse/cells/` and the demo inmates (bare-metal applications to run in a non-root cell) are located in `/usr/share/jailhouse/inmates`.

## Raspberry Pi 4 example

Use this commands to enable Jailhouse and run the GIC demo inmate in a non-root cell. After issuing these commands, the GIC demo will be measuring jitter of a timer and print the output on the serial console of the RPi.

    jailhouse enable /usr/share/jailhouse/cells/rpi4.cell
    jailhouse cell create /usr/share/jailhouse/cells/rpi4-inmate-demo.cell
    jailhouse cell load inmate-demo /usr/share/jailhouse/inmates/gic-demo.bin
    jailhouse cell start inmate-demo

## Dependencies

This layer depends on:

* URI: git://git.yoctoproject.org/meta-arm
  * branch: dunfell
  * revision: 0bd9c740267c0926e89bcfdb489790b7bf1fbd4b
  * note: actually only required on the Raspberry Pi 4 target

## Supported targets

* Raspberry Pi 4
    * All (1G-8G) memory variants. But note that there is 256M reserved for Jailhouse and 256MiB for GPU in AGL, so the smaller variants are not recommended.

* QEMU x86-64
    * Work in progress. Requires KVM. Nested virtualization must be enabled on the host. Currently, the right configuration of QEMU and Jailhouse to work out-of-box is being worked on.