summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0002-fix-sdl-handle-both-LV_IMAGE_SRC_FILE-and-LV_IMAGE_S.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0003-Make-fbdev-device-node-runtime-configurable-via-envi.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0004-Factor-out-fbdev-initialization-code.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0005-Add-DRM-KMS-example-support.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0006-Add-SDL2-example-support.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch2
-rw-r--r--meta-oe/recipes-graphics/lvgl/files/0008-fix-fbdev-set-resolution-prior-to-buffer.patch2
7 files changed, 7 insertions, 7 deletions
diff --git a/meta-oe/recipes-graphics/lvgl/files/0002-fix-sdl-handle-both-LV_IMAGE_SRC_FILE-and-LV_IMAGE_S.patch b/meta-oe/recipes-graphics/lvgl/files/0002-fix-sdl-handle-both-LV_IMAGE_SRC_FILE-and-LV_IMAGE_S.patch
index bd619b1572..0bfc3f3e79 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0002-fix-sdl-handle-both-LV_IMAGE_SRC_FILE-and-LV_IMAGE_S.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0002-fix-sdl-handle-both-LV_IMAGE_SRC_FILE-and-LV_IMAGE_S.patch
@@ -10,7 +10,7 @@ the case, e.g. the lv_demo_fb uses encoded images which are of type
10LV_IMAGE_SRC_VARIABLE and instead of filename, come with a buffer of 10LV_IMAGE_SRC_VARIABLE and instead of filename, come with a buffer of
11pixels. Handle the later using SDL_CreateRGBSurfaceFrom(). 11pixels. Handle the later using SDL_CreateRGBSurfaceFrom().
12 12
13Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5852] 13Upstream-Status: Backport [b339e67581864b2fb6bb8897735a1e110c324ddc]
14Signed-off-by: Marek Vasut <marex@denx.de> 14Signed-off-by: Marek Vasut <marex@denx.de>
15--- 15---
16 src/draw/sdl/lv_draw_sdl.c | 30 +++++++++++++++++++++++++++--- 16 src/draw/sdl/lv_draw_sdl.c | 30 +++++++++++++++++++++++++++---
diff --git a/meta-oe/recipes-graphics/lvgl/files/0003-Make-fbdev-device-node-runtime-configurable-via-envi.patch b/meta-oe/recipes-graphics/lvgl/files/0003-Make-fbdev-device-node-runtime-configurable-via-envi.patch
index 73c01cb590..7e542bcfbc 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0003-Make-fbdev-device-node-runtime-configurable-via-envi.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0003-Make-fbdev-device-node-runtime-configurable-via-envi.patch
@@ -9,7 +9,7 @@ case it is, use it as the video card file in lv_linux_fbdev_set_file().
9Otherwise fall back to /dev/fb0, i.e. the current behavior. This way, 9Otherwise fall back to /dev/fb0, i.e. the current behavior. This way,
10it is possible to test LVGL on systems with multiple fbdev devices. 10it is possible to test LVGL on systems with multiple fbdev devices.
11 11
12Upstream-Status: Submitted [https://github.com/lvgl/lv_port_linux_frame_buffer/pull/47] 12Upstream-Status: Backport [a0f03515bd7417a0d100058b133c3e8d69be9451]
13Signed-off-by: Marek Vasut <marex@denx.de> 13Signed-off-by: Marek Vasut <marex@denx.de>
14--- 14---
15 main.c | 8 +++++++- 15 main.c | 8 +++++++-
diff --git a/meta-oe/recipes-graphics/lvgl/files/0004-Factor-out-fbdev-initialization-code.patch b/meta-oe/recipes-graphics/lvgl/files/0004-Factor-out-fbdev-initialization-code.patch
index d24d150c06..6843af0aab 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0004-Factor-out-fbdev-initialization-code.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0004-Factor-out-fbdev-initialization-code.patch
@@ -8,7 +8,7 @@ around it, so it can be conditionally compiled in. This is done in
8preparation for addition of other backend initialization example 8preparation for addition of other backend initialization example
9code. 9code.
10 10
11Upstream-Status: Submitted [https://github.com/lvgl/lv_port_linux_frame_buffer/pull/47] 11Upstream-Status: Backport [a0f03515bd7417a0d100058b133c3e8d69be9451]
12Signed-off-by: Marek Vasut <marex@denx.de> 12Signed-off-by: Marek Vasut <marex@denx.de>
13--- 13---
14 main.c | 18 ++++++++++++++---- 14 main.c | 18 ++++++++++++++----
diff --git a/meta-oe/recipes-graphics/lvgl/files/0005-Add-DRM-KMS-example-support.patch b/meta-oe/recipes-graphics/lvgl/files/0005-Add-DRM-KMS-example-support.patch
index 9ee7a7f19d..2d2c4c60f1 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0005-Add-DRM-KMS-example-support.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0005-Add-DRM-KMS-example-support.patch
@@ -13,7 +13,7 @@ To use DRM/KMS support, adjust lv_conf.h as follows:
13LV_USE_LINUX_FBDEV=0 13LV_USE_LINUX_FBDEV=0
14LV_USE_LINUX_DRM=1 14LV_USE_LINUX_DRM=1
15 15
16Upstream-Status: Submitted [https://github.com/lvgl/lv_port_linux_frame_buffer/pull/47] 16Upstream-Status: Backport [a0f03515bd7417a0d100058b133c3e8d69be9451]
17Signed-off-by: Marek Vasut <marex@denx.de> 17Signed-off-by: Marek Vasut <marex@denx.de>
18--- 18---
19 CMakeLists.txt | 5 ++++- 19 CMakeLists.txt | 5 ++++-
diff --git a/meta-oe/recipes-graphics/lvgl/files/0006-Add-SDL2-example-support.patch b/meta-oe/recipes-graphics/lvgl/files/0006-Add-SDL2-example-support.patch
index 691ee80b59..cfb6c6e817 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0006-Add-SDL2-example-support.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0006-Add-SDL2-example-support.patch
@@ -22,7 +22,7 @@ LV_USE_LINUX_FBDEV=0
22LV_USE_LINUX_DRM=0 22LV_USE_LINUX_DRM=0
23LV_USE_SDL=1 23LV_USE_SDL=1
24 24
25Upstream-Status: Submitted [https://github.com/lvgl/lv_port_linux_frame_buffer/pull/47] 25Upstream-Status: Backport [a0f03515bd7417a0d100058b133c3e8d69be9451]
26Signed-off-by: Marek Vasut <marex@denx.de> 26Signed-off-by: Marek Vasut <marex@denx.de>
27--- 27---
28 CMakeLists.txt | 6 +++++- 28 CMakeLists.txt | 6 +++++-
diff --git a/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch b/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
index 64468313a3..f5d39396fc 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0007-fix-cmake-generate-versioned-shared-libraries.patch
@@ -10,7 +10,7 @@ to make cmake add the version suffix to generated shared libraries. That
10changes the filename to liblvgl.so.9.1.0 and includes symlink with major 10changes the filename to liblvgl.so.9.1.0 and includes symlink with major
11ABI version, i.e. liblvgl.so.9 . 11ABI version, i.e. liblvgl.so.9 .
12 12
13Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/5865] 13Upstream-Status: Backport [2c469279f53f9dee63d71295c6058749bc87ce73]
14Signed-off-by: Marek Vasut <marex@denx.de> 14Signed-off-by: Marek Vasut <marex@denx.de>
15--- 15---
16 env_support/cmake/custom.cmake | 11 +++++++++++ 16 env_support/cmake/custom.cmake | 11 +++++++++++
diff --git a/meta-oe/recipes-graphics/lvgl/files/0008-fix-fbdev-set-resolution-prior-to-buffer.patch b/meta-oe/recipes-graphics/lvgl/files/0008-fix-fbdev-set-resolution-prior-to-buffer.patch
index 449db53dfb..5cafb41d56 100644
--- a/meta-oe/recipes-graphics/lvgl/files/0008-fix-fbdev-set-resolution-prior-to-buffer.patch
+++ b/meta-oe/recipes-graphics/lvgl/files/0008-fix-fbdev-set-resolution-prior-to-buffer.patch
@@ -6,7 +6,7 @@ Subject: [PATCH] fix(fbdev): set resolution prior to buffer
6Otherwise it ends up with using the default value 800x480 and may fail 6Otherwise it ends up with using the default value 800x480 and may fail
7at lv_display_set_buffers due to incorrect resolution. 7at lv_display_set_buffers due to incorrect resolution.
8 8
9Upstream-Status: Submitted [https://github.com/lvgl/lvgl/pull/6004] 9Upstream-Status: Backport [29662d1c357c15135d076a2a924b9ef056c82120]
10Signed-off-by: Jaeyoon Jung <jaeyoon.jung@lge.com> 10Signed-off-by: Jaeyoon Jung <jaeyoon.jung@lge.com>
11--- 11---
12 12