1config BR2_PACKAGE_LV_DRIVERS 2 bool "lv-drivers" 3 default n 4 help 5 The concrete implementation of hardware 6 7if BR2_PACKAGE_LV_DRIVERS 8 config BR2_PACKAGE_LV_DRIVERS_USE_SDL_GPU 9 bool "sdl" 10 default n 11 help 12 Enbale sdl renderer 13 14 config BR2_PACKAGE_LV_DRIVERS_USE_DRM 15 bool "drm" 16 default n 17 help 18 Enbale drm renderer 19 20 config BR2_PACKAGE_LV_DRIVERS_USE_RGA 21 bool "rga" 22 default n 23 depends on BR2_PACKAGE_ROCKCHIP_RGA 24 depends on BR2_PACKAGE_LV_DRIVERS_USE_DRM 25 help 26 Enbale rga 27 28endif 29