Skip to content

Commit c567242

Browse files
committed
update to m86;
fix cursor glitch issue; fix video hardware decoding issue; Only test on rpi4
1 parent da432d0 commit c567242

File tree

72 files changed

+1482
-82907
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+1482
-82907
lines changed

baseboard-rpi3/chromeos-base/baseboard-bsp/baseboard-bsp-0.0.1.ebuild

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,3 @@ RDEPEND="
1919

2020
DEPEND="${RDEPEND}"
2121

22-
S=$WORKDIR
23-
24-
src_install() {
25-
insinto /etc
26-
doins -r ${FILESDIR}/selinux
27-
}

baseboard-rpi3/chromeos-base/baseboard-bsp/files/selinux/arc/contexts/files/android_file_contexts

Lines changed: 0 additions & 454 deletions
This file was deleted.

baseboard-rpi3/chromeos-base/baseboard-bsp/files/selinux/arc/contexts/files/file_contexts

Lines changed: 0 additions & 959 deletions
This file was deleted.
Binary file not shown.

baseboard-rpi3/chromeos-base/baseboard-bsp/files/selinux/config

Lines changed: 0 additions & 2 deletions
This file was deleted.

baseboard-rpi3/chromeos-base/baseboard-bsp/files/selinux/intermediates.raw/chromeos.cil

Lines changed: 0 additions & 3143 deletions
This file was deleted.
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
From 61729a39f173ecfdc31cb09ede4575f4c6bd481c Mon Sep 17 00:00:00 2001
2+
From: Rob Clark <robdclark@google.com>
3+
Date: Mon, 8 Jun 2020 09:09:06 -0700
4+
Subject: [PATCH 1/2] Revert "meson: update llvm dependency logic for meson
5+
0.54.0"
6+
7+
This reverts commit 8d13ea15710f90485f1fec915e3ed0d5a4aecf5b.
8+
---
9+
.pick_status.json | 2 +-
10+
meson.build | 14 ++++++--------
11+
2 files changed, 7 insertions(+), 9 deletions(-)
12+
13+
diff --git a/.pick_status.json b/.pick_status.json
14+
index 60ea7967317..5ff6f169f16 100644
15+
--- a/.pick_status.json
16+
+++ b/.pick_status.json
17+
@@ -9103,7 +9103,7 @@
18+
"description": "meson: update llvm dependency logic for meson 0.54.0",
19+
"nominated": true,
20+
"nomination_type": 1,
21+
- "resolution": 1,
22+
+ "resolution": 0,
23+
"master_sha": null,
24+
"because_sha": "821cf6942a390f5f64d8a2cff9933b24c84f7dc1"
25+
},
26+
diff --git a/meson.build b/meson.build
27+
index ef4bdc2cb02..ef7a602cb03 100644
28+
--- a/meson.build
29+
+++ b/meson.build
30+
@@ -1389,14 +1389,12 @@ endif
31+
_shared_llvm = get_option('shared-llvm')
32+
_llvm = get_option('llvm')
33+
34+
-# the cmake method can only link statically, so don't attempt to use it if we
35+
-# want to link dynamically. Before 0.54.0 meson will try cmake even when shared
36+
-# linking is requested, so we need to force the config-tool method to be used
37+
-# in that case, but in 0.54.0 meson won't try the cmake method if shared
38+
-# linking is requested.
39+
-_llvm_method = 'auto'
40+
-if meson.version().version_compare('< 0.54.0') and _shared_llvm
41+
- _llvm_method = 'config-tool'
42+
+# The cmake method will never find libllvm.so|dylib; this is fine for windows
43+
+# because llvm doesn't support libllvm.dll
44+
+_llvm_method = 'config-tool'
45+
+if (meson.version().version_compare('>= 0.51.0') and
46+
+ host_machine.system() == 'windows')
47+
+ _llvm_method = 'cmake'
48+
endif
49+
50+
dep_llvm = null_dep
51+
--
52+
2.26.2
53+
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
From 4a5b81513561391f691fd4b7c99e54a182bfbd8b Mon Sep 17 00:00:00 2001
2+
From: Rob Clark <robdclark@google.com>
3+
Date: Mon, 8 Jun 2020 09:11:57 -0700
4+
Subject: [PATCH 2/2] Revert "meson: Use cmake to find LLVM when building for
5+
windows"
6+
7+
This reverts commit 821cf6942a390f5f64d8a2cff9933b24c84f7dc1.
8+
---
9+
meson.build | 12 ++----------
10+
1 file changed, 2 insertions(+), 10 deletions(-)
11+
12+
diff --git a/meson.build b/meson.build
13+
index ef7a602cb03..0f07aa83aa6 100644
14+
--- a/meson.build
15+
+++ b/meson.build
16+
@@ -1387,16 +1387,8 @@ else
17+
endif
18+
19+
_shared_llvm = get_option('shared-llvm')
20+
-_llvm = get_option('llvm')
21+
-
22+
-# The cmake method will never find libllvm.so|dylib; this is fine for windows
23+
-# because llvm doesn't support libllvm.dll
24+
-_llvm_method = 'config-tool'
25+
-if (meson.version().version_compare('>= 0.51.0') and
26+
- host_machine.system() == 'windows')
27+
- _llvm_method = 'cmake'
28+
-endif
29+
30+
+_llvm = get_option('llvm')
31+
dep_llvm = null_dep
32+
with_llvm = false
33+
if _llvm != 'false'
34+
@@ -1410,7 +1402,7 @@ if _llvm != 'false'
35+
with_gallium_opencl or _llvm == 'true'
36+
),
37+
static : not _shared_llvm,
38+
- method : _llvm_method,
39+
+ method : 'config-tool',
40+
fallback : ['llvm', 'dep_llvm'],
41+
)
42+
with_llvm = dep_llvm.found()
43+
--
44+
2.26.2
45+

baseboard-rpi3/media-libs/mesa/mesa-19.0-r13.ebuild

Lines changed: 0 additions & 1 deletion
This file was deleted.

baseboard-rpi3/media-libs/mesa/mesa-19.2.0_rc4.ebuild

Lines changed: 0 additions & 261 deletions
This file was deleted.

0 commit comments

Comments
 (0)