Skip to content

Commit

Permalink
lvgl: use latest release/v9.2 branch
Browse files Browse the repository at this point in the history
LVGL may release v9.2.1 in near future, but the code is already there in
branch release/v9.2.

Use the latest release branch code instead of release tag.

Signed-off-by: Neo Xu <[email protected]>
  • Loading branch information
XuNeo authored and jerpelea committed Oct 21, 2024
1 parent e64b31e commit 37a6e2e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion graphics/lvgl/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ if(CONFIG_GRAPHICS_LVGL)
FetchContent_Declare(
lvgl_fetch
DOWNLOAD_DIR ${CMAKE_CURRENT_LIST_DIR}
URL "https://github.com/lvgl/lvgl/archive/refs/tags/v9.2.1.zip"
URL "https://github.com/lvgl/lvgl/archive/refs/heads/release/v9.2.zip"
SOURCE_DIR
${CMAKE_CURRENT_LIST_DIR}/lvgl
BINARY_DIR
Expand Down
6 changes: 3 additions & 3 deletions graphics/lvgl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ endif

WD := ${shell echo $(CURDIR) | sed -e 's/ /\\ /g'}

CONFIG_GRAPH_LVGL_URL ?= "https://github.com/lvgl/lvgl/archive/refs/tags"
CONFIG_GRAPH_LVGL_URL ?= "https://github.com/lvgl/lvgl/archive/refs/heads/release"

LVGL_VERSION = 9.2.1
LVGL_VERSION = 9.2
LVGL_TARBALL = v$(LVGL_VERSION).zip

LVGL_UNPACKNAME = lvgl
Expand All @@ -73,7 +73,7 @@ $(LVGL_TARBALL):
$(LVGL_UNPACKNAME): $(LVGL_TARBALL)
$(ECHO_BEGIN)"Unpacking: $(LVGL_TARBALL) -> $(LVGL_UNPACKNAME)"
$(Q) $(UNPACK) $(LVGL_TARBALL)
$(Q) mv lvgl-$(LVGL_VERSION) $(LVGL_UNPACKNAME)
$(Q) mv lvgl-release-v$(LVGL_VERSION) $(LVGL_UNPACKNAME)
$(Q) touch $(LVGL_UNPACKNAME)
$(ECHO_END)

Expand Down

0 comments on commit 37a6e2e

Please sign in to comment.