diff options
author | Cristinel Panfir <cristinel.panfir@nxp.com> | 2020-05-12 17:02:43 +0300 |
---|---|---|
committer | Otavio Salvador <otavio@ossystems.com.br> | 2020-05-25 09:54:09 -0300 |
commit | c7b9a8de1943e5fa094e59a7ebbfbcb2d8283b33 (patch) | |
tree | 4929954aa50ed489caa42c963b4a63c0be7764b0 /conf | |
parent | e5cc2b1848a74d25004e9524dc9a3ea12639ad53 (diff) | |
download | meta-freescale-c7b9a8de1943e5fa094e59a7ebbfbcb2d8283b33.tar.gz |
jailhouse: Enable Jailhouse for i.MX
This is an adaptation of the original recipe
https://bitbucket.org/retotech/meta-jailhouse
- add recipe for Jailhouse version 0.11
- enable for mx8mq, mx8mm, mx8mn
- add pyjailhouse/python tools like jailhouse-cell-linux
- update to python3 classes
Signed-off-by: Cristinel Panfir <cristinel.panfir@nxp.com>
Diffstat (limited to 'conf')
-rw-r--r-- | conf/machine/include/imx-base.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/conf/machine/include/imx-base.inc b/conf/machine/include/imx-base.inc index 0985a6cf..4be14fb1 100644 --- a/conf/machine/include/imx-base.inc +++ b/conf/machine/include/imx-base.inc | |||
@@ -255,6 +255,11 @@ MACHINE_EXTRA_RRECOMMENDS_append = " ${@bb.utils.contains('MACHINE_FEATURES', 'q | |||
255 | # Extra udev rules | 255 | # Extra udev rules |
256 | MACHINE_EXTRA_RRECOMMENDS += "udev-rules-imx" | 256 | MACHINE_EXTRA_RRECOMMENDS += "udev-rules-imx" |
257 | 257 | ||
258 | # Jailhouse | ||
259 | MACHINE_EXTRA_RRECOMMENDS += " \ | ||
260 | ${@bb.utils.contains('COMBINED_FEATURES', 'jailhouse', 'jailhouse', '', d)} \ | ||
261 | " | ||
262 | |||
258 | # GStreamer 1.0 plugins | 263 | # GStreamer 1.0 plugins |
259 | MACHINE_GSTREAMER_1_0_PLUGIN ?= "" | 264 | MACHINE_GSTREAMER_1_0_PLUGIN ?= "" |
260 | MACHINE_GSTREAMER_1_0_PLUGIN_mx6dl ?= "gstreamer1.0-plugins-imx-meta" | 265 | MACHINE_GSTREAMER_1_0_PLUGIN_mx6dl ?= "gstreamer1.0-plugins-imx-meta" |
@@ -376,6 +381,9 @@ KERNEL_IMAGETYPE_aarch64 = "Image" | |||
376 | 381 | ||
377 | MACHINE_FEATURES = "usbgadget usbhost vfat alsa touchscreen" | 382 | MACHINE_FEATURES = "usbgadget usbhost vfat alsa touchscreen" |
378 | 383 | ||
384 | SOC_MACHINE_FEATURES_BACKFILL_mx8m = "jailhouse" | ||
385 | MACHINE_FEATURES_BACKFILL_append = " ${SOC_MACHINE_FEATURES_BACKFILL}" | ||
386 | |||
379 | # Add the ability to specify _imx machines | 387 | # Add the ability to specify _imx machines |
380 | MACHINEOVERRIDES =. "imx:" | 388 | MACHINEOVERRIDES =. "imx:" |
381 | 389 | ||