mirror of
https://github.com/Fishwaldo/meta-riscv.git
synced 2025-03-15 11:31:43 +00:00
Small Updates for Star64
This commit is contained in:
parent
3f010e9723
commit
a4905cf43a
3 changed files with 37 additions and 1 deletions
|
@ -23,7 +23,7 @@ BBFILES_DYNAMIC += " \
|
|||
\
|
||||
"
|
||||
|
||||
LAYERSERIES_COMPAT_riscv-layer = "mickledore"
|
||||
LAYERSERIES_COMPAT_riscv-layer = "mickledore kirkstone"
|
||||
|
||||
INSANE_SKIP:append:pn-eudev:riscv64 = " textrel"
|
||||
INSANE_SKIP:append:pn-gdb:riscv64 = " textrel"
|
||||
|
|
|
@ -34,6 +34,7 @@ SRC_URI:append:visionfive = " \
|
|||
|
||||
SRC_URI:append:jh7110 = " \
|
||||
file://visionfive2-graphics.cfg \
|
||||
file://0001-drm-dc8200-disable-gamma-lut-now.patch \
|
||||
"
|
||||
|
||||
LINUX_VERSION ?= "6.2.0"
|
||||
|
|
|
@ -0,0 +1,35 @@
|
|||
From 75bd30a3f73d5ae66f3774ab0159f0f97bf7280e Mon Sep 17 00:00:00 2001
|
||||
From: Icenowy Zheng <uwu@icenowy.me>
|
||||
Date: Wed, 14 Sep 2022 14:15:22 +0800
|
||||
Subject: [PATCH 01/10] drm/dc8200: disable gamma lut now
|
||||
|
||||
It seems to have dependency issue.
|
||||
|
||||
Signed-off-by: Icenowy Zheng <uwu@icenowy.me>
|
||||
---
|
||||
drivers/gpu/drm/verisilicon/vs_crtc.c | 2 ++
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/drivers/gpu/drm/verisilicon/vs_crtc.c b/drivers/gpu/drm/verisilicon/vs_crtc.c
|
||||
index ff8603ab9d2b..4561efd440d0 100755
|
||||
--- a/drivers/gpu/drm/verisilicon/vs_crtc.c
|
||||
+++ b/drivers/gpu/drm/verisilicon/vs_crtc.c
|
||||
@@ -390,6 +390,7 @@ struct vs_crtc *vs_crtc_create(struct drm_device *drm_dev,
|
||||
VS_SINGLE_DC);
|
||||
}
|
||||
|
||||
+ /*
|
||||
if (info->gamma_size) {
|
||||
ret = drm_mode_crtc_set_gamma_size(&crtc->base,
|
||||
info->gamma_size);
|
||||
@@ -399,6 +400,7 @@ struct vs_crtc *vs_crtc_create(struct drm_device *drm_dev,
|
||||
drm_crtc_enable_color_mgmt(&crtc->base, 0, false,
|
||||
info->gamma_size);
|
||||
}
|
||||
+ */
|
||||
|
||||
if (info->background) {
|
||||
crtc->bg_color = drm_property_create_range(drm_dev, 0,
|
||||
--
|
||||
2.25.1
|
||||
|
Loading…
Add table
Reference in a new issue