summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-graphics
diff options
context:
space:
mode:
authorChristophe Chapuis <chris.chapuis@gmail.com>2024-03-16 11:00:54 +0100
committerKhem Raj <raj.khem@gmail.com>2024-03-17 13:10:12 -0700
commita898fb981e267eacb63c5e680df90cc9dcb71642 (patch)
tree3f964c1a3a79c37ee94bad95bc3f2d318a7c14b8 /meta-oe/recipes-graphics
parent5ae9986261fc1503e8c9b287d3d664450f862999 (diff)
downloadmeta-openembedded-a898fb981e267eacb63c5e680df90cc9dcb71642.tar.gz
lvgl: add more variables to lv-conf.inc
As it can be usefull to customize these other variables, let's add them in lv-conf.inc. Signed-off-by: Christophe Chapuis <chris.chapuis@gmail.com> Reviewed-by: Marek Vasut <marex@denx.de> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-graphics')
-rw-r--r--meta-oe/recipes-graphics/lvgl/lv-conf.inc17
1 files changed, 17 insertions, 0 deletions
diff --git a/meta-oe/recipes-graphics/lvgl/lv-conf.inc b/meta-oe/recipes-graphics/lvgl/lv-conf.inc
index e43a4d508..9ee9f283d 100644
--- a/meta-oe/recipes-graphics/lvgl/lv-conf.inc
+++ b/meta-oe/recipes-graphics/lvgl/lv-conf.inc
@@ -12,8 +12,17 @@ LVGL_CONFIG_USE_SDL = "${@bb.utils.contains('PACKAGECONFIG', 'sdl', '1', '0', d)
12LVGL_CONFIG_SDL_FULLSCREEN ?= "0" 12LVGL_CONFIG_SDL_FULLSCREEN ?= "0"
13 13
14LVGL_CONFIG_LV_MEM_CUSTOM ?= "0" 14LVGL_CONFIG_LV_MEM_CUSTOM ?= "0"
15LVGL_CONFIG_LV_MEM_SIZE ?= "(64 * 1024U)"
15LVGL_CONFIG_LV_COLOR_DEPTH ?= "32" 16LVGL_CONFIG_LV_COLOR_DEPTH ?= "32"
16 17
18LVGL_CONFIG_LV_USE_LOG ?= "0"
19LVGL_CONFIG_LV_LOG_LEVEL ?= "LV_LOG_LEVEL_WARN"
20LVGL_CONFIG_LV_LOG_PRINTF ?= "0"
21
22LVGL_CONFIG_LV_USE_FONT_COMPRESSED ?= "0"
23
24LVGL_CONFIG_LV_THEME_DEFAULT_DARK ?= "0"
25
17DEBUG_BUILD ??= "0" 26DEBUG_BUILD ??= "0"
18 27
19ALLOW_EMPTY:${PN} = "1" 28ALLOW_EMPTY:${PN} = "1"
@@ -37,6 +46,7 @@ do_configure:append() {
37 \ 46 \
38 -e "s|\(^#define LV_COLOR_DEPTH \).*|\1${LVGL_CONFIG_LV_COLOR_DEPTH}|g" \ 47 -e "s|\(^#define LV_COLOR_DEPTH \).*|\1${LVGL_CONFIG_LV_COLOR_DEPTH}|g" \
39 -e "s|\(#define LV_MEM_CUSTOM .*\).*|\1${LVGL_CONFIG_LV_MEM_CUSTOM}|g" \ 48 -e "s|\(#define LV_MEM_CUSTOM .*\).*|\1${LVGL_CONFIG_LV_MEM_CUSTOM}|g" \
49 -e "s|\(^ \+#define LV_MEM_SIZE \).*|\1${LVGL_CONFIG_LV_MEM_SIZE}|g" \
40 \ 50 \
41 -e "s|\(#define LV_TICK_CUSTOM \).*|\1 1|g" \ 51 -e "s|\(#define LV_TICK_CUSTOM \).*|\1 1|g" \
42 -e "s|\(#define LV_TICK_CUSTOM_INCLUDE \).*|\1 <stdint.h>|g" \ 52 -e "s|\(#define LV_TICK_CUSTOM_INCLUDE \).*|\1 <stdint.h>|g" \
@@ -50,5 +60,12 @@ do_configure:append() {
50 -e "s|\(^#define LV_USE_ASSERT_MEM_INTEGRITY \).*|\1${DEBUG_BUILD}|g" \ 60 -e "s|\(^#define LV_USE_ASSERT_MEM_INTEGRITY \).*|\1${DEBUG_BUILD}|g" \
51 -e "s|\(^#define LV_USE_ASSERT_OBJ \).*|\1${DEBUG_BUILD}|g" \ 61 -e "s|\(^#define LV_USE_ASSERT_OBJ \).*|\1${DEBUG_BUILD}|g" \
52 \ 62 \
63 -e "s|\(^#define LV_USE_LOG \).*|\1${LVGL_CONFIG_LV_USE_LOG}|g" \
64 -e "s|\(^ \+#define LV_LOG_LEVEL \).*|\1${LVGL_CONFIG_LV_LOG_LEVEL}|g" \
65 -e "s|\(^ \+#define LV_LOG_PRINTF \).*|\1${LVGL_CONFIG_LV_LOG_PRINTF}|g" \
66 \
67 -e "s|\(^#define LV_USE_FONT_COMPRESSED \).*|\1${LVGL_CONFIG_LV_USE_FONT_COMPRESSED}|g" \
68 -e "s|\(^ \+#define LV_THEME_DEFAULT_DARK \).*|\1${LVGL_CONFIG_LV_THEME_DEFAULT_DARK}|g" \
69 \
53 -i "${S}/lv_conf.h" 70 -i "${S}/lv_conf.h"
54} 71}