1config BR2_PACKAGE_LVGL_DEMO 2 bool "LVGL demo" 3 default n 4 help 5 lvgl demo 6 7choice 8 prompt "LVGL demo select" 9 depends on BR2_PACKAGE_LVGL_DEMO 10 config BR2_PACKAGE_LVGL_DEMO_WIDGETS 11 bool "lvgl demo widgets" 12 help 13 Enbale lvgl demo widgets 14 15 config BR2_PACKAGE_LVGL_DEMO_KEYPAD_AND_ENCODER 16 bool "lvgl demo keypad and encoder" 17 help 18 Enbale lvgl demo keypad and encoder 19 20 config BR2_PACKAGE_LVGL_DEMO_BENCHMARK 21 bool "lvgl demo benchmark" 22 help 23 Enbale lvgl demo benchmark 24 25 config BR2_PACKAGE_LVGL_DEMO_STRESS 26 bool "lvgl demo stress" 27 help 28 Enbale lvgl demo stress 29 30 config BR2_PACKAGE_LVGL_DEMO_MUSIC 31 bool "lvgl demo music" 32 help 33 Enbale lvgl demo music 34 35 config BR2_PACKAGE_LVGL_DEMO_CUSTOM 36 bool "lvgl demo custom" 37 help 38 Enbale lvgl demo custom 39 40endchoice 41 42config BR2_PACKAGE_RK_DEMO 43 bool "RK demo" 44 default n 45 select BR2_PACKAGE_RKWIFIBT_APP 46 help 47 Rockchip LVGL demo 48 49choice 50 prompt "LVGL demo driver select" 51 config BR2_PACKAGE_LVGL_DEMO_USE_SDL 52 bool "sdl" 53 depends on BR2_PACKAGE_LV_DRIVERS_USE_SDL_GPU 54 help 55 Use SDL for display 56 57 config BR2_PACKAGE_LVGL_DEMO_USE_DRM 58 bool "drm" 59 depends on BR2_PACKAGE_LV_DRIVERS_USE_DRM 60 help 61 Use DRM for display 62 63endchoice 64