cad1891021
Added three patches to fix the mmc issue as described here: https://github.com/SolidHal/Librean/issues/17 Source for the patches is the chrome os kernel. Links to the commits can be found in the issue. Locking into version 4.17.2 for the time being. Better organized patches. Added logic to only apply tested patches on fresh kernel. Moved some debian build improvements in from my devsus master branch, including switching from xfce to lxqt. May be able to add option between the two in the future, as the issue that led to switching DEs may have been with the xorg video drivers that are now skipped by the script and not xfce itself. Cleaned up uneeded old configs
49 lines
944 B
Diff
49 lines
944 B
Diff
From 4766516bcbf023813ad883c2d61c422316770d12 Mon Sep 17 00:00:00 2001
|
|
From: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
Date: Tue, 21 Nov 2017 21:58:22 +0100
|
|
Subject: [PATCH 5/5] ARM: DTSI: rk3288-veyron: Enable the Video encoding MMU
|
|
and services
|
|
|
|
Enable the :
|
|
* VPU MMU;
|
|
* VPU Service;
|
|
* HEVC MMU;
|
|
* HEVC Service;
|
|
for RK3288 Chromebook laptops.
|
|
|
|
Signed-off-by: Myy Miouyouyou <myy@miouyouyou.fr>
|
|
---
|
|
arch/arm/boot/dts/rk3288-veyron.dtsi | 16 ++++++++++++++++
|
|
1 file changed, 16 insertions(+)
|
|
|
|
diff --git a/arch/arm/boot/dts/rk3288-veyron.dtsi b/arch/arm/boot/dts/rk3288-veyron.dtsi
|
|
index 6e5bd897..517b9242 100644
|
|
--- a/arch/arm/boot/dts/rk3288-veyron.dtsi
|
|
+++ b/arch/arm/boot/dts/rk3288-veyron.dtsi
|
|
@@ -450,6 +450,22 @@
|
|
status = "okay";
|
|
};
|
|
|
|
+&vpu_mmu {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&vpu_service {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&hevc_mmu {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
+&hevc_service {
|
|
+ status = "okay";
|
|
+};
|
|
+
|
|
&wdt {
|
|
status = "okay";
|
|
};
|
|
--
|
|
2.14.1
|
|
|