summaryrefslogtreecommitdiffstats
path: root/recipes-extended/jailhouse/jailhouse
diff options
context:
space:
mode:
authorCristinel Panfir <cristinel.panfir@nxp.com>2020-05-12 17:02:43 +0300
committerOtavio Salvador <otavio@ossystems.com.br>2020-05-25 09:54:09 -0300
commitc7b9a8de1943e5fa094e59a7ebbfbcb2d8283b33 (patch)
tree4929954aa50ed489caa42c963b4a63c0be7764b0 /recipes-extended/jailhouse/jailhouse
parente5cc2b1848a74d25004e9524dc9a3ea12639ad53 (diff)
downloadmeta-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 'recipes-extended/jailhouse/jailhouse')
-rw-r--r--recipes-extended/jailhouse/jailhouse/0001-tools-scripts-update-shebang-to-python3.patch69
1 files changed, 69 insertions, 0 deletions
diff --git a/recipes-extended/jailhouse/jailhouse/0001-tools-scripts-update-shebang-to-python3.patch b/recipes-extended/jailhouse/jailhouse/0001-tools-scripts-update-shebang-to-python3.patch
new file mode 100644
index 00000000..df2f37ad
--- /dev/null
+++ b/recipes-extended/jailhouse/jailhouse/0001-tools-scripts-update-shebang-to-python3.patch
@@ -0,0 +1,69 @@
1From f07cd0e5f32a00a4091fa964d0dae0cd46c17554 Mon Sep 17 00:00:00 2001
2From: Cristinel Panfir <cristinel.panfir@nxp.com>
3Date: Sat, 23 May 2020 08:51:31 +0000
4Subject: [PATCH] tools/scripts: update shebang to python3
5
6Upstream-Status: Pending
7
8Signed-off-by: Cristinel Panfir <cristinel.panfir@nxp.com>
9---
10 scripts/arm64-parsedump.py | 2 +-
11 tools/jailhouse-cell-linux | 2 +-
12 tools/jailhouse-cell-stats | 2 +-
13 tools/jailhouse-config-create | 2 +-
14 tools/jailhouse-hardware-check | 2 +-
15 5 files changed, 5 insertions(+), 5 deletions(-)
16
17diff --git a/scripts/arm64-parsedump.py b/scripts/arm64-parsedump.py
18index 9519eb5..c695706 100755
19--- a/scripts/arm64-parsedump.py
20+++ b/scripts/arm64-parsedump.py
21@@ -1,4 +1,4 @@
22-#!/usr/bin/env python
23+#!/usr/bin/env python3
24
25 # Jailhouse, a Linux-based partitioning hypervisor
26 #
27diff --git a/tools/jailhouse-cell-linux b/tools/jailhouse-cell-linux
28index 215932a..bcbb902 100755
29--- a/tools/jailhouse-cell-linux
30+++ b/tools/jailhouse-cell-linux
31@@ -1,4 +1,4 @@
32-#!/usr/bin/env python
33+#!/usr/bin/env python3
34
35 # Jailhouse, a Linux-based partitioning hypervisor
36 #
37diff --git a/tools/jailhouse-cell-stats b/tools/jailhouse-cell-stats
38index 2f7e966..4c5289f 100755
39--- a/tools/jailhouse-cell-stats
40+++ b/tools/jailhouse-cell-stats
41@@ -1,4 +1,4 @@
42-#!/usr/bin/env python
43+#!/usr/bin/env python3
44
45 # Jailhouse, a Linux-based partitioning hypervisor
46 #
47diff --git a/tools/jailhouse-config-create b/tools/jailhouse-config-create
48index 55601a6..9869b94 100755
49--- a/tools/jailhouse-config-create
50+++ b/tools/jailhouse-config-create
51@@ -1,4 +1,4 @@
52-#!/usr/bin/env python
53+#!/usr/bin/env python3
54 #
55 # Jailhouse, a Linux-based partitioning hypervisor
56 #
57diff --git a/tools/jailhouse-hardware-check b/tools/jailhouse-hardware-check
58index b86756a..0c8fb42 100755
59--- a/tools/jailhouse-hardware-check
60+++ b/tools/jailhouse-hardware-check
61@@ -1,4 +1,4 @@
62-#!/usr/bin/env python
63+#!/usr/bin/env python3
64
65 # Jailhouse, a Linux-based partitioning hypervisor
66 #
67--
682.7.4
69