This is an automated email from the ASF dual-hosted git repository.

xiaoxiang781216 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 19bab7621 examples/lvglterm: fix wrong dependency on PSEUDOTERM
19bab7621 is described below

commit 19bab7621df24fb305f2807424045b7d08116838
Author: Filipe Cavalcanti <[email protected]>
AuthorDate: Tue Aug 25 09:01:19 2026 -0300

    examples/lvglterm: fix wrong dependency on PSEUDOTERM
    
    Changes PSEUDOTERM dependency from 'select' to 'depends on' which was
    missing from the initial pull request.
    
    Signed-off-by: Filipe Cavalcanti <[email protected]>
---
 examples/lvglterm/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/lvglterm/Kconfig b/examples/lvglterm/Kconfig
index 2f4c598f2..7628edec2 100644
--- a/examples/lvglterm/Kconfig
+++ b/examples/lvglterm/Kconfig
@@ -7,7 +7,7 @@ menuconfig EXAMPLES_LVGLTERM
        tristate "LVGL Terminal"
        default n
        depends on GRAPHICS_LVGL
-       select PSEUDOTERM
+       depends on PSEUDOTERM
        ---help---
                Enable LVGL Terminal
 

Reply via email to